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