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