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