b4a942
%{!?with_xfree86:%define with_xfree86 1}
b4a942
b4a942
Summary: A free and portable font rendering engine
b4a942
Name: freetype
b4a942
Version: 2.9.1
78805f
Release: 9%{?dist}
b4a942
License: (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement
b4a942
Group: System Environment/Libraries
b4a942
URL: http://www.freetype.org
b4a942
Source:  http://download.savannah.gnu.org/releases/freetype/freetype-%{version}.tar.bz2
b4a942
Source1: http://download.savannah.gnu.org/releases/freetype/freetype-doc-%{version}.tar.bz2
b4a942
Source2: http://download.savannah.gnu.org/releases/freetype/ft2demos-%{version}.tar.bz2
b4a942
Source3: ftconfig.h
b4a942
b4a942
Patch0:  freetype-2.3.0-enable-spr.patch
b4a942
b4a942
# Enable otvalid and gxvalid modules
b4a942
Patch1:  freetype-2.2.1-enable-valid.patch
b4a942
# Enable additional demos
b4a942
Patch2:  freetype-2.5.2-more-demos.patch
b4a942
b4a942
Patch3:  freetype-2.6.5-libtool.patch
b4a942
b4a942
Patch4:  freetype-2.8-multilib.patch
b4a942
b4a942
Patch5:  freetype-2.9-ftsmooth.patch
b4a942
b4a942
# https://bugzilla.redhat.com/show_bug.cgi?id=1602501
b4a942
Patch6:  freetype-2.9.1-covscan.patch
b4a942
b4a942
# https://bugzilla.redhat.com/show_bug.cgi?id=1890210
b4a942
Patch7:  freetype-2.9.1-png-bitmap-size.patch
b4a942
Patch8:  freetype-2.9.1-png-memory-leak.patch
b4a942
78805f
# https://bugzilla.redhat.com/show_bug.cgi?id=2077989
78805f
Patch9:  freetype-2.9.1-avoid-invalid-face-index.patch
78805f
Patch10: freetype-2.9.1-windres.patch
78805f
78805f
# https://bugzilla.redhat.com/show_bug.cgi?id=2077991
78805f
Patch11:  freetype-2.9.1-properly-guard-face-index.patch
78805f
78805f
# https://bugzilla.redhat.com/show_bug.cgi?id=2077985
78805f
Patch12:  freetype-2.9.1-guard-face-size.patch
78805f
b4a942
BuildRequires: libX11-devel
b4a942
BuildRequires: libpng-devel
b4a942
BuildRequires: zlib-devel
b4a942
BuildRequires: bzip2-devel
b4a942
b4a942
Provides: %{name}-bytecode
b4a942
Provides: %{name}-subpixel
b4a942
Obsoletes: freetype-freeworld
b4a942
b4a942
%description
b4a942
The FreeType engine is a free and portable font rendering
b4a942
engine, developed to provide advanced font support for a variety of
b4a942
platforms and environments. FreeType is a library which can open and
b4a942
manages font files as well as efficiently load, hint and render
b4a942
individual glyphs. FreeType is not a font server or a complete
b4a942
text-rendering library.
b4a942
b4a942
b4a942
%package demos
b4a942
Summary: A collection of FreeType demos
b4a942
Group: System Environment/Libraries
b4a942
Requires: %{name} = %{version}-%{release}
b4a942
b4a942
%description demos
b4a942
The FreeType engine is a free and portable font rendering
b4a942
engine, developed to provide advanced font support for a variety of
b4a942
platforms and environments.  The demos package includes a set of useful
b4a942
small utilities showing various capabilities of the FreeType library.
b4a942
b4a942
b4a942
%package devel
b4a942
Summary: FreeType development libraries and header files
b4a942
Group: Development/Libraries
b4a942
Requires: %{name} = %{version}-%{release}
b4a942
Requires: pkgconf%{?_isa}
b4a942
b4a942
%description devel
b4a942
The freetype-devel package includes the static libraries and header files
b4a942
for the FreeType font rendering engine.
b4a942
b4a942
Install freetype-devel if you want to develop programs which will use
b4a942
FreeType.
b4a942
b4a942
b4a942
%prep
b4a942
%setup -q -b 1 -a 2
b4a942
b4a942
%patch0  -p1 -b .enable-spr
b4a942
%patch1  -p1 -b .enable-valid
b4a942
b4a942
pushd ft2demos-%{version}
b4a942
%patch2  -p1 -b .more-demos
b4a942
popd
b4a942
b4a942
%patch3 -p1 -b .libtool
b4a942
%patch4 -p1 -b .multilib
b4a942
%patch5 -p1 -b .ftsmooth
b4a942
%patch6 -p1 -b .covscan
b4a942
%patch7 -p1 -b .png-bitmap-size
b4a942
%patch8 -p1 -b .png-memory-leak
78805f
%patch9 -p1 -b .avoid-invalid-face-index
78805f
%patch10 -p1 -b .windres
78805f
%patch11 -p1 -b .properly-guard-face-index
78805f
%patch12 -p1 -b .guard-face-size
b4a942
b4a942
%build
b4a942
b4a942
%configure --disable-static \
b4a942
           --with-zlib=yes \
b4a942
           --with-bzip2=yes \
b4a942
           --with-png=yes \
b4a942
           --enable-freetype-config \
b4a942
           --with-harfbuzz=no
b4a942
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' builds/unix/libtool
b4a942
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' builds/unix/libtool
b4a942
make %{?_smp_mflags}
b4a942
b4a942
%if %{with_xfree86}
b4a942
# Build demos
b4a942
pushd ft2demos-%{version}
b4a942
make TOP_DIR=".."
b4a942
popd
b4a942
%endif
b4a942
b4a942
# Convert FTL.txt and example3.cpp to UTF-8
b4a942
pushd docs
b4a942
iconv -f latin1 -t utf-8 < FTL.TXT > FTL.TXT.tmp && \
b4a942
touch -r FTL.TXT FTL.TXT.tmp && \
b4a942
mv FTL.TXT.tmp FTL.TXT
b4a942
b4a942
iconv -f iso-8859-1 -t utf-8 < "tutorial/example3.cpp" > "tutorial/example3.cpp.utf8"
b4a942
touch -r tutorial/example3.cpp tutorial/example3.cpp.utf8 && \
b4a942
mv tutorial/example3.cpp.utf8 tutorial/example3.cpp
b4a942
popd
b4a942
b4a942
b4a942
%install
b4a942
b4a942
%make_install gnulocaledir=$RPM_BUILD_ROOT%{_datadir}/locale
b4a942
b4a942
{
b4a942
  for ftdemo in ftbench ftchkwd ftmemchk ftpatchk fttimer ftdump ftlint ftmemchk ftvalid ; do
b4a942
      builds/unix/libtool --mode=install install -m 755 ft2demos-%{version}/bin/$ftdemo $RPM_BUILD_ROOT/%{_bindir}
b4a942
  done
b4a942
}
b4a942
%if %{with_xfree86}
b4a942
{
b4a942
  for ftdemo in ftdiff ftgamma ftgrid ftmulti ftstring fttimer ftview ; do
b4a942
      builds/unix/libtool --mode=install install -m 755 ft2demos-%{version}/bin/$ftdemo $RPM_BUILD_ROOT/%{_bindir}
b4a942
  done
b4a942
}
b4a942
%endif
b4a942
b4a942
# fix multilib issues
b4a942
%define wordsize %{__isa_bits}
b4a942
b4a942
mv $RPM_BUILD_ROOT%{_includedir}/freetype2/freetype/config/ftconfig.h \
b4a942
   $RPM_BUILD_ROOT%{_includedir}/freetype2/freetype/config/ftconfig-%{wordsize}.h
b4a942
install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_includedir}/freetype2/freetype/config/ftconfig.h
b4a942
b4a942
# Don't package static .a or .la files
b4a942
rm -f $RPM_BUILD_ROOT%{_libdir}/*.{a,la}
b4a942
b4a942
b4a942
%triggerpostun -- freetype < 2.0.5-3
b4a942
{
b4a942
  # ttmkfdir updated - as of 2.0.5-3, on upgrades we need xfs to regenerate
b4a942
  # things to get the iso10646-1 encoding listed.
b4a942
  for I in %{_datadir}/fonts/*/TrueType /usr/share/X11/fonts/TTF; do
b4a942
      [ -d $I ] && [ -f $I/fonts.scale ] && [ -f $I/fonts.dir ] && touch $I/fonts.scale
b4a942
  done
b4a942
  exit 0
b4a942
}
b4a942
b4a942
%ldconfig_scriptlets
b4a942
b4a942
%files
b4a942
%{!?_licensedir:%global license %%doc}
b4a942
%license docs/LICENSE.TXT docs/FTL.TXT docs/GPLv2.TXT
b4a942
%{_libdir}/libfreetype.so.*
b4a942
%doc README
b4a942
b4a942
%files demos
b4a942
%{_bindir}/ftbench
b4a942
%{_bindir}/ftchkwd
b4a942
%{_bindir}/ftmemchk
b4a942
%{_bindir}/ftpatchk
b4a942
%{_bindir}/fttimer
b4a942
%{_bindir}/ftdump
b4a942
%{_bindir}/ftlint
b4a942
%{_bindir}/ftvalid
b4a942
%if %{with_xfree86}
b4a942
%{_bindir}/ftdiff
b4a942
%{_bindir}/ftgamma
b4a942
%{_bindir}/ftgrid
b4a942
%{_bindir}/ftmulti
b4a942
%{_bindir}/ftstring
b4a942
%{_bindir}/ftview
b4a942
%endif
b4a942
%doc ChangeLog README
b4a942
b4a942
%files devel
b4a942
%doc docs/CHANGES docs/formats.txt docs/ft2faq.html
b4a942
%dir %{_includedir}/freetype2
b4a942
%{_datadir}/aclocal/freetype2.m4
b4a942
%{_includedir}/freetype2/*
b4a942
%{_libdir}/libfreetype.so
b4a942
%{_bindir}/freetype-config
b4a942
%{_libdir}/pkgconfig/freetype2.pc
b4a942
%doc docs/design
b4a942
%doc docs/glyphs
b4a942
%doc docs/reference
b4a942
%doc docs/tutorial
b4a942
%{_mandir}/man1/*
b4a942
b4a942
%changelog
78805f
* Fri May 27 2022 Marek Kasik <mkasik@redhat.com> - 2.9.1-9
78805f
- Guard face->size
78805f
- Resolves: #2079279
78805f
78805f
* Thu May 26 2022 Marek Kasik <mkasik@redhat.com> - 2.9.1-8
78805f
- Properly guard "face_index"
78805f
- Resolves: #2079261
78805f
78805f
* Thu May 26 2022 Marek Kasik <mkasik@redhat.com> - 2.9.1-7
78805f
- Do not search for windres
78805f
- Resolves: #2079270
78805f
78805f
* Wed May 25 2022 Marek Kasik <mkasik@redhat.com> - 2.9.1-6
78805f
- Avoid invalid face index
78805f
- Resolves: #2079270
78805f
78805f
* Thu Nov  5 2020 Marek Kasik <mkasik@redhat.com> - 2.9.1-5
b4a942
- Test bitmap size earlier for PNGs
b4a942
- Fix memory leak in pngshim.c
78805f
- Resolves: #1891906
b4a942
b4a942
* Fri Dec  7 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-4
b4a942
- Use pkgconf in freetype-config.in directly (RPMDiff)
b4a942
- Related: #1651252
b4a942
b4a942
* Fri Dec  7 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-3
b4a942
- Enable ClearType subpixel rendering
b4a942
- Resolves: #1651252
b4a942
b4a942
* Thu Sep  6 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-2
b4a942
- Fix important issues found by covscan
b4a942
- Resolves: #1602501
b4a942
b4a942
* Wed Jun 27 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-1
b4a942
- Update to 2.9.1
b4a942
- Modify/remove/add patches as needed
b4a942
- Resolves: #1595787
b4a942
b4a942
* Fri Feb 16 2018 Marek Kasik <mkasik@redhat.com> - 2.8-10
b4a942
- Avoid NULL reference
b4a942
- Resolves: #1544776
b4a942
b4a942
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-9
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b4a942
b4a942
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.8-8
b4a942
- Switch to %%ldconfig_scriptlets
b4a942
b4a942
* Mon Oct  9 2017 Marek Kasik <mkasik@redhat.com> - 2.8-7
b4a942
- Require pkgconf so we can make freetype-config multilib compatible again
b4a942
- Resolves: #1497443
b4a942
b4a942
* Thu Sep 21 2017 Marek Kasik <mkasik@redhat.com> - 2.8-6
b4a942
- Fix loading of named instances (TrueType)
b4a942
b4a942
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-5
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b4a942
b4a942
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-4
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b4a942
b4a942
* Thu Jun  1 2017 Marek Kasik <mkasik@redhat.com> - 2.8-3
b4a942
- Adjust loop counter maximum for TrueType fonts
b4a942
- Resolves: #1456585
b4a942
b4a942
* Wed May 24 2017 Marek Kasik <mkasik@redhat.com> - 2.8-2
b4a942
- Accept ISO646.1991-IRV as a Unicode charmap in PCF and BDF drivers
b4a942
- Resolves: #1451795
b4a942
b4a942
* Wed May 17 2017 Marek Kasik <mkasik@redhat.com> - 2.8-1
b4a942
- Update to 2.8
b4a942
- Modify/remove patches as needed
b4a942
- Resolves: #1450581
b4a942
b4a942
* Tue May  2 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-7
b4a942
- Fix numbers of tracking bugs
b4a942
b4a942
* Tue May  2 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-6
b4a942
- Add safety guard (CVE-2017-8287)
b4a942
- Resolves: #1446074
b4a942
b4a942
* Tue May  2 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-5
b4a942
- Better protect `flex' handling (CVE-2017-8105)
b4a942
- Resolves: #1446501
b4a942
b4a942
* Mon Apr 10 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-4
b4a942
- Revert previous commit
b4a942
- Related: #1437999
b4a942
b4a942
* Mon Apr  3 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-3
b4a942
- Allow linear scaling for unhinted rendering
b4a942
- Resolves: #1437999
b4a942
b4a942
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.1-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b4a942
b4a942
* Tue Jan  3 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-1
b4a942
- Update to 2.7.1
b4a942
- Resolves: #1409271
b4a942
b4a942
* Mon Nov 21 2016 Marek Kasik <mkasik@redhat.com> - 2.7-2
b4a942
- Fix a valgrind warning
b4a942
- Resolves: #1395915
b4a942
b4a942
* Mon Sep 12 2016 Marek Kasik <mkasik@redhat.com> - 2.7-1
b4a942
- Update to 2.7
b4a942
- Resolves: #1374305
b4a942
b4a942
* Mon Aug 22 2016 Marek Kasik <mkasik@redhat.com> - 2.6.5-2
b4a942
- Don't show path of non-existing libtool file
b4a942
b4a942
* Wed Jul 13 2016 Marek Kasik <mkasik@redhat.com> - 2.6.5-1
b4a942
- Update to 2.6.5
b4a942
- Resolves: #1355743
b4a942
b4a942
* Sat Mar  5 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.6.3-2
b4a942
- Use %%license and cleanup spec
b4a942
- Move dev docs to devel package
b4a942
b4a942
* Wed Feb 10 2016 Marek Kasik <mkasik@redhat.com> - 2.6.3-1
b4a942
- Update to 2.6.3
b4a942
b4a942
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b4a942
b4a942
* Thu Dec  3 2015 Tom Callaway <spot@fedoraproject.org> - 2.6.2-1
b4a942
- update to 2.6.2
b4a942
b4a942
* Mon Oct 12 2015 Marek Kasik <mkasik@redhat.com> - 2.6.1-1
b4a942
- Update to 2.6.1
b4a942
- Adapt to the new header structure
b4a942
- Resolves: #1268661
b4a942
b4a942
* Tue Jul 28 2015 Marek Kasik <mkasik@redhat.com> - 2.6.0-3
b4a942
- Don't use `hmtx' table for LSB
b4a942
b4a942
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b4a942
b4a942
* Fri Jun 12 2015 Marek Kasik <mkasik@redhat.com> - 2.6.0-1
b4a942
- Update to 2.6
b4a942
- Resolves: #1229688
b4a942
b4a942
* Tue Jan  6 2015 Marek Kasik <mkasik@redhat.com> - 2.5.5-1
b4a942
- Update to 2.5.5
b4a942
- Resolves: #1178876
b4a942
b4a942
* Tue Dec  9 2014 Marek Kasik <mkasik@redhat.com> - 2.5.4-1
b4a942
- Update to 2.5.4
b4a942
- Resolves: #1171504
b4a942
b4a942
* Tue Nov 11 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-11
b4a942
- Fix directories returned by freetype-config with modified prefix
b4a942
- Resolves: #1161963
b4a942
b4a942
* Tue Oct 21 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-10
b4a942
- Fix patch which enables subpixel rendering
b4a942
- Resolves: #1154448
b4a942
b4a942
* Mon Aug 18 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-9
b4a942
- Simplify getting of wordsize
b4a942
b4a942
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-8
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b4a942
b4a942
* Sat Aug  2 2014 Peter Robinson <pbrobinson@redhat.com> 2.5.3-7
b4a942
- Generic 32/64 bit platform detection (fix it once and for all)
b4a942
b4a942
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-6
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b4a942
b4a942
* Tue Mar 25 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-5
b4a942
- Be explicit about required libraries
b4a942
b4a942
* Tue Mar 25 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-4
b4a942
- Don't return flags of privately used libraries when
b4a942
- calling "freetype-config --libs"
b4a942
- Resolves: #1079302
b4a942
b4a942
* Fri Mar 21 2014 Dan Horák <dan[at]danny.cz> - 2.5.3-3
b4a942
- drop private libs from freetype-config so it returns the same libs as pkg-config
b4a942
b4a942
* Tue Mar 11 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-2
b4a942
- Enable support for bzip2 compressed fonts
b4a942
b4a942
* Tue Mar 11 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-1
b4a942
- Update to 2.5.3
b4a942
- Resolves: #1073923
b4a942
b4a942
* Mon Jan 20 2014 Marek Kasik <mkasik@redhat.com> - 2.5.2-2
b4a942
- Fix include directory in freetype-config
b4a942
- Resolves: #1055154
b4a942
b4a942
* Fri Jan 17 2014 Marek Kasik <mkasik@redhat.com> - 2.5.2-1
b4a942
- Update to 2.5.2
b4a942
- Modify spec file to respect the new header file layout
b4a942
- Resolves: #1034065
b4a942
b4a942
* Fri Jan 10 2014 Marek Kasik <mkasik@redhat.com> - 2.5.0-5
b4a942
- Enable ppc64le architecture
b4a942
- Resolves: #1051202
b4a942
b4a942
* Fri Sep 20 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-4
b4a942
- Fix vertical size of emboldened glyphs
b4a942
b4a942
* Mon Aug 05 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-3
b4a942
- Fix changelog dates
b4a942
b4a942
* Mon Aug 05 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-2
b4a942
- Require libpng
b4a942
b4a942
* Mon Aug 05 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-1
b4a942
- Update to 2.5.0
b4a942
- Backport changes from freetype-2.5.0.1
b4a942
-   (ft2demos-2.5.0.1 and freetype-doc-2.5.0.1 were not released)
b4a942
b4a942
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.12-6
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b4a942
b4a942
* Wed May 29 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.12-5
b4a942
- Add aarch64 to 64 bit arch list
b4a942
b4a942
* Thu May 16 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-4
b4a942
- Change encoding of "docs/tutorial/example3.cpp" to UTF-8
b4a942
b4a942
* Thu May 16 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-3
b4a942
- Package ftconfig.h as source file
b4a942
b4a942
* Mon May 13 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-2
b4a942
- Don't use quotes in freetype2.pc
b4a942
- Resolves: #961855
b4a942
b4a942
* Thu May  9 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-1
b4a942
- Update to 2.4.12
b4a942
- Enable Adobe CFF engine
b4a942
- Resolves: #959771
b4a942
b4a942
* Tue Mar 19 2013 Marek Kasik <mkasik@redhat.com> - 2.4.11-3
b4a942
- Fix emboldening:
b4a942
    - split out MSB function
b4a942
    - fix integer overflows
b4a942
    - fix broken emboldening at small sizes
b4a942
- Resolves: #891457
b4a942
b4a942
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.11-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b4a942
b4a942
* Wed Jan  2 2013 Marek Kasik <mkasik@redhat.com> - 2.4.11-1
b4a942
- Update to 2.4.11
b4a942
- Resolves: #889177
b4a942
b4a942
* Wed Oct 24 2012 Marek Kasik <mkasik@redhat.com> - 2.4.10-3
b4a942
- Update License field
b4a942
b4a942
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.10-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b4a942
b4a942
* Wed Jul 11 2012 Marek Kasik <mkasik@redhat.com> 2.4.10-1
b4a942
- Update to 2.4.10
b4a942
- Remove patches which are already included in upstream
b4a942
- Resolves: #832651
b4a942
b4a942
* Fri Mar 30 2012 Marek Kasik <mkasik@redhat.com> 2.4.9-1
b4a942
- Update to 2.4.9
b4a942
- Fixes various CVEs
b4a942
- Resolves: #806270
b4a942
b4a942
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.8-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b4a942
b4a942
* Tue Nov 15 2011 Marek Kasik <mkasik@redhat.com> 2.4.8-1
b4a942
- Update to 2.4.8
b4a942
- Remove an unneeded patch
b4a942
b4a942
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.7-2
b4a942
- Rebuilt for glibc bug#747377
b4a942
b4a942
* Thu Oct 20 2011 Marek Kasik <mkasik@redhat.com> 2.4.7-1
b4a942
- Update to 2.4.7
b4a942
- Fixes CVE-2011-3256
b4a942
- Resolves: #747262
b4a942
b4a942
* Thu Aug  4 2011 Marek Kasik <mkasik@redhat.com> 2.4.6-1
b4a942
- Update to 2.4.6
b4a942
b4a942
* Wed Jul 20 2011 Marek Kasik <mkasik@redhat.com> 2.4.5-2
b4a942
- Add freetype-2.4.5-CVE-2011-0226.patch
b4a942
    (Add better argument check for `callothersubr'.)
b4a942
    - based on patches by Werner Lemberg,
b4a942
      Alexei Podtelezhnikov and Matthias Drochner
b4a942
- Resolves: #723469
b4a942
b4a942
* Tue Jun 28 2011 Marek Kasik <mkasik@redhat.com> 2.4.5-1
b4a942
- Update to 2.4.5
b4a942
b4a942
* Tue Mar  8 2011 Marek Kasik <mkasik@redhat.com> 2.4.4-4
b4a942
- Fix autohinting fallback (#547532).
b4a942
- Ignore CFF-based OTFs.
b4a942
b4a942
* Sun Feb 20 2011 Marek Kasik <mkasik@redhat.com> 2.4.4-3
b4a942
- Enable bytecode interpreter (#547532).
b4a942
- Fall back to autohinting if a TTF/OTF doesn't contain any bytecode.
b4a942
b4a942
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.4-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b4a942
b4a942
* Thu Dec  2 2010 Marek Kasik <mkasik@redhat.com> 2.4.4-1
b4a942
- Update to 2.4.4
b4a942
- Remove freetype-2.4.3-CVE-2010-3855.patch
b4a942
- Resolves: #659020
b4a942
b4a942
* Mon Nov 15 2010 Marek Kasik <mkasik@redhat.com> 2.4.3-2
b4a942
- Add freetype-2.4.3-CVE-2010-3855.patch
b4a942
    (Protect against invalid `runcnt' values.)
b4a942
- Resolves: #651764
b4a942
b4a942
* Tue Oct 26 2010 Marek Kasik <mkasik@redhat.com> 2.4.3-1
b4a942
- Update to 2.4.3
b4a942
- Resolves: #639906
b4a942
b4a942
* Wed Oct  6 2010 Marek Kasik <mkasik@redhat.com> 2.4.2-3
b4a942
- Add freetype-2.4.2-CVE-2010-3311.patch
b4a942
    (Don't seek behind end of stream.)
b4a942
- Resolves: #638522
b4a942
b4a942
* Fri Aug  6 2010 Matthias Clasen <mclasen@redhat.com> 2.4.2-2
b4a942
- Fix a thinko, we still want to disable the bytecode interpreter
b4a942
  by default
b4a942
b4a942
* Fri Aug  6 2010 Matthias Clasen <mclasen@redhat.com> 2.4.2-1
b4a942
- Update to 2.4.2
b4a942
- Drop upstreamed patch, bytecode interpreter now on by default
b4a942
b4a942
* Tue Feb 23 2010 Behdad Esfahbod <behdad@redhat.com> 2.3.12-1
b4a942
- Update to 2.3.12
b4a942
- Drop mathlib patch
b4a942
b4a942
* Thu Dec  3 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.11-2
b4a942
- Drop upstreamed patch.
b4a942
- Enable patented bytecode interpretter now that the patents are expired.
b4a942
b4a942
* Thu Oct 22 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.11-1
b4a942
- Update to 2.3.11.
b4a942
- Add freetype-2.3.11-more-demos.patch
b4a942
- New demo programs ftmemchk, ftpatchk, and fttimer
b4a942
b4a942
* Thu Oct 08 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.10-1
b4a942
- Drop freetype-2.3.9-aliasing.patch
b4a942
- Update to 2.3.10.
b4a942
b4a942
* Thu Jul 30 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.9-6
b4a942
- Add freetype-2.3.9-aliasing.patch
b4a942
- Resolves: 513582
b4a942
b4a942
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.9-5
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b4a942
b4a942
* Thu May  7 2009 Matthias Clasen <mclasen@redhat.com> 2.3.9-4
b4a942
- Don't own /usr/lib/pkgconfig
b4a942
b4a942
* Fri Mar 27 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.9-3
b4a942
- Disable subpixel hinting by default.  Was turned on unintentionally.
b4a942
b4a942
* Wed Mar 25 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.9-2
b4a942
- Add Provides: freetype-bytecode and freetype-subpixel if built
b4a942
  with those options.
b4a942
- Resolves: #155210
b4a942
b4a942
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.9-1
b4a942
- Update to 2.3.9.
b4a942
- Resolves #489928
b4a942
b4a942
* Mon Mar 09 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.8-2.1
b4a942
- Preserve timestamp of FTL.TXT when converting to UTF-8.
b4a942
b4a942
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.8-2
b4a942
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b4a942
b4a942
* Thu Jan 15 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.8-1
b4a942
- Update to 2.3.8
b4a942
- Remove freetype-autohinter-ligature.patch
b4a942
b4a942
* Tue Dec 09 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.7-3
b4a942
- Add full source URL to Source lines.
b4a942
- Add docs to main and devel package.
b4a942
- rpmlint is happy now.
b4a942
- Resolves: #225770
b4a942
b4a942
* Fri Dec 05 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.7-2
b4a942
- Add freetype-autohinter-ligature.patch
b4a942
- Resolves: #368561
b4a942
b4a942
* Thu Aug 14 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.7-1
b4a942
- Update to 2.3.7
b4a942
b4a942
* Tue Jun 10 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.6-1
b4a942
- Update to 2.3.6
b4a942
b4a942
* Wed May 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.3.5-5
b4a942
- fix license tag
b4a942
- add sparc64 to list of 64bit arches
b4a942
b4a942
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.3.5-4
b4a942
- Autorebuild for GCC 4.3
b4a942
b4a942
* Thu Aug 23 2007 Adam Jackson <ajax@redhat.com> - 2.3.5-3
b4a942
- Rebuild for build ID
b4a942
b4a942
* Tue Jul 31 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.5-2
b4a942
- Change spec file to permit enabling bytecode-interpreter and
b4a942
  subpixel-rendering without editing spec file.
b4a942
- Resolves: 249986
b4a942
b4a942
* Wed Jul 25 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.5-1
b4a942
- Update to 2.3.5.
b4a942
- Drop freetype-2.3.4-ttf-overflow.patch
b4a942
b4a942
* Fri Jun 29 2007 Adam Jackson <ajax@redhat.com> 2.3.4-4
b4a942
- Fix builds/unix/libtool to not emit rpath into binaries. (#225770)
b4a942
b4a942
* Thu May 31 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.4-3
b4a942
- Add freetype-2.3.4-ttf-overflow.patch
b4a942
b4a942
* Thu Apr 12 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.4-2
b4a942
- Add alpha to 64-bit archs (#236166)
b4a942
b4a942
* Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.4-1
b4a942
- Update to 2.3.4.
b4a942
b4a942
* Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.3-2
b4a942
- Include new demos ftgrid and ftdiff in freetype-demos. (#235478)
b4a942
b4a942
* Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.3-1
b4a942
- Update to 2.3.3.
b4a942
b4a942
* Fri Mar 09 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.2-1
b4a942
- Update to 2.3.2.
b4a942
b4a942
* Fri Feb 02 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.1-1
b4a942
- Update to 2.3.1.
b4a942
b4a942
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.0-2
b4a942
- Add without_subpixel_rendering.
b4a942
- Drop X11_PATH=/usr.  Not needed anymore.
b4a942
b4a942
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.0-1
b4a942
- Update to 2.3.0.
b4a942
- Drop upstream patches.
b4a942
- Drop -fno-strict-aliasing, it should just work.
b4a942
- Fix typo in ftconfig.h generation.
b4a942
b4a942
* Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-16
b4a942
- Backport binary-search fixes from HEAD
b4a942
- Add freetype-2.2.1-ttcmap.patch
b4a942
- Resolves: #208734
b4a942
b4a942
- Fix rendering issue with some Asian fonts.
b4a942
- Add freetype-2.2.1-fix-get-orientation.patch
b4a942
- Resolves: #207261
b4a942
b4a942
- Copy non-X demos even if not compiling with_xfree86.
b4a942
b4a942
- Add freetype-2.2.1-zero-item-size.patch, to fix crasher.
b4a942
- Resolves #214048
b4a942
b4a942
- Add X11_PATH=/usr to "make"s, to find modern X.
b4a942
- Resolves #212199
b4a942
b4a942
* Mon Sep 11 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-10
b4a942
- Fix crasher https://bugs.freedesktop.org/show_bug.cgi?id=6841
b4a942
- Add freetype-2.2.1-memcpy-fix.patch
b4a942
b4a942
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-9
b4a942
- Add BuildRequires: libX11-devel (#205355)
b4a942
b4a942
* Tue Aug 29 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-8
b4a942
- Add freetype-composite.patch and freetype-more-composite.patch
b4a942
  from upstream. (#131851)
b4a942
b4a942
* Mon Aug 28 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.1-7
b4a942
- Require pkgconfig in the -devel package
b4a942
b4a942
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-6
b4a942
- pass --disable-static to %%configure. (#172628)
b4a942
b4a942
* Thu Aug 17 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-5
b4a942
- don't package static libs
b4a942
b4a942
* Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.1-4.fc6
b4a942
- fix a problem with the multilib patch (#202366)
b4a942
b4a942
* Thu Jul 27 2006 Matthias Clasen  <mclasen@redhat.com> - 2.2.1-3
b4a942
- fix multilib issues
b4a942
b4a942
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-2.1
b4a942
- rebuild
b4a942
b4a942
* Fri Jul 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-2
b4a942
- Remove unused BuildRequires
b4a942
b4a942
* Fri Jul 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-1
b4a942
- Update to 2.2.1
b4a942
- Remove FreeType 1, to move to extras
b4a942
- Install new demos ftbench, ftchkwd, ftgamma, and ftvalid
b4a942
- Enable modules gxvalid and otvalid
b4a942
b4a942
* Wed May 17 2006 Karsten Hopp <karsten@redhat.de> 2.1.10-6
b4a942
- add buildrequires libICE-devel, libSM-devel
b4a942
b4a942
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.1.10-5.2.1
b4a942
- bump again for double-long bug on ppc(64)
b4a942
b4a942
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.1.10-5.2
b4a942
- rebuilt for new gcc4.1 snapshot and glibc changes
b4a942
b4a942
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
b4a942
- rebuilt
b4a942
b4a942
* Fri Nov 18 2005 Bill Nottingham  <notting@redhat.com> 2.1.10-5
b4a942
- Remove references to obsolete /usr/X11R6 paths
b4a942
b4a942
* Tue Nov  1 2005 Matthias Clasen  <mclasen@redhat.com> 2.1.10-4
b4a942
- Switch requires to modular X
b4a942
b4a942
* Fri Oct 21 2005 Matthias Clasen  <mclasen@redhat.com> 2.1.10-3
b4a942
- BuildRequire gettext 
b4a942
b4a942
* Wed Oct 12 2005 Jason Vas Dias <jvdias@redhat.com> 2.1.10-2
b4a942
- fix 'without_bytecode_interpreter 0' build: freetype-2.1.10-enable-ft2-bci.patch
b4a942
b4a942
* Fri Oct  7 2005 Matthias Clasen  <mclasen@redhat.com> 2.1.10-1
b4a942
- Update to 2.1.10
b4a942
- Add necessary fixes
b4a942
b4a942
* Tue Aug 16 2005 Kristian Høgsberg <krh@redhat.com> 2.1.9-4
b4a942
- Fix freetype-config on 64 bit platforms.
b4a942
b4a942
* Thu Jul 07 2005 Karsten Hopp <karsten@redhat.de> 2.1.9-3
b4a942
- BuildRequires xorg-x11-devel
b4a942
b4a942
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.1.9-2
b4a942
- Rebuild
b4a942
b4a942
* Wed Aug  4 2004 Owen Taylor <otaylor@redhat.com> - 2.1.9-1
b4a942
- Upgrade to 2.1.9
b4a942
- Since we are just using automake for aclocal, use it unversioned,
b4a942
  instead of specifying 1.4.
b4a942
b4a942
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
b4a942
- rebuilt
b4a942
b4a942
* Mon Apr 19 2004 Owen Taylor <otaylor@redhat.com> 2.1.7-4
b4a942
- Add patch from freetype CVS to fix problem with eexec (#117743)
b4a942
- Add freetype-devel to buildrequires and -devel requires
b4a942
  (Maxim Dzumanenko, #111108)
b4a942
b4a942
* Wed Mar 10 2004 Mike A. Harris <mharris@redhat.com> 2.1.7-3
b4a942
- Added -fno-strict-aliasing to CFLAGS and CXXFLAGS to try to fix SEGV and
b4a942
  SIGILL crashes in mkfontscale which have been traced into freetype and seem
b4a942
  to be caused by aliasing issues in freetype macros (#118021)
b4a942
b4a942
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 2.1.7-2.1
b4a942
- rebuilt
b4a942
b4a942
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 2.1.7-2
b4a942
- rebuilt
b4a942
b4a942
* Fri Jan 23 2004 Owen Taylor <otaylor@redhat.com> 2.1.7-1
b4a942
- Upgrade to 2.1.7
b4a942
b4a942
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
b4a942
- allow compiling without the demos as that requires XFree86
b4a942
  (this allows bootstrapping XFree86 on new archs)
b4a942
b4a942
* Fri Aug  8 2003 Elliot Lee <sopwith@redhat.com> 2.1.4-4.1
b4a942
- Rebuilt
b4a942
b4a942
* Tue Jul  8 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-4.0
b4a942
- Bump for rebuild
b4a942
b4a942
* Wed Jun 25 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-3
b4a942
- Fix crash with non-format-0 hdmx tables (found by David Woodhouse)
b4a942
b4a942
* Mon Jun  9 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-1
b4a942
- Version 2.1.4
b4a942
- Relibtoolize to get deplibs right for x86_64
b4a942
- Use autoconf-2.5x for freetype-1.4 to fix libtool-1.5 compat problem (#91781)
b4a942
- Relativize absolute symlinks to fix the -debuginfo package 
b4a942
  (#83521, Mike Harris)
b4a942
b4a942
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
b4a942
- rebuilt
b4a942
b4a942
* Thu May 22 2003 Jeremy Katz <katzj@redhat.com> 2.1.3-9
b4a942
- fix build with gcc 3.3
b4a942
b4a942
* Tue Feb 25 2003 Owen Taylor <otaylor@redhat.com>
b4a942
- Add a memleak fix for the gzip backend from Federic Crozat
b4a942
b4a942
* Thu Feb 13 2003 Elliot Lee <sopwith@redhat.com> 2.1.3-7
b4a942
- Run libtoolize/aclocal/autoconf so that libtool knows to generate shared libraries 
b4a942
  on ppc64.
b4a942
- Use _smp_mflags (for freetype 2.x only)
b4a942
b4a942
* Tue Feb  4 2003 Owen Taylor <otaylor@redhat.com>
b4a942
- Switch to using %%configure (should fix #82330)
b4a942
b4a942
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
b4a942
- rebuilt
b4a942
b4a942
* Mon Jan  6 2003 Owen Taylor <otaylor@redhat.com> 2.1.3-4
b4a942
- Make FreeType robust against corrupt fonts with recursive composite 
b4a942
  glyphs (#74782, James Antill)
b4a942
b4a942
* Thu Jan  2 2003 Owen Taylor <otaylor@redhat.com> 2.1.3-3
b4a942
- Add a patch to implement FT_LOAD_TARGET_LIGHT
b4a942
- Fix up freetype-1.4-libtool.patch 
b4a942
b4a942
* Thu Dec 12 2002 Mike A. Harris <mharris@redhat.com> 2.1.3-2
b4a942
- Update to freetype 2.1.3
b4a942
- Removed ttmkfdir sources and patches, as they have been moved from the
b4a942
  freetype packaging to XFree86 packaging, and now to the ttmkfdir package
b4a942
- Removed patches that are now included in 2.1.3:
b4a942
  freetype-2.1.1-primaryhints.patch, freetype-2.1.2-slighthint.patch,
b4a942
  freetype-2.1.2-bluefuzz.patch, freetype-2.1.2-stdw.patch,
b4a942
  freetype-2.1.2-transform.patch, freetype-2.1.2-autohint.patch,
b4a942
  freetype-2.1.2-leftright.patch
b4a942
- Conditionalized inclusion of freetype 1.4 library.
b4a942
b4a942
* Wed Dec 04 2002 Florian La Roche <Florian.LaRoche@redhat.de>
b4a942
- disable perl, it is not used at all
b4a942
b4a942
* Tue Dec 03 2002 Elliot Lee <sopwith@redhat.com> 2.1.2-11
b4a942
- Instead of removing unpackaged file, include it in the package.
b4a942
b4a942
* Sat Nov 30 2002 Mike A. Harris <mharris@redhat.com> 2.1.2-10
b4a942
- Attempted to fix lib64 issue in freetype-demos build with X11_LINKLIBS
b4a942
- Cleaned up various _foodir macros throughtout specfile
b4a942
- Removed with_ttmkfdir build option as it is way obsolete
b4a942
b4a942
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 2.1.2-8
b4a942
- remove unpackaged files from the buildroot
b4a942
b4a942
* Wed Aug 28 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Fix a bug with PCF metrics
b4a942
b4a942
* Fri Aug  9 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Backport autohinter improvements from CVS
b4a942
b4a942
* Tue Jul 23 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Fix from CVS for transformations (#68964)
b4a942
b4a942
* Tue Jul  9 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Add another bugfix for the postscript hinter
b4a942
b4a942
* Mon Jul  8 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Add support for BlueFuzz private dict value, fixing rendering 
b4a942
  glitch for Luxi Mono.
b4a942
b4a942
* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Add an experimental FT_Set_Hint_Flags() call
b4a942
b4a942
* Mon Jul  1 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Update to 2.1.2
b4a942
- Add a patch fixing freetype PS hinter bug
b4a942
b4a942
* Fri Jun 21 2002 Mike A. Harris <mharris@redhat.com> 2.1.1-2
b4a942
- Added ft rpm build time conditionalizations upon user requests
b4a942
b4a942
* Tue Jun 11 2002 Owen Taylor <otaylor@redhat.com> 2.1.1-1
b4a942
- Version 2.1.1
b4a942
b4a942
* Mon Jun 10 2002 Owen Taylor <otaylor@redhat.com>
b4a942
- Add a fix for PCF character maps
b4a942
b4a942
* Sun May 26 2002 Tim Powers <timp@redhat.com>
b4a942
- automated rebuild
b4a942
b4a942
* Fri May 17 2002 Mike A. Harris <mharris@redhat.com> 2.1.0-2
b4a942
- Updated freetype to version 2.1.0
b4a942
- Added libtool fix for freetype 1.4 (#64631)
b4a942
b4a942
* Wed Mar 27 2002 Nalin Dahyabhai <nalin@redhat.com> 2.0.9-2
b4a942
- use "libtool install" instead of "install" to install some binaries (#62005)
b4a942
b4a942
* Mon Mar 11 2002 Mike A. Harris <mharris@redhat.com> 2.0.9-1
b4a942
- Updated to freetype 2.0.9
b4a942
b4a942
* Sun Feb 24 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-4
b4a942
- Added proper docs+demos source for 2.0.8.
b4a942
b4a942
* Sat Feb 23 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-3
b4a942
- Added compat patch so 2.x works more like 1.x
b4a942
- Rebuilt with new build toolchain
b4a942
b4a942
* Fri Feb 22 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-2
b4a942
- Updated to freetype 2.0.8, however docs and demos are stuck at 2.0.7
b4a942
  on the freetype website.  Munged specfile to deal with the problem by using
b4a942
  {oldversion} instead of version where appropriate.  <sigh>
b4a942
b4a942
* Sat Feb  2 2002 Tim Powers <timp@redhat.com> 2.0.6-3
b4a942
- bumping release so that we don't collide with another build of
b4a942
  freetype, make sure to change the release requirement in the XFree86
b4a942
  package
b4a942
b4a942
* Fri Feb  1 2002 Mike A. Harris <mharris@redhat.com> 2.0.6-2
b4a942
- Made ttmkfdir inclusion conditional, and set up a define to include
b4a942
  ttmkfdir in RHL 7.x builds, since ttmkfdir is now moving to the new
b4a942
  XFree86-font-utils package.
b4a942
b4a942
* Wed Jan 16 2002 Mike A. Harris <mharris@redhat.com> 2.0.6-1
b4a942
- Updated freetype to version 2.0.6
b4a942
b4a942
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.0.5-4
b4a942
- automated rebuild
b4a942
b4a942
* Fri Nov 30 2001 Elliot Lee <sopwith@redhat.com> 2.0.5-3
b4a942
- Fix bug #56901 (ttmkfdir needed to list Unicode encoding when generating
b4a942
  font list). (ttmkfdir-iso10646.patch)
b4a942
- Use _smp_mflags macro everywhere relevant. (freetype-pre1.4-make.patch)
b4a942
- Undo fix for #24253, assume compiler was fixed.
b4a942
b4a942
* Mon Nov 12 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.5-2
b4a942
- Fix build with gcc 3.1 (#56079)
b4a942
b4a942
* Sun Nov 11 2001 Mike A. Harris <mharris@redhat.com> 2.0.5-1
b4a942
- Updated freetype to version 2.0.5
b4a942
b4a942
* Sat Sep 22 2001 Mike A. Harris <mharris@redhat.com> 2.0.4-2
b4a942
- Added new subpackage freetype-demos, added demos to build
b4a942
- Disabled ftdump, ftlint in utils package favoring the newer utils in
b4a942
  demos package.
b4a942
b4a942
* Tue Sep 11 2001 Mike A. Harris <mharris@redhat.com> 2.0.4-1
b4a942
- Updated source to 2.0.4
b4a942
- Added freetype demo's back into src.rpm, but not building yet.
b4a942
b4a942
* Wed Aug 15 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-7
b4a942
- Changed package to use {findlang} macro to fix bug (#50676)
b4a942
b4a942
* Sun Jul 15 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-6
b4a942
- Changed freetype-devel to group Development/Libraries (#47625)
b4a942
b4a942
* Mon Jul  9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.3-5
b4a942
- Fix up FT1 headers to please Qt 3.0.0 beta 2
b4a942
b4a942
* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.3-4
b4a942
- Add ft2build.h to -devel package, since it's included by all other
b4a942
  freetype headers, the package is useless without it
b4a942
b4a942
* Thu Jun 21 2001 Nalin Dahyabhai <nalin@redhat.com> 2.0.3-3
b4a942
- Change "Requires: freetype = name/ver" to "freetype = version/release",
b4a942
  and move the requirements to the subpackages.
b4a942
b4a942
* Mon Jun 18 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-2
b4a942
- Added "Requires: freetype = name/ver"
b4a942
b4a942
* Tue Jun 12 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-1
b4a942
- Updated to Freetype 2.0.3, minor specfile tweaks.
b4a942
- Freetype2 docs are is in a separate tarball now. Integrated it.
b4a942
- Built in new environment.
b4a942
b4a942
* Fri Apr 27 2001 Bill Nottingham <notting@redhat.com>
b4a942
- rebuild for C++ exception handling on ia64
b4a942
b4a942
* Sat Jan 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
b4a942
- Build ttmkfdir with -O0, workaround for Bug #24253
b4a942
b4a942
* Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
b4a942
- libtool is used to build libttf, so use libtool to link ttmkfdir with it
b4a942
- fixup a paths for a couple of missing docs
b4a942
b4a942
* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
b4a942
- Update ttmkfdir
b4a942
b4a942
* Wed Dec 27 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b4a942
- Update to 2.0.1 and 1.4
b4a942
- Mark locale files as such
b4a942
b4a942
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
b4a942
- automatic rebuild
b4a942
b4a942
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
b4a942
- move .la file to devel pkg
b4a942
- FHS paths
b4a942
b4a942
* Thu Feb 17 2000 Preston Brown <pbrown@redhat.com>
b4a942
- revert spaces patch, fix up some foundry names to match X ones
b4a942
b4a942
* Mon Feb 07 2000 Nalin Dahyabhai <nalin@redhat.com>
b4a942
- add defattr, ftmetric, ftsbit, ftstrtto per bug #9174
b4a942
b4a942
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
b4a942
- fix description and summary
b4a942
b4a942
* Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
b4a942
- make ttmkfdir replace spaces in family names with underscores (#7613)
b4a942
b4a942
* Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b4a942
- 1.3.1
b4a942
- handle RPM_OPT_FLAGS
b4a942
b4a942
* Wed Nov 10 1999 Preston Brown <pbrown@redhat.com>
b4a942
- fix a path for ttmkfdir Makefile
b4a942
b4a942
* Thu Aug 19 1999 Preston Brown <pbrown@redhat.com>
b4a942
- newer ttmkfdir that works better, moved ttmkfdir to /usr/bin from /usr/sbin
b4a942
- freetype utilities moved to subpkg, X dependency removed from main pkg
b4a942
- libttf.so symlink moved to devel pkg
b4a942
b4a942
* Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
b4a942
- strip binaries
b4a942
b4a942
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
b4a942
- auto rebuild in the new build environment (release 5)
b4a942
b4a942
* Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
b4a942
- fixed the doc file list
b4a942
b4a942
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
b4a942
- Injected new description and group.
b4a942
b4a942
* Mon Feb 15 1999 Preston Brown <pbrown@redhat.com>
b4a942
- added ttmkfdir
b4a942
b4a942
* Tue Feb 02 1999 Preston Brown <pbrown@redhat.com>
b4a942
- update to 1.2
b4a942
b4a942
* Thu Jan 07 1999 Cristian Gafton <gafton@redhat.com>
b4a942
- call libtoolize to sanitize config.sub and get ARM support
b4a942
- dispoze of the patch (not necessary anymore)
b4a942
b4a942
* Wed Oct 21 1998 Preston Brown <pbrown@redhat.com>
b4a942
- post/postun sections for ldconfig action.
b4a942
b4a942
* Tue Oct 20 1998 Preston Brown <pbrown@redhat.com>
b4a942
- initial RPM, includes normal and development packages.