cvsdist 9a246d6
%{!?with_xfree86:%define with_xfree86 1}
a8d7bc9
%bcond_with bootstrap
cvsdist 9a246d6
besfahbo 65252aa
Summary: A free and portable font rendering engine
cvsdist bfbd766
Name: freetype
16b1c26
Version: 2.12.1
23c0e45
Release: 3%{?dist}
65f0be9
License: (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement
cvsdist 34fa953
URL: http://www.freetype.org
095c0c5
Source:  http://download.savannah.gnu.org/releases/freetype/freetype-%{version}.tar.xz
095c0c5
Source1: http://download.savannah.gnu.org/releases/freetype/freetype-doc-%{version}.tar.xz
095c0c5
Source2: http://download.savannah.gnu.org/releases/freetype/ft2demos-%{version}.tar.xz
61fbc4c
Source3: ftconfig.h
cvsdist 34fa953
21ab000
# Enable subpixel rendering (ClearType)
21ab000
Patch0:  freetype-2.3.0-enable-spr.patch
besfahbo cbf2c99
# Enable otvalid and gxvalid modules
2e8929e
Patch1:  freetype-2.2.1-enable-valid.patch
Behdad Esfahbod 9da9b9d
# Enable additional demos
2e8929e
Patch2:  freetype-2.5.2-more-demos.patch
cvsdist bfbd766
ae70238
Patch3:  freetype-2.6.5-libtool.patch
928ba61
749d27d
Patch4:  freetype-2.8-multilib.patch
0c07bf5
2e6bf14
Patch5:  freetype-2.10.0-internal-outline.patch
ac07a00
# Revert ABI/API change
ac07a00
Patch6:  freetype-2.10.1-debughook.patch
2e6bf14
209614c
Patch7:  freetype-2.12.1-clear-ownership-flags.patch
209614c
Igor Gnatenko 8ff528d
BuildRequires:  gcc
besfahbo 2dc012a
BuildRequires: libX11-devel
5b7ef25
BuildRequires: libpng-devel
9dac2f4
BuildRequires: zlib-devel
9dac2f4
BuildRequires: bzip2-devel
036e868
BuildRequires: brotli-devel
7890060
BuildRequires: make
0e52f0d
%if %{without bootstrap}
0e52f0d
BuildRequires: harfbuzz-devel
0e52f0d
%endif
besfahbo 2dc012a
Behdad Esfahbod 336d220
Provides: %{name}-bytecode
21ab000
Provides: %{name}-subpixel
a7da0cf
Obsoletes: freetype-freeworld < 2.9.1-2
Behdad Esfahbod 336d220
cvsdist bfbd766
%description
besfahbo cbf2c99
The FreeType engine is a free and portable font rendering
besfahbo cbf2c99
engine, developed to provide advanced font support for a variety of
cvsdist 34fa953
platforms and environments. FreeType is a library which can open and
cvsdist 34fa953
manages font files as well as efficiently load, hint and render
cvsdist bfbd766
individual glyphs. FreeType is not a font server or a complete
cvsdist bfbd766
text-rendering library.
cvsdist bfbd766
cvsdist 34fa953
cvsdist 34fa953
%package demos
besfahbo 8225273
Summary: A collection of FreeType demos
cvsdist 34fa953
Requires: %{name} = %{version}-%{release}
cvsdist 34fa953
cvsdist 34fa953
%description demos
besfahbo cbf2c99
The FreeType engine is a free and portable font rendering
besfahbo cbf2c99
engine, developed to provide advanced font support for a variety of
besfahbo cbf2c99
platforms and environments.  The demos package includes a set of useful
besfahbo cbf2c99
small utilities showing various capabilities of the FreeType library.
cvsdist 34fa953
cvsdist bfbd766
cvsdist bfbd766
%package devel
cvsdist 34fa953
Summary: FreeType development libraries and header files
cvsdist 56921a0
Requires: %{name} = %{version}-%{release}
1007098
Requires: pkgconf%{?_isa}
cvsdist bfbd766
cvsdist bfbd766
%description devel
besfahbo cbf2c99
The freetype-devel package includes the static libraries and header files
besfahbo cbf2c99
for the FreeType font rendering engine.
cvsdist bfbd766
besfahbo cbf2c99
Install freetype-devel if you want to develop programs which will use
besfahbo cbf2c99
FreeType.
cvsdist bfbd766
cvsdist 34fa953
besfahbo cbf2c99
%prep
26db638
%setup -q -b 1 -a 2
9496ba1
21ab000
%patch0  -p1 -b .enable-spr
2e8929e
%patch1  -p1 -b .enable-valid
Behdad Esfahbod 231c0a6
26db638
pushd ft2demos-%{version}
2e8929e
%patch2  -p1 -b .more-demos
Behdad Esfahbod 231c0a6
popd
Kristian Høgsberg d70a8f2
ae70238
%patch3 -p1 -b .libtool
749d27d
%patch4 -p1 -b .multilib
2e6bf14
%patch5 -p1 -b .internal-outline
ac07a00
%patch6 -p1 -b .debughook
209614c
%patch7 -p1 -b .clear-ownership-flags
928ba61
cvsdist bfbd766
%build
cvsdist 028235a
df0e2c4
%configure --disable-static \
df0e2c4
           --with-zlib=yes \
df0e2c4
           --with-bzip2=yes \
df0e2c4
           --with-png=yes \
5034d05
           --enable-freetype-config \
0e52f0d
%if %{without bootstrap}
0e52f0d
           --with-harfbuzz=yes \
0e52f0d
%else
036e868
           --with-harfbuzz=no \
0e52f0d
%endif
036e868
           --with-brotli=yes
5095c76
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' builds/unix/libtool
5095c76
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' builds/unix/libtool
b7670a0
%make_build
cvsdist 34fa953
cvsdist 9a246d6
%if %{with_xfree86}
besfahbo 4ab012b
# Build demos
26db638
pushd ft2demos-%{version}
Behdad Esfahbod 9247a93
make TOP_DIR=".."
Behdad Esfahbod 9247a93
popd
cvsdist 9a246d6
%endif
cvsdist bfbd766
ed86e4c
# Convert FTL.txt and example3.cpp to UTF-8
Behdad Esfahbod 9247a93
pushd docs
Behdad Esfahbod 3191def
iconv -f latin1 -t utf-8 < FTL.TXT > FTL.TXT.tmp && \
Behdad Esfahbod 3191def
touch -r FTL.TXT FTL.TXT.tmp && \
Behdad Esfahbod 3191def
mv FTL.TXT.tmp FTL.TXT
ed86e4c
ed86e4c
iconv -f iso-8859-1 -t utf-8 < "tutorial/example3.cpp" > "tutorial/example3.cpp.utf8"
ed86e4c
touch -r tutorial/example3.cpp tutorial/example3.cpp.utf8 && \
ed86e4c
mv tutorial/example3.cpp.utf8 tutorial/example3.cpp
Behdad Esfahbod 9247a93
popd
Behdad Esfahbod 9247a93
Behdad Esfahbod 9247a93
cvsdist bfbd766
%install
cvsdist 34fa953
ae70238
%make_install gnulocaledir=$RPM_BUILD_ROOT%{_datadir}/locale
cvsdist bfbd766
besfahbo 43c78c9
{
b6c7e8f
  for ftdemo in ftbench ftchkwd ftmemchk ftpatchk fttimer ftdump ftlint ftvalid ; do
26db638
      builds/unix/libtool --mode=install install -m 755 ft2demos-%{version}/bin/$ftdemo $RPM_BUILD_ROOT/%{_bindir}
besfahbo 43c78c9
  done
besfahbo 43c78c9
}
cvsdist 9a246d6
%if %{with_xfree86}
cvsdist 7ce9981
{
besfahbo 11dc18d
  for ftdemo in ftdiff ftgamma ftgrid ftmulti ftstring fttimer ftview ; do
26db638
      builds/unix/libtool --mode=install install -m 755 ft2demos-%{version}/bin/$ftdemo $RPM_BUILD_ROOT/%{_bindir}
cvsdist 7ce9981
  done
cvsdist 7ce9981
}
cvsdist 9a246d6
%endif
cvsdist c39fbb7
b6c7e8f
# man pages for freetype-demos
b6c7e8f
{
b6c7e8f
  for ftdemo in ftbench ftdump ftlint ftvalid ; do
b6c7e8f
      builds/unix/libtool --mode=install install -m 644 ft2demos-%{version}/man/${ftdemo}.1 $RPM_BUILD_ROOT/%{_mandir}/man1
b6c7e8f
  done
b6c7e8f
}
b6c7e8f
%if %{with_xfree86}
b6c7e8f
{
b6c7e8f
  for ftdemo in ftdiff ftgamma ftgrid ftmulti ftstring ftview ; do
b6c7e8f
      builds/unix/libtool --mode=install install -m 644 ft2demos-%{version}/man/${ftdemo}.1 $RPM_BUILD_ROOT/%{_mandir}/man1
b6c7e8f
  done
b6c7e8f
}
b6c7e8f
%endif
b6c7e8f
b1421e9
# fix multilib issues
4cb8262
%define wordsize %{__isa_bits}
b1421e9
26db638
mv $RPM_BUILD_ROOT%{_includedir}/freetype2/freetype/config/ftconfig.h \
26db638
   $RPM_BUILD_ROOT%{_includedir}/freetype2/freetype/config/ftconfig-%{wordsize}.h
26db638
install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_includedir}/freetype2/freetype/config/ftconfig.h
b1421e9
5034d05
# Don't package static .a or .la files
5d0d6a3
rm -f $RPM_BUILD_ROOT%{_libdir}/*.{a,la}
257cbd2
cvsdist bfbd766
cvsdist 34fa953
%triggerpostun -- freetype < 2.0.5-3
cvsdist 7ce9981
{
cvsdist 7ce9981
  # ttmkfdir updated - as of 2.0.5-3, on upgrades we need xfs to regenerate
cvsdist 7ce9981
  # things to get the iso10646-1 encoding listed.
87c1cd1
  for I in %{_datadir}/fonts/*/TrueType /usr/share/X11/fonts/TTF; do
cvsdist 7ce9981
      [ -d $I ] && [ -f $I/fonts.scale ] && [ -f $I/fonts.dir ] && touch $I/fonts.scale
cvsdist 7ce9981
  done
cvsdist 7ce9981
  exit 0
cvsdist 7ce9981
}
cvsdist 34fa953
50a8715
%ldconfig_scriptlets
cvsdist bfbd766
besfahbo bf2fbc7
%files
9dc94ee
%{!?_licensedir:%global license %%doc}
d6214db
%license LICENSE.TXT docs/FTL.TXT docs/GPLv2.TXT
cvsdist bfbd766
%{_libdir}/libfreetype.so.*
Behdad Esfahbod 9247a93
%doc README
cvsdist bfbd766
cvsdist 34fa953
%files demos
besfahbo cbf2c99
%{_bindir}/ftbench
besfahbo cbf2c99
%{_bindir}/ftchkwd
Behdad Esfahbod 9da9b9d
%{_bindir}/ftmemchk
Behdad Esfahbod 9da9b9d
%{_bindir}/ftpatchk
Behdad Esfahbod 9da9b9d
%{_bindir}/fttimer
cvsdist 34fa953
%{_bindir}/ftdump
cvsdist 34fa953
%{_bindir}/ftlint
besfahbo cbf2c99
%{_bindir}/ftvalid
b6c7e8f
%{_mandir}/man1/ftbench.1.gz
b6c7e8f
%{_mandir}/man1/ftdump.1.gz
b6c7e8f
%{_mandir}/man1/ftlint.1.gz
b6c7e8f
%{_mandir}/man1/ftvalid.1.gz
besfahbo cbf2c99
%if %{with_xfree86}
besfahbo 11dc18d
%{_bindir}/ftdiff
besfahbo cbf2c99
%{_bindir}/ftgamma
besfahbo 11dc18d
%{_bindir}/ftgrid
cvsdist 34fa953
%{_bindir}/ftmulti
cvsdist 34fa953
%{_bindir}/ftstring
cvsdist 34fa953
%{_bindir}/ftview
b6c7e8f
%{_mandir}/man1/ftdiff.1.gz
b6c7e8f
%{_mandir}/man1/ftgamma.1.gz
b6c7e8f
%{_mandir}/man1/ftgrid.1.gz
b6c7e8f
%{_mandir}/man1/ftmulti.1.gz
b6c7e8f
%{_mandir}/man1/ftstring.1.gz
b6c7e8f
%{_mandir}/man1/ftview.1.gz
cvsdist 9a246d6
%endif
Behdad Esfahbod 9247a93
%doc ChangeLog README
cvsdist 34fa953
cvsdist bfbd766
%files devel
9dc94ee
%doc docs/CHANGES docs/formats.txt docs/ft2faq.html
cvsdist 7ce9981
%dir %{_includedir}/freetype2
cvsdist 7ce9981
%{_datadir}/aclocal/freetype2.m4
cvsdist bfbd766
%{_includedir}/freetype2/*
cvsdist bfbd766
%{_libdir}/libfreetype.so
cvsdist bfbd766
%{_bindir}/freetype-config
557ed7e
%{_libdir}/pkgconfig/freetype2.pc
Behdad Esfahbod 9247a93
%doc docs/design
Behdad Esfahbod 9247a93
%doc docs/glyphs
Behdad Esfahbod 9247a93
%doc docs/reference
Behdad Esfahbod 9247a93
%doc docs/tutorial
dfbfe8a
%{_mandir}/man1/*
cvsdist bfbd766
cvsdist bfbd766
%changelog
23c0e45
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.1-3
23c0e45
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
23c0e45
209614c
* Fri Jul  8 2022 Marek Kasik <mkasik@redhat.com> - 2.12.1-2
209614c
- Clear correct flags for doc ownership
209614c
- Resolves: #2104570
209614c
16b1c26
* Mon May  2 2022 Marek Kasik <mkasik@redhat.com> - 2.12.1-1
16b1c26
- Update to 2.12.1
16b1c26
- Resolves: #2080714
16b1c26
d4e28cf
* Mon Apr 25 2022 Marek Kasik <mkasik@redhat.com> - 2.12.0-1
d4e28cf
- Update to 2.12.0
d4e28cf
- Resolves: #2070686
d4e28cf
b76102f
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-2
b76102f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
b76102f
edee3a6
* Sat Dec 4 2021 Diego Herrera <dherrera@redhat.com> - 2.11.1-1
edee3a6
- Update to 2.11.1
edee3a6
d6214db
* Thu Jul 22 2021 Marek Kasik <mkasik@redhat.com> - 2.11.0-1
d6214db
- Update to 2.11.0
d6214db
2a13852
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.4-4
2a13852
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2a13852
0e52f0d
* Fri Feb 5 2021 Akira TAGOH <tagoh@redhat.com> - 2.10.4-3
0e52f0d
- Enable HarfBuzz support
0e52f0d
- Add bootstrap without HarfBuzz
0e52f0d
- Resolves: #1853937
0e52f0d
- Resolves: #1906714
0e52f0d
19cee98
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.4-2
19cee98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
19cee98
0e52f0d
* Fri Oct 23 2020 Marek Kasik <mkasik@redhat.com> - 2.10.4-1
b6c7e8f
- Update to 2.10.4
b6c7e8f
- Test bitmap size earlier for PNGs
b6c7e8f
- Fix memory leak in pngshim.c
b6c7e8f
- Enable man pages for demos
b6c7e8f
- Resolves: #1887084, #1890211
b6c7e8f
7ebf3fc
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.2-3
7ebf3fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
7ebf3fc
b7670a0
* Tue Jul 21 2020 Tom Stellard <tstellar@redhat.com> - 2.10.2-2
b7670a0
- Use make macros
b7670a0
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
b7670a0
036e868
* Wed Jul 15 2020 Marek Kasik <mkasik@redhat.com> - 2.10.2-1
036e868
- Update to 2.10.2
036e868
- Enable support for WOFF2 streams
036e868
- Resolves: #1725983
036e868
8f8172b
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.1-2
8f8172b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8f8172b
095c0c5
* Sat Oct 12 2019 Michael Kuhn <suraia@fedoraproject.org> - 2.10.1-1
095c0c5
- Update to 2.10.1
ac07a00
- Revert FT_DebugHook_Func ABI/API changes
095c0c5
c37eace
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.0-3
c37eace
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c37eace
8c47943
* Tue Jun 11 09:42:57 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.10.0-2
8c47943
- Fix handling of undefined glyph [pcf]
8c47943
2e6bf14
* Tue May 28 2019 Marek Kasik <mkasik@redhat.com> - 2.10.0-1
2e6bf14
- Update to 2.10.0
2e6bf14
- Keep FT_Outline_New_Internal() and FT_Outline_Done_Internal()
2e6bf14
- for ABI compatibility but make them just throw
2e6bf14
- Unimplemented_Feature error.
2e6bf14
- Remove them once soname has been bumped!
2e6bf14
- Resolves: #1689117
2e6bf14
dd8205a
* Mon Apr 8 2019 Marek Kasik <mkasik@redhat.com> - 2.9.1-8
dd8205a
- Remove freetype-2.9-ftsmooth.patch
dd8205a
649b626
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.1-7
649b626
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
649b626
a7da0cf
* Wed Oct 31 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-6
a7da0cf
- Obsolete freetype-freeworld
a7da0cf
- Resolves: #1644700
a7da0cf
21ab000
* Wed Oct 31 2018 Neal Gompa <ngompa13@gmail.com> - 2.9.1-5
21ab000
- Correctly enable subpixel rendering for ClearType functionality
21ab000
6814287
* Mon Oct 29 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-4
6814287
- Enable ClearType code thanks to Microsoft joining OIN
6814287
5912cfc
* Fri Oct 19 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-3
5912cfc
- Use 'pkgconf' directly for multilib reasons
5912cfc
- Resolves: #1639379
5912cfc
6baa332
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.1-2
6baa332
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
6baa332
5034d05
* Fri May 25 2018 Marek Kasik <mkasik@redhat.com> - 2.9.1-1
5034d05
- Update to 2.9.1
5034d05
- Modify/remove patches as needed
5034d05
- Resolves: #1574125
5034d05
749d27d
* Tue Mar 20 2018 Marek Kasik <mkasik@redhat.com> - 2.9-1
749d27d
- Update to 2.9
749d27d
- Add/modify/remove patches as needed
749d27d
- Resolves: #1492372
749d27d
a84e718
* Fri Feb 16 2018 Marek Kasik <mkasik@redhat.com> - 2.8-10
a84e718
- Avoid NULL reference
a84e718
- Resolves: #1544776
a84e718
1cbdb31
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-9
1cbdb31
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1cbdb31
50a8715
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.8-8
50a8715
- Switch to %%ldconfig_scriptlets
50a8715
1007098
* Mon Oct  9 2017 Marek Kasik <mkasik@redhat.com> - 2.8-7
1007098
- Require pkgconf so we can make freetype-config multilib compatible again
1007098
- Resolves: #1497443
1007098
1fb7702
* Thu Sep 21 2017 Marek Kasik <mkasik@redhat.com> - 2.8-6
1fb7702
- Fix loading of named instances (TrueType)
1fb7702
3425366
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-5
3425366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3425366
6a9e63a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-4
6a9e63a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6a9e63a
4f731bf
* Thu Jun  1 2017 Marek Kasik <mkasik@redhat.com> - 2.8-3
4f731bf
- Adjust loop counter maximum for TrueType fonts
4f731bf
- Resolves: #1456585
4f731bf
0c07bf5
* Wed May 24 2017 Marek Kasik <mkasik@redhat.com> - 2.8-2
0c07bf5
- Accept ISO646.1991-IRV as a Unicode charmap in PCF and BDF drivers
0c07bf5
- Resolves: #1451795
0c07bf5
ae70238
* Wed May 17 2017 Marek Kasik <mkasik@redhat.com> - 2.8-1
ae70238
- Update to 2.8
ae70238
- Modify/remove patches as needed
ae70238
- Resolves: #1450581
ae70238
800ea29
* Tue May  2 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-7
800ea29
- Fix numbers of tracking bugs
800ea29
5e36bb9
* Tue May  2 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-6
5e36bb9
- Add safety guard (CVE-2017-8287)
800ea29
- Resolves: #1446074
5e36bb9
2e8929e
* Tue May  2 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-5
2e8929e
- Better protect `flex' handling (CVE-2017-8105)
800ea29
- Resolves: #1446501
2e8929e
f9a8cd6
* Mon Apr 10 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-4
f9a8cd6
- Revert previous commit
f9a8cd6
- Related: #1437999
f9a8cd6
8d9deda
* Mon Apr  3 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-3
8d9deda
- Allow linear scaling for unhinted rendering
8d9deda
- Resolves: #1437999
8d9deda
b9316ab
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.1-2
b9316ab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b9316ab
6e58fdb
* Tue Jan  3 2017 Marek Kasik <mkasik@redhat.com> - 2.7.1-1
6e58fdb
- Update to 2.7.1
6e58fdb
- Resolves: #1409271
6e58fdb
8d746db
* Mon Nov 21 2016 Marek Kasik <mkasik@redhat.com> - 2.7-2
8d746db
- Fix a valgrind warning
8d746db
- Resolves: #1395915
8d746db
6e7eb90
* Mon Sep 12 2016 Marek Kasik <mkasik@redhat.com> - 2.7-1
6e7eb90
- Update to 2.7
6e7eb90
- Resolves: #1374305
6e7eb90
928ba61
* Mon Aug 22 2016 Marek Kasik <mkasik@redhat.com> - 2.6.5-2
928ba61
- Don't show path of non-existing libtool file
928ba61
9a81147
* Wed Jul 13 2016 Marek Kasik <mkasik@redhat.com> - 2.6.5-1
9a81147
- Update to 2.6.5
9a81147
- Resolves: #1355743
9a81147
9dc94ee
* Sat Mar  5 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.6.3-2
9dc94ee
- Use %%license and cleanup spec
9dc94ee
- Move dev docs to devel package
9dc94ee
f9a2bd8
* Wed Feb 10 2016 Marek Kasik <mkasik@redhat.com> - 2.6.3-1
f9a2bd8
- Update to 2.6.3
f9a2bd8
8f6a792
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-2
8f6a792
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8f6a792
be76cb9
* Thu Dec  3 2015 Tom Callaway <spot@fedoraproject.org> - 2.6.2-1
be76cb9
- update to 2.6.2
be76cb9
26db638
* Mon Oct 12 2015 Marek Kasik <mkasik@redhat.com> - 2.6.1-1
26db638
- Update to 2.6.1
26db638
- Adapt to the new header structure
26db638
- Resolves: #1268661
26db638
9496ba1
* Tue Jul 28 2015 Marek Kasik <mkasik@redhat.com> - 2.6.0-3
9496ba1
- Don't use `hmtx' table for LSB
9496ba1
ac56bb1
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-2
ac56bb1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
ac56bb1
5351dca
* Fri Jun 12 2015 Marek Kasik <mkasik@redhat.com> - 2.6.0-1
5351dca
- Update to 2.6
5351dca
- Resolves: #1229688
5351dca
50aa73e
* Tue Jan  6 2015 Marek Kasik <mkasik@redhat.com> - 2.5.5-1
50aa73e
- Update to 2.5.5
50aa73e
- Resolves: #1178876
50aa73e
a2e19d6
* Tue Dec  9 2014 Marek Kasik <mkasik@redhat.com> - 2.5.4-1
a2e19d6
- Update to 2.5.4
a2e19d6
- Resolves: #1171504
a2e19d6
ac3b651
* Tue Nov 11 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-11
ac3b651
- Fix directories returned by freetype-config with modified prefix
ac3b651
- Resolves: #1161963
ac3b651
365fb73
* Tue Oct 21 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-10
365fb73
- Fix patch which enables subpixel rendering
365fb73
- Resolves: #1154448
365fb73
4cb8262
* Mon Aug 18 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-9
4cb8262
- Simplify getting of wordsize
4cb8262
0834a5e
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-8
0834a5e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
0834a5e
1978c3b
* Sat Aug  2 2014 Peter Robinson <pbrobinson@redhat.com> 2.5.3-7
1978c3b
- Generic 32/64 bit platform detection (fix it once and for all)
1978c3b
d97aadb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-6
d97aadb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d97aadb
df0e2c4
* Tue Mar 25 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-5
df0e2c4
- Be explicit about required libraries
df0e2c4
934384e
* Tue Mar 25 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-4
934384e
- Don't return flags of privately used libraries when
934384e
- calling "freetype-config --libs"
934384e
- Resolves: #1079302
934384e
27e95cf
* Fri Mar 21 2014 Dan Horák <dan[at]danny.cz> - 2.5.3-3
27e95cf
- drop private libs from freetype-config so it returns the same libs as pkg-config
27e95cf
9dac2f4
* Tue Mar 11 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-2
9dac2f4
- Enable support for bzip2 compressed fonts
9dac2f4
dfbfe8a
* Tue Mar 11 2014 Marek Kasik <mkasik@redhat.com> - 2.5.3-1
dfbfe8a
- Update to 2.5.3
dfbfe8a
- Resolves: #1073923
dfbfe8a
29bfa79
* Mon Jan 20 2014 Marek Kasik <mkasik@redhat.com> - 2.5.2-2
29bfa79
- Fix include directory in freetype-config
29bfa79
- Resolves: #1055154
29bfa79
e7d12dc
* Fri Jan 17 2014 Marek Kasik <mkasik@redhat.com> - 2.5.2-1
e7d12dc
- Update to 2.5.2
e7d12dc
- Modify spec file to respect the new header file layout
e7d12dc
- Resolves: #1034065
e7d12dc
f4d0156
* Fri Jan 10 2014 Marek Kasik <mkasik@redhat.com> - 2.5.0-5
f4d0156
- Enable ppc64le architecture
f4d0156
- Resolves: #1051202
f4d0156
610601a
* Fri Sep 20 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-4
610601a
- Fix vertical size of emboldened glyphs
610601a
c66b299
* Mon Aug 05 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-3
c66b299
- Fix changelog dates
c66b299
5b7ef25
* Mon Aug 05 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-2
5b7ef25
- Require libpng
5b7ef25
1afc4d2
* Mon Aug 05 2013 Marek Kasik <mkasik@redhat.com> - 2.5.0-1
1afc4d2
- Update to 2.5.0
1afc4d2
- Backport changes from freetype-2.5.0.1
1afc4d2
-   (ft2demos-2.5.0.1 and freetype-doc-2.5.0.1 were not released)
1afc4d2
4d38869
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.12-6
4d38869
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4d38869
2282d31
* Wed May 29 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.12-5
2282d31
- Add aarch64 to 64 bit arch list
2282d31
ed86e4c
* Thu May 16 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-4
ed86e4c
- Change encoding of "docs/tutorial/example3.cpp" to UTF-8
ed86e4c
61fbc4c
* Thu May 16 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-3
61fbc4c
- Package ftconfig.h as source file
61fbc4c
e78513b
* Mon May 13 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-2
e78513b
- Don't use quotes in freetype2.pc
e78513b
- Resolves: #961855
e78513b
9d3d183
* Thu May  9 2013 Marek Kasik <mkasik@redhat.com> - 2.4.12-1
9d3d183
- Update to 2.4.12
9d3d183
- Enable Adobe CFF engine
9d3d183
- Resolves: #959771
9d3d183
3ab804c
* Tue Mar 19 2013 Marek Kasik <mkasik@redhat.com> - 2.4.11-3
3ab804c
- Fix emboldening:
3ab804c
    - split out MSB function
3ab804c
    - fix integer overflows
3ab804c
    - fix broken emboldening at small sizes
3ab804c
- Resolves: #891457
3ab804c
f853bce
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.11-2
f853bce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f853bce
9e2b1b6
* Wed Jan  2 2013 Marek Kasik <mkasik@redhat.com> - 2.4.11-1
9e2b1b6
- Update to 2.4.11
9e2b1b6
- Resolves: #889177
9e2b1b6
65f0be9
* Wed Oct 24 2012 Marek Kasik <mkasik@redhat.com> - 2.4.10-3
65f0be9
- Update License field
65f0be9
aa208cc
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.10-2
aa208cc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
aa208cc
ce853fd
* Wed Jul 11 2012 Marek Kasik <mkasik@redhat.com> 2.4.10-1
ce853fd
- Update to 2.4.10
ce853fd
- Remove patches which are already included in upstream
ce853fd
- Resolves: #832651
ce853fd
e50e930
* Fri Mar 30 2012 Marek Kasik <mkasik@redhat.com> 2.4.9-1
e50e930
- Update to 2.4.9
e50e930
- Fixes various CVEs
e50e930
- Resolves: #806270
e50e930
1a9ea06
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.8-2
1a9ea06
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1a9ea06
f772e1d
* Tue Nov 15 2011 Marek Kasik <mkasik@redhat.com> 2.4.8-1
f772e1d
- Update to 2.4.8
f772e1d
- Remove an unneeded patch
f772e1d
bba3c23
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.7-2
bba3c23
- Rebuilt for glibc bug#747377
bba3c23
51b59a0
* Thu Oct 20 2011 Marek Kasik <mkasik@redhat.com> 2.4.7-1
51b59a0
- Update to 2.4.7
51b59a0
- Fixes CVE-2011-3256
51b59a0
- Resolves: #747262
51b59a0
6183c50
* Thu Aug  4 2011 Marek Kasik <mkasik@redhat.com> 2.4.6-1
6183c50
- Update to 2.4.6
6183c50
36cb801
* Wed Jul 20 2011 Marek Kasik <mkasik@redhat.com> 2.4.5-2
36cb801
- Add freetype-2.4.5-CVE-2011-0226.patch
36cb801
    (Add better argument check for `callothersubr'.)
36cb801
    - based on patches by Werner Lemberg,
36cb801
      Alexei Podtelezhnikov and Matthias Drochner
36cb801
- Resolves: #723469
36cb801
ec4243e
* Tue Jun 28 2011 Marek Kasik <mkasik@redhat.com> 2.4.5-1
ec4243e
- Update to 2.4.5
ec4243e
db82684
* Tue Mar  8 2011 Marek Kasik <mkasik@redhat.com> 2.4.4-4
db82684
- Fix autohinting fallback (#547532).
db82684
- Ignore CFF-based OTFs.
db82684
c34d946
* Sun Feb 20 2011 Marek Kasik <mkasik@redhat.com> 2.4.4-3
c34d946
- Enable bytecode interpreter (#547532).
c34d946
- Fall back to autohinting if a TTF/OTF doesn't contain any bytecode.
c34d946
abeaaba
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.4-2
abeaaba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
abeaaba
198717f
* Thu Dec  2 2010 Marek Kasik <mkasik@redhat.com> 2.4.4-1
198717f
- Update to 2.4.4
198717f
- Remove freetype-2.4.3-CVE-2010-3855.patch
198717f
- Resolves: #659020
198717f
4548e1a
* Mon Nov 15 2010 Marek Kasik <mkasik@redhat.com> 2.4.3-2
4548e1a
- Add freetype-2.4.3-CVE-2010-3855.patch
4548e1a
    (Protect against invalid `runcnt' values.)
4548e1a
- Resolves: #651764
4548e1a
098778f
* Tue Oct 26 2010 Marek Kasik <mkasik@redhat.com> 2.4.3-1
098778f
- Update to 2.4.3
098778f
- Resolves: #639906
098778f
5263610
* Wed Oct  6 2010 Marek Kasik <mkasik@redhat.com> 2.4.2-3
5263610
- Add freetype-2.4.2-CVE-2010-3311.patch
5263610
    (Don't seek behind end of stream.)
5263610
- Resolves: #638522
5263610
c0025fc
* Fri Aug  6 2010 Matthias Clasen <mclasen@redhat.com> 2.4.2-2
c0025fc
- Fix a thinko, we still want to disable the bytecode interpreter
c0025fc
  by default
c0025fc
05c25c6
* Fri Aug  6 2010 Matthias Clasen <mclasen@redhat.com> 2.4.2-1
05c25c6
- Update to 2.4.2
05c25c6
- Drop upstreamed patch, bytecode interpreter now on by default
05c25c6
c66b299
* Tue Feb 23 2010 Behdad Esfahbod <behdad@redhat.com> 2.3.12-1
Behdad Esfahbod 231c0a6
- Update to 2.3.12
Behdad Esfahbod 231c0a6
- Drop mathlib patch
Behdad Esfahbod 231c0a6
Behdad Esfahbod b75fcec
* Thu Dec  3 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.11-2
Behdad Esfahbod b75fcec
- Drop upstreamed patch.
Behdad Esfahbod b75fcec
- Enable patented bytecode interpretter now that the patents are expired.
Behdad Esfahbod b75fcec
Behdad Esfahbod 9da9b9d
* Thu Oct 22 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.11-1
Behdad Esfahbod 9da9b9d
- Update to 2.3.11.
Behdad Esfahbod 9da9b9d
- Add freetype-2.3.11-more-demos.patch
Behdad Esfahbod 9da9b9d
- New demo programs ftmemchk, ftpatchk, and fttimer
Behdad Esfahbod 9da9b9d
Behdad Esfahbod d088175
* Thu Oct 08 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.10-1
Behdad Esfahbod d088175
- Drop freetype-2.3.9-aliasing.patch
Behdad Esfahbod d088175
- Update to 2.3.10.
Behdad Esfahbod d088175
Behdad Esfahbod f4a7188
* Thu Jul 30 2009 Behdad Esfahbod <behdad@redhat.com> 2.3.9-6
Behdad Esfahbod f4a7188
- Add freetype-2.3.9-aliasing.patch
Behdad Esfahbod f4a7188
- Resolves: 513582
Behdad Esfahbod f4a7188
680c21c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.9-5
680c21c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
680c21c
557ed7e
* Thu May  7 2009 Matthias Clasen <mclasen@redhat.com> 2.3.9-4
557ed7e
- Don't own /usr/lib/pkgconfig
557ed7e
c66b299
* Fri Mar 27 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.9-3
Behdad Esfahbod 61ed3a0
- Disable subpixel hinting by default.  Was turned on unintentionally.
Behdad Esfahbod 61ed3a0
Behdad Esfahbod 336d220
* Wed Mar 25 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.9-2
Behdad Esfahbod 336d220
- Add Provides: freetype-bytecode and freetype-subpixel if built
Behdad Esfahbod 336d220
  with those options.
Behdad Esfahbod 336d220
- Resolves: #155210
Behdad Esfahbod 336d220
c66b299
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.9-1
Behdad Esfahbod 4703545
- Update to 2.3.9.
Behdad Esfahbod 4703545
- Resolves #489928
Behdad Esfahbod 4703545
c66b299
* Mon Mar 09 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.8-2.1
Behdad Esfahbod 3191def
- Preserve timestamp of FTL.TXT when converting to UTF-8.
Behdad Esfahbod 3191def
145ccfa
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.8-2
145ccfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
145ccfa
Behdad Esfahbod d0b86ca
* Thu Jan 15 2009 Behdad Esfahbod <besfahbo@redhat.com> 2.3.8-1
Behdad Esfahbod d0b86ca
- Update to 2.3.8
Behdad Esfahbod d0b86ca
- Remove freetype-autohinter-ligature.patch
Behdad Esfahbod d0b86ca
Behdad Esfahbod 9247a93
* Tue Dec 09 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.7-3
Behdad Esfahbod 9247a93
- Add full source URL to Source lines.
Behdad Esfahbod 9247a93
- Add docs to main and devel package.
Behdad Esfahbod 9247a93
- rpmlint is happy now.
Behdad Esfahbod 9247a93
- Resolves: #225770
Behdad Esfahbod 9247a93
Behdad Esfahbod 82908e2
* Fri Dec 05 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.7-2
Behdad Esfahbod 028eec1
- Add freetype-autohinter-ligature.patch
Behdad Esfahbod 028eec1
- Resolves: #368561
Behdad Esfahbod 028eec1
c66b299
* Thu Aug 14 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.7-1
Behdad Esfahbod 6f207da
- Update to 2.3.7
Behdad Esfahbod 6f207da
Behdad Esfahbod 1624014
* Tue Jun 10 2008 Behdad Esfahbod <besfahbo@redhat.com> 2.3.6-1
Behdad Esfahbod 1624014
- Update to 2.3.6
Behdad Esfahbod 1624014
e33e30c
* Wed May 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.3.5-5
e33e30c
- fix license tag
e33e30c
- add sparc64 to list of 64bit arches
e33e30c
005bf17
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.3.5-4
005bf17
- Autorebuild for GCC 4.3
005bf17
49ff657
* Thu Aug 23 2007 Adam Jackson <ajax@redhat.com> - 2.3.5-3
49ff657
- Rebuild for build ID
49ff657
Behdad Esfahbod 417715c
* Tue Jul 31 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.5-2
Behdad Esfahbod 417715c
- Change spec file to permit enabling bytecode-interpreter and
Behdad Esfahbod 417715c
  subpixel-rendering without editing spec file.
Behdad Esfahbod 417715c
- Resolves: 249986
Behdad Esfahbod 417715c
Behdad Esfahbod d148773
* Wed Jul 25 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.5-1
Behdad Esfahbod d148773
- Update to 2.3.5.
Behdad Esfahbod d148773
- Drop freetype-2.3.4-ttf-overflow.patch
Behdad Esfahbod d148773
5095c76
* Fri Jun 29 2007 Adam Jackson <ajax@redhat.com> 2.3.4-4
5095c76
- Fix builds/unix/libtool to not emit rpath into binaries. (#225770)
5095c76
Behdad Esfahbod 75bee4a
* Thu May 31 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.4-3
Behdad Esfahbod 75bee4a
- Add freetype-2.3.4-ttf-overflow.patch
Behdad Esfahbod 75bee4a
besfahbo ddfc10c
* Thu Apr 12 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.4-2
besfahbo ddfc10c
- Add alpha to 64-bit archs (#236166)
besfahbo ddfc10c
c66b299
* Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.4-1
besfahbo d843b39
- Update to 2.3.4.
besfahbo d843b39
besfahbo 11dc18d
* Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.3-2
besfahbo 11dc18d
- Include new demos ftgrid and ftdiff in freetype-demos. (#235478)
besfahbo 11dc18d
besfahbo c3e22e2
* Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.3-1
besfahbo c3e22e2
- Update to 2.3.3.
besfahbo c3e22e2
besfahbo 9391f68
* Fri Mar 09 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.2-1
besfahbo 9391f68
- Update to 2.3.2.
besfahbo 9391f68
besfahbo a57ed24
* Fri Feb 02 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.1-1
besfahbo a57ed24
- Update to 2.3.1.
besfahbo a57ed24
besfahbo c1c64f8
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.0-2
besfahbo c1c64f8
- Add without_subpixel_rendering.
besfahbo c1c64f8
- Drop X11_PATH=/usr.  Not needed anymore.
besfahbo c1c64f8
besfahbo 4ab012b
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.0-1
besfahbo 4ab012b
- Update to 2.3.0.
besfahbo 4ab012b
- Drop upstream patches.
besfahbo 4ab012b
- Drop -fno-strict-aliasing, it should just work.
besfahbo 4ab012b
- Fix typo in ftconfig.h generation.
besfahbo 4ab012b
besfahbo 43c78c9
* Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-16
besfahbo 43c78c9
- Backport binary-search fixes from HEAD
besfahbo 43c78c9
- Add freetype-2.2.1-ttcmap.patch
besfahbo 43c78c9
- Resolves: #208734
besfahbo 43c78c9
besfahbo 43c78c9
- Fix rendering issue with some Asian fonts.
besfahbo 43c78c9
- Add freetype-2.2.1-fix-get-orientation.patch
besfahbo 43c78c9
- Resolves: #207261
besfahbo 43c78c9
besfahbo 43c78c9
- Copy non-X demos even if not compiling with_xfree86.
besfahbo 43c78c9
besfahbo 43c78c9
- Add freetype-2.2.1-zero-item-size.patch, to fix crasher.
besfahbo 43c78c9
- Resolves #214048
besfahbo 43c78c9
besfahbo 43c78c9
- Add X11_PATH=/usr to "make"s, to find modern X.
besfahbo 43c78c9
- Resolves #212199
besfahbo 43c78c9
besfahbo aa53a19
* Mon Sep 11 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-10
besfahbo aa53a19
- Fix crasher https://bugs.freedesktop.org/show_bug.cgi?id=6841
besfahbo aa53a19
- Add freetype-2.2.1-memcpy-fix.patch
besfahbo aa53a19
besfahbo 2dc012a
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-9
besfahbo 2dc012a
- Add BuildRequires: libX11-devel (#205355)
besfahbo 2dc012a
besfahbo 9b06cdd
* Tue Aug 29 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-8
besfahbo 9b06cdd
- Add freetype-composite.patch and freetype-more-composite.patch
besfahbo 9b06cdd
  from upstream. (#131851)
besfahbo 9b06cdd
ee7aedd
* Mon Aug 28 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.1-7
ee7aedd
- Require pkgconfig in the -devel package
ee7aedd
78947f8
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-6
78947f8
- pass --disable-static to %%configure. (#172628)
78947f8
257cbd2
* Thu Aug 17 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-5
257cbd2
- don't package static libs
257cbd2
ef3dae1
* Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.1-4.fc6
ef3dae1
- fix a problem with the multilib patch (#202366)
ef3dae1
b1421e9
* Thu Jul 27 2006 Matthias Clasen  <mclasen@redhat.com> - 2.2.1-3
b1421e9
- fix multilib issues
b1421e9
cdedbec
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-2.1
cdedbec
- rebuild
cdedbec
besfahbo 3846b6e
* Fri Jul 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-2
besfahbo 3846b6e
- Remove unused BuildRequires
besfahbo 3846b6e
besfahbo cbf2c99
* Fri Jul 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-1
besfahbo cbf2c99
- Update to 2.2.1
besfahbo cbf2c99
- Remove FreeType 1, to move to extras
besfahbo cbf2c99
- Install new demos ftbench, ftchkwd, ftgamma, and ftvalid
besfahbo cbf2c99
- Enable modules gxvalid and otvalid
besfahbo cbf2c99
e4840bb
* Wed May 17 2006 Karsten Hopp <karsten@redhat.de> 2.1.10-6
e4840bb
- add buildrequires libICE-devel, libSM-devel
e4840bb
795c1dc
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.1.10-5.2.1
795c1dc
- bump again for double-long bug on ppc(64)
795c1dc
f77fefc
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.1.10-5.2
f77fefc
- rebuilt for new gcc4.1 snapshot and glibc changes
f77fefc
24d02df
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
24d02df
- rebuilt
24d02df
87c1cd1
* Fri Nov 18 2005 Bill Nottingham  <notting@redhat.com> 2.1.10-5
87c1cd1
- Remove references to obsolete /usr/X11R6 paths
87c1cd1
975cf61
* Tue Nov  1 2005 Matthias Clasen  <mclasen@redhat.com> 2.1.10-4
975cf61
- Switch requires to modular X
975cf61
2656b2d
* Fri Oct 21 2005 Matthias Clasen  <mclasen@redhat.com> 2.1.10-3
2656b2d
- BuildRequire gettext 
2656b2d
jvdias 0e7abc9
* Wed Oct 12 2005 Jason Vas Dias <jvdias@redhat.com> 2.1.10-2
jvdias 0e7abc9
- fix 'without_bytecode_interpreter 0' build: freetype-2.1.10-enable-ft2-bci.patch
jvdias 0e7abc9
e7dda18
* Fri Oct  7 2005 Matthias Clasen  <mclasen@redhat.com> 2.1.10-1
e7dda18
- Update to 2.1.10
e7dda18
- Add necessary fixes
e7dda18
Kristian Høgsberg d70a8f2
* Tue Aug 16 2005 Kristian Høgsberg <krh@redhat.com> 2.1.9-4
Kristian Høgsberg d70a8f2
- Fix freetype-config on 64 bit platforms.
Kristian Høgsberg d70a8f2
dbfa7a0
* Thu Jul 07 2005 Karsten Hopp <karsten@redhat.de> 2.1.9-3
dbfa7a0
- BuildRequires xorg-x11-devel
dbfa7a0
David Zeuthen 88db189
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.1.9-2
David Zeuthen 88db189
- Rebuild
David Zeuthen 88db189
cvsdist cd6b663
* Wed Aug  4 2004 Owen Taylor <otaylor@redhat.com> - 2.1.9-1
cvsdist cd6b663
- Upgrade to 2.1.9
cvsdist cd6b663
- Since we are just using automake for aclocal, use it unversioned,
cvsdist cd6b663
  instead of specifying 1.4.
cvsdist cd6b663
cvsdist 0fa5756
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 0fa5756
- rebuilt
cvsdist 0fa5756
cvsdist fef5e91
* Mon Apr 19 2004 Owen Taylor <otaylor@redhat.com> 2.1.7-4
cvsdist fef5e91
- Add patch from freetype CVS to fix problem with eexec (#117743)
cvsdist fef5e91
- Add freetype-devel to buildrequires and -devel requires
cvsdist fef5e91
  (Maxim Dzumanenko, #111108)
cvsdist fef5e91
cvsdist 028235a
* Wed Mar 10 2004 Mike A. Harris <mharris@redhat.com> 2.1.7-3
cvsdist 028235a
- Added -fno-strict-aliasing to CFLAGS and CXXFLAGS to try to fix SEGV and
cvsdist 028235a
  SIGILL crashes in mkfontscale which have been traced into freetype and seem
cvsdist fef5e91
  to be caused by aliasing issues in freetype macros (#118021)
cvsdist 028235a
cvsdist 028235a
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 2.1.7-2.1
cvsdist 028235a
- rebuilt
cvsdist 028235a
cvsdist 028235a
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 2.1.7-2
cvsdist 028235a
- rebuilt
cvsdist 028235a
cvsdist a3f9724
* Fri Jan 23 2004 Owen Taylor <otaylor@redhat.com> 2.1.7-1
cvsdist a3f9724
- Upgrade to 2.1.7
cvsdist a3f9724
cvsdist 9a246d6
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 9a246d6
- allow compiling without the demos as that requires XFree86
cvsdist 9a246d6
  (this allows bootstrapping XFree86 on new archs)
cvsdist 9a246d6
cvsdist 9a246d6
* Fri Aug  8 2003 Elliot Lee <sopwith@redhat.com> 2.1.4-4.1
cvsdist 9a246d6
- Rebuilt
cvsdist 9a246d6
cvsdist 9a246d6
* Tue Jul  8 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-4.0
cvsdist 9a246d6
- Bump for rebuild
cvsdist 9a246d6
cvsdist 9a246d6
* Wed Jun 25 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-3
cvsdist 9a246d6
- Fix crash with non-format-0 hdmx tables (found by David Woodhouse)
cvsdist 9a246d6
cvsdist 9a246d6
* Mon Jun  9 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-1
cvsdist 9a246d6
- Version 2.1.4
cvsdist 9a246d6
- Relibtoolize to get deplibs right for x86_64
cvsdist 9a246d6
- Use autoconf-2.5x for freetype-1.4 to fix libtool-1.5 compat problem (#91781)
cvsdist 9a246d6
- Relativize absolute symlinks to fix the -debuginfo package 
cvsdist 9a246d6
  (#83521, Mike Harris)
cvsdist 9a246d6
cvsdist 9a246d6
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 9a246d6
- rebuilt
cvsdist 9a246d6
cvsdist 9a246d6
* Thu May 22 2003 Jeremy Katz <katzj@redhat.com> 2.1.3-9
cvsdist 9a246d6
- fix build with gcc 3.3
cvsdist 9a246d6
cvsdist 9a246d6
* Tue Feb 25 2003 Owen Taylor <otaylor@redhat.com>
cvsdist 9a246d6
- Add a memleak fix for the gzip backend from Federic Crozat
cvsdist 9a246d6
cvsdist 9a246d6
* Thu Feb 13 2003 Elliot Lee <sopwith@redhat.com> 2.1.3-7
cvsdist 9a246d6
- Run libtoolize/aclocal/autoconf so that libtool knows to generate shared libraries 
cvsdist 9a246d6
  on ppc64.
cvsdist 9a246d6
- Use _smp_mflags (for freetype 2.x only)
cvsdist 9a246d6
cvsdist 7ce9981
* Tue Feb  4 2003 Owen Taylor <otaylor@redhat.com>
cvsdist 7ce9981
- Switch to using %%configure (should fix #82330)
cvsdist 7ce9981
cvsdist 7ce9981
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist 7ce9981
- rebuilt
cvsdist 7ce9981
cvsdist 7ce9981
* Mon Jan  6 2003 Owen Taylor <otaylor@redhat.com> 2.1.3-4
cvsdist 7ce9981
- Make FreeType robust against corrupt fonts with recursive composite 
cvsdist 7ce9981
  glyphs (#74782, James Antill)
cvsdist 7ce9981
cvsdist 7ce9981
* Thu Jan  2 2003 Owen Taylor <otaylor@redhat.com> 2.1.3-3
cvsdist 7ce9981
- Add a patch to implement FT_LOAD_TARGET_LIGHT
cvsdist 7ce9981
- Fix up freetype-1.4-libtool.patch 
cvsdist 7ce9981
c66b299
* Thu Dec 12 2002 Mike A. Harris <mharris@redhat.com> 2.1.3-2
cvsdist 7ce9981
- Update to freetype 2.1.3
cvsdist 7ce9981
- Removed ttmkfdir sources and patches, as they have been moved from the
cvsdist 7ce9981
  freetype packaging to XFree86 packaging, and now to the ttmkfdir package
cvsdist 7ce9981
- Removed patches that are now included in 2.1.3:
cvsdist 7ce9981
  freetype-2.1.1-primaryhints.patch, freetype-2.1.2-slighthint.patch,
cvsdist 7ce9981
  freetype-2.1.2-bluefuzz.patch, freetype-2.1.2-stdw.patch,
cvsdist 7ce9981
  freetype-2.1.2-transform.patch, freetype-2.1.2-autohint.patch,
cvsdist 7ce9981
  freetype-2.1.2-leftright.patch
cvsdist 7ce9981
- Conditionalized inclusion of freetype 1.4 library.
cvsdist 7ce9981
cvsdist 7ce9981
* Wed Dec 04 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 7ce9981
- disable perl, it is not used at all
cvsdist 7ce9981
cvsdist 7ce9981
* Tue Dec 03 2002 Elliot Lee <sopwith@redhat.com> 2.1.2-11
cvsdist 7ce9981
- Instead of removing unpackaged file, include it in the package.
cvsdist 7ce9981
cvsdist 7ce9981
* Sat Nov 30 2002 Mike A. Harris <mharris@redhat.com> 2.1.2-10
cvsdist 7ce9981
- Attempted to fix lib64 issue in freetype-demos build with X11_LINKLIBS
cvsdist 7ce9981
- Cleaned up various _foodir macros throughtout specfile
cvsdist 7ce9981
- Removed with_ttmkfdir build option as it is way obsolete
cvsdist 7ce9981
cvsdist 7ce9981
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 2.1.2-8
cvsdist 7ce9981
- remove unpackaged files from the buildroot
cvsdist 7ce9981
cvsdist 57cd59d
* Wed Aug 28 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 57cd59d
- Fix a bug with PCF metrics
cvsdist 57cd59d
cvsdist 95de060
* Fri Aug  9 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 95de060
- Backport autohinter improvements from CVS
cvsdist 95de060
cvsdist 39cb7c0
* Tue Jul 23 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 39cb7c0
- Fix from CVS for transformations (#68964)
cvsdist 39cb7c0
cvsdist 39cb7c0
* Tue Jul  9 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 39cb7c0
- Add another bugfix for the postscript hinter
cvsdist 39cb7c0
cvsdist 39cb7c0
* Mon Jul  8 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 39cb7c0
- Add support for BlueFuzz private dict value, fixing rendering 
cvsdist 39cb7c0
  glitch for Luxi Mono.
cvsdist 39cb7c0
cvsdist 39cb7c0
* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 39cb7c0
- Add an experimental FT_Set_Hint_Flags() call
cvsdist 39cb7c0
cvsdist 39cb7c0
* Mon Jul  1 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 39cb7c0
- Update to 2.1.2
cvsdist 39cb7c0
- Add a patch fixing freetype PS hinter bug
cvsdist 39cb7c0
cvsdist 39cb7c0
* Fri Jun 21 2002 Mike A. Harris <mharris@redhat.com> 2.1.1-2
cvsdist 39cb7c0
- Added ft rpm build time conditionalizations upon user requests
cvsdist 39cb7c0
cvsdist 39cb7c0
* Tue Jun 11 2002 Owen Taylor <otaylor@redhat.com> 2.1.1-1
cvsdist 39cb7c0
- Version 2.1.1
cvsdist 39cb7c0
cvsdist 39cb7c0
* Mon Jun 10 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 39cb7c0
- Add a fix for PCF character maps
cvsdist 39cb7c0
cvsdist 39cb7c0
* Sun May 26 2002 Tim Powers <timp@redhat.com>
cvsdist 39cb7c0
- automated rebuild
cvsdist 39cb7c0
cvsdist 39cb7c0
* Fri May 17 2002 Mike A. Harris <mharris@redhat.com> 2.1.0-2
cvsdist 39cb7c0
- Updated freetype to version 2.1.0
cvsdist 39cb7c0
- Added libtool fix for freetype 1.4 (#64631)
cvsdist 39cb7c0
cvsdist ac8c664
* Wed Mar 27 2002 Nalin Dahyabhai <nalin@redhat.com> 2.0.9-2
cvsdist ac8c664
- use "libtool install" instead of "install" to install some binaries (#62005)
cvsdist ac8c664
cvsdist 34fa953
* Mon Mar 11 2002 Mike A. Harris <mharris@redhat.com> 2.0.9-1
cvsdist 34fa953
- Updated to freetype 2.0.9
cvsdist 34fa953
cvsdist 34fa953
* Sun Feb 24 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-4
cvsdist 34fa953
- Added proper docs+demos source for 2.0.8.
cvsdist 34fa953
cvsdist 34fa953
* Sat Feb 23 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-3
cvsdist 34fa953
- Added compat patch so 2.x works more like 1.x
cvsdist 34fa953
- Rebuilt with new build toolchain
cvsdist 34fa953
cvsdist 34fa953
* Fri Feb 22 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-2
cvsdist 34fa953
- Updated to freetype 2.0.8, however docs and demos are stuck at 2.0.7
cvsdist 34fa953
  on the freetype website.  Munged specfile to deal with the problem by using
cvsdist 34fa953
  {oldversion} instead of version where appropriate.  <sigh>
cvsdist 34fa953
cvsdist 34fa953
* Sat Feb  2 2002 Tim Powers <timp@redhat.com> 2.0.6-3
cvsdist 34fa953
- bumping release so that we don't collide with another build of
cvsdist 34fa953
  freetype, make sure to change the release requirement in the XFree86
cvsdist 34fa953
  package
cvsdist 34fa953
cvsdist 34fa953
* Fri Feb  1 2002 Mike A. Harris <mharris@redhat.com> 2.0.6-2
cvsdist 34fa953
- Made ttmkfdir inclusion conditional, and set up a define to include
cvsdist 34fa953
  ttmkfdir in RHL 7.x builds, since ttmkfdir is now moving to the new
cvsdist 34fa953
  XFree86-font-utils package.
cvsdist 34fa953
cvsdist 34fa953
* Wed Jan 16 2002 Mike A. Harris <mharris@redhat.com> 2.0.6-1
cvsdist 34fa953
- Updated freetype to version 2.0.6
cvsdist 34fa953
cvsdist 34fa953
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.0.5-4
cvsdist 34fa953
- automated rebuild
cvsdist 34fa953
cvsdist 34fa953
* Fri Nov 30 2001 Elliot Lee <sopwith@redhat.com> 2.0.5-3
cvsdist 34fa953
- Fix bug #56901 (ttmkfdir needed to list Unicode encoding when generating
cvsdist 34fa953
  font list). (ttmkfdir-iso10646.patch)
cvsdist 34fa953
- Use _smp_mflags macro everywhere relevant. (freetype-pre1.4-make.patch)
cvsdist 34fa953
- Undo fix for #24253, assume compiler was fixed.
cvsdist 34fa953
cvsdist 34fa953
* Mon Nov 12 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.5-2
cvsdist 34fa953
- Fix build with gcc 3.1 (#56079)
cvsdist 34fa953
cvsdist 34fa953
* Sun Nov 11 2001 Mike A. Harris <mharris@redhat.com> 2.0.5-1
cvsdist 34fa953
- Updated freetype to version 2.0.5
cvsdist 34fa953
cvsdist 34fa953
* Sat Sep 22 2001 Mike A. Harris <mharris@redhat.com> 2.0.4-2
cvsdist 34fa953
- Added new subpackage freetype-demos, added demos to build
cvsdist 34fa953
- Disabled ftdump, ftlint in utils package favoring the newer utils in
cvsdist 34fa953
  demos package.
cvsdist 34fa953
cvsdist 34fa953
* Tue Sep 11 2001 Mike A. Harris <mharris@redhat.com> 2.0.4-1
cvsdist 34fa953
- Updated source to 2.0.4
cvsdist 34fa953
- Added freetype demo's back into src.rpm, but not building yet.
cvsdist 8739755
cvsdist c39fbb7
* Wed Aug 15 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-7
cvsdist c39fbb7
- Changed package to use {findlang} macro to fix bug (#50676)
cvsdist c39fbb7
cvsdist 56921a0
* Sun Jul 15 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-6
cvsdist 56921a0
- Changed freetype-devel to group Development/Libraries (#47625)
cvsdist 56921a0
cvsdist 56921a0
* Mon Jul  9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.3-5
cvsdist 56921a0
- Fix up FT1 headers to please Qt 3.0.0 beta 2
cvsdist 56921a0
cvsdist 56921a0
* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.3-4
cvsdist 56921a0
- Add ft2build.h to -devel package, since it's included by all other
cvsdist 56921a0
  freetype headers, the package is useless without it
cvsdist 56921a0
cvsdist 56921a0
* Thu Jun 21 2001 Nalin Dahyabhai <nalin@redhat.com> 2.0.3-3
cvsdist 56921a0
- Change "Requires: freetype = name/ver" to "freetype = version/release",
cvsdist 56921a0
  and move the requirements to the subpackages.
cvsdist 56921a0
cvsdist 56921a0
* Mon Jun 18 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-2
cvsdist 56921a0
- Added "Requires: freetype = name/ver"
cvsdist 56921a0
cvsdist 56921a0
* Tue Jun 12 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-1
cvsdist 56921a0
- Updated to Freetype 2.0.3, minor specfile tweaks.
cvsdist 56921a0
- Freetype2 docs are is in a separate tarball now. Integrated it.
cvsdist 56921a0
- Built in new environment.
cvsdist 56921a0
cvsdist 026311b
* Fri Apr 27 2001 Bill Nottingham <notting@redhat.com>
cvsdist 026311b
- rebuild for C++ exception handling on ia64
cvsdist 026311b
cvsdist bfbd766
* Sat Jan 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist bfbd766
- Build ttmkfdir with -O0, workaround for Bug #24253
cvsdist bfbd766
cvsdist bfbd766
* Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
cvsdist bfbd766
- libtool is used to build libttf, so use libtool to link ttmkfdir with it
cvsdist bfbd766
- fixup a paths for a couple of missing docs
cvsdist bfbd766
cvsdist bfbd766
* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist bfbd766
- Update ttmkfdir
cvsdist bfbd766
cvsdist bfbd766
* Wed Dec 27 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist bfbd766
- Update to 2.0.1 and 1.4
cvsdist bfbd766
- Mark locale files as such
cvsdist bfbd766
cvsdist bfbd766
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist bfbd766
- automatic rebuild
cvsdist bfbd766
cvsdist bfbd766
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- move .la file to devel pkg
cvsdist bfbd766
- FHS paths
cvsdist bfbd766
cvsdist bfbd766
* Thu Feb 17 2000 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- revert spaces patch, fix up some foundry names to match X ones
cvsdist bfbd766
cvsdist bfbd766
* Mon Feb 07 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist bfbd766
- add defattr, ftmetric, ftsbit, ftstrtto per bug #9174
cvsdist bfbd766
cvsdist bfbd766
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
cvsdist bfbd766
- fix description and summary
cvsdist bfbd766
cvsdist bfbd766
* Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- make ttmkfdir replace spaces in family names with underscores (#7613)
cvsdist bfbd766
cvsdist 56921a0
* Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist bfbd766
- 1.3.1
cvsdist bfbd766
- handle RPM_OPT_FLAGS
cvsdist bfbd766
cvsdist bfbd766
* Wed Nov 10 1999 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- fix a path for ttmkfdir Makefile
cvsdist bfbd766
cvsdist bfbd766
* Thu Aug 19 1999 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- newer ttmkfdir that works better, moved ttmkfdir to /usr/bin from /usr/sbin
cvsdist bfbd766
- freetype utilities moved to subpkg, X dependency removed from main pkg
cvsdist bfbd766
- libttf.so symlink moved to devel pkg
cvsdist bfbd766
cvsdist bfbd766
* Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- strip binaries
cvsdist bfbd766
cvsdist bfbd766
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist bfbd766
- auto rebuild in the new build environment (release 5)
cvsdist bfbd766
cvsdist bfbd766
* Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
Behdad Esfahbod 9247a93
- fixed the doc file list
cvsdist bfbd766
cvsdist bfbd766
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- Injected new description and group.
cvsdist bfbd766
cvsdist bfbd766
* Mon Feb 15 1999 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- added ttmkfdir
cvsdist bfbd766
cvsdist bfbd766
* Tue Feb 02 1999 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- update to 1.2
cvsdist bfbd766
cvsdist bfbd766
* Thu Jan 07 1999 Cristian Gafton <gafton@redhat.com>
cvsdist bfbd766
- call libtoolize to sanitize config.sub and get ARM support
cvsdist bfbd766
- dispoze of the patch (not necessary anymore)
cvsdist bfbd766
cvsdist bfbd766
* Wed Oct 21 1998 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- post/postun sections for ldconfig action.
cvsdist bfbd766
cvsdist bfbd766
* Tue Oct 20 1998 Preston Brown <pbrown@redhat.com>
cvsdist bfbd766
- initial RPM, includes normal and development packages.