Blame SPECS/fontconfig.spec

c5b8fc
%global freetype_version 2.1.4
c5b8fc
c5b8fc
Summary:	Font configuration and customization library
c5b8fc
Name:		fontconfig
c5b8fc
Version:	2.10.95
700723
Release:	11%{?dist}
c5b8fc
# src/ftglue.[ch] is in Public Domain
c5b8fc
# src/fccache.c contains Public Domain code
c5b8fc
# fc-case/CaseFolding.txt is in the UCD
c5b8fc
# otherwise MIT
c5b8fc
License:	MIT and Public Domain and UCD
c5b8fc
Group:		System Environment/Libraries
c5b8fc
Source:		http://fontconfig.org/release/%{name}-%{version}.tar.bz2
c5b8fc
URL:		http://fontconfig.org
c5b8fc
Source1:	25-no-bitmap-fedora.conf
c5b8fc
Source2:	FcStrListFirst.3
c5b8fc
c5b8fc
# https://bugzilla.redhat.com/show_bug.cgi?id=140335
c5b8fc
Patch0:		fontconfig-2.8.0-sleep-less.patch
c5b8fc
Patch1:		fontconfig-no-dir-when-no-conf.patch
c5b8fc
Patch2:		fontconfig-fix-memleak.patch
c5b8fc
Patch3:		fontconfig-copy-all-value.patch
c5b8fc
Patch4:		fontconfig-fix-crash-on-fcfontsort.patch
c5b8fc
Patch5:		fontconfig-fix-race-condition.patch
982ad7
Patch6:		fontconfig-update-45-latin.patch
982ad7
Patch7:		fontconfig-validate-offset-in-cache.patch
982ad7
Patch8:		fontconfig-offset-in-elts.patch
c5b8fc
c5b8fc
BuildRequires:	expat-devel
c5b8fc
BuildRequires:	freetype-devel >= %{freetype_version}
c5b8fc
BuildRequires:	fontpackages-devel
c5b8fc
c5b8fc
Requires:	fontpackages-filesystem
c5b8fc
Requires(pre):	freetype
c5b8fc
Requires(post):	grep coreutils
700723
Requires:	font(:lang=en)
c5b8fc
c5b8fc
%description
c5b8fc
Fontconfig is designed to locate fonts within the
c5b8fc
system and select them according to requirements specified by 
c5b8fc
applications.
c5b8fc
c5b8fc
%package	devel
c5b8fc
Summary:	Font configuration and customization library
c5b8fc
Group:		Development/Libraries
c5b8fc
Requires:	%{name}%{?_isa} = %{version}-%{release}
c5b8fc
Requires:	freetype-devel >= %{freetype_version}
c5b8fc
Requires:	pkgconfig
c5b8fc
c5b8fc
%description	devel
c5b8fc
The fontconfig-devel package includes the header files,
c5b8fc
and developer docs for the fontconfig package.
c5b8fc
c5b8fc
Install fontconfig-devel if you want to develop programs which 
c5b8fc
will use fontconfig.
c5b8fc
c5b8fc
%package	devel-doc
c5b8fc
Summary:	Development Documentation files for fontconfig library
c5b8fc
Group:		Documentation
c5b8fc
BuildArch:	noarch
c5b8fc
Requires:	%{name}-devel = %{version}-%{release}
c5b8fc
c5b8fc
%description	devel-doc
c5b8fc
The fontconfig-devel-doc package contains the documentation files
c5b8fc
which is useful for developing applications that uses fontconfig.
c5b8fc
c5b8fc
%prep
c5b8fc
%setup -q
c5b8fc
%patch0 -p1 -b .sleep-less
c5b8fc
%patch1 -p1 -b .nodir
c5b8fc
%patch2 -p1 -b .memleak
c5b8fc
%patch3 -p1 -b .copy-all
c5b8fc
%patch4 -p1 -b .fix-crash
c5b8fc
%patch5 -p1 -b .fix-race
982ad7
%patch6 -p1 -b .update-45-latin
982ad7
%patch7 -p1 -b .validate-offset
982ad7
%patch8 -p1 -b .offset-elts
c5b8fc
cp %{SOURCE2} doc/
c5b8fc
c5b8fc
%build
c5b8fc
# We don't want to rebuild the docs, but we want to install the included ones.
c5b8fc
export HASDOCBOOK=no
c5b8fc
c5b8fc
%configure	--with-add-fonts=/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/TTF,/usr/local/share/fonts \
c5b8fc
		--disable-static
c5b8fc
c5b8fc
make %{?_smp_mflags} V=1
c5b8fc
c5b8fc
%install
c5b8fc
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" V=1
c5b8fc
c5b8fc
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
c5b8fc
c5b8fc
install -p -m 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d
c5b8fc
ln -s %{_fontconfig_templatedir}/25-unhint-nonlatin.conf $RPM_BUILD_ROOT%{_fontconfig_confdir}/
c5b8fc
c5b8fc
# move installed doc files back to build directory to package themm
c5b8fc
# in the right place
c5b8fc
mv $RPM_BUILD_ROOT%{_docdir}/fontconfig/* .
c5b8fc
rmdir $RPM_BUILD_ROOT%{_docdir}/fontconfig/
c5b8fc
c5b8fc
%check
c5b8fc
make check V=1
c5b8fc
c5b8fc
%post
c5b8fc
/sbin/ldconfig
c5b8fc
c5b8fc
umask 0022
c5b8fc
c5b8fc
mkdir -p %{_localstatedir}/cache/fontconfig
c5b8fc
c5b8fc
# Force regeneration of all fontconfig cache files
c5b8fc
# The check for existance is needed on dual-arch installs (the second
c5b8fc
#  copy of fontconfig might install the binary instead of the first)
c5b8fc
# The HOME setting is to avoid problems if HOME hasn't been reset
c5b8fc
if [ -x /usr/bin/fc-cache ] && /usr/bin/fc-cache --version 2>&1 | grep -q %{version} ; then
c5b8fc
  HOME=/root /usr/bin/fc-cache -f
c5b8fc
fi
c5b8fc
c5b8fc
%postun -p /sbin/ldconfig
c5b8fc
c5b8fc
%files
c5b8fc
%doc README AUTHORS COPYING
c5b8fc
%doc fontconfig-user.txt fontconfig-user.html
c5b8fc
%doc %{_fontconfig_confdir}/README
c5b8fc
%{_libdir}/libfontconfig.so.*
c5b8fc
%{_bindir}/fc-cache
c5b8fc
%{_bindir}/fc-cat
c5b8fc
%{_bindir}/fc-list
c5b8fc
%{_bindir}/fc-match
c5b8fc
%{_bindir}/fc-pattern
c5b8fc
%{_bindir}/fc-query
c5b8fc
%{_bindir}/fc-scan
c5b8fc
%{_bindir}/fc-validate
c5b8fc
%{_fontconfig_templatedir}/*.conf
c5b8fc
%{_datadir}/xml/fontconfig
c5b8fc
# fonts.conf is not supposed to be modified.
c5b8fc
# If you want to do so, you should use local.conf instead.
c5b8fc
%config %{_fontconfig_masterdir}/fonts.conf
c5b8fc
%config(noreplace) %{_fontconfig_confdir}/*.conf
c5b8fc
%dir %{_localstatedir}/cache/fontconfig
c5b8fc
%{_mandir}/man1/*
c5b8fc
%{_mandir}/man5/*
c5b8fc
c5b8fc
%files devel
c5b8fc
%{_libdir}/libfontconfig.so
c5b8fc
%{_libdir}/pkgconfig/*
c5b8fc
%{_includedir}/fontconfig
c5b8fc
%{_mandir}/man3/*
c5b8fc
c5b8fc
%files devel-doc
c5b8fc
%doc fontconfig-devel.txt fontconfig-devel
c5b8fc
c5b8fc
%changelog
700723
* Fri Feb 24 2017 Akira TAGOH <tagoh@redhat.com> - 2.10.95-11
700723
- Add Requires: font(:lang=en) (#1403957)
700723
982ad7
* Fri Sep 23 2016 Akira TAGOH <tagoh@redhat.com> - 2.10.95-10
982ad7
- Fix a regression in the previous change. (#1355930)
982ad7
982ad7
* Fri Aug  5 2016 Akira TAGOH <tagoh@redhat.com> - 2.10.95-9
982ad7
- CVE-2016-5384: Validate offsets in cache files properly. (#1355930)
982ad7
982ad7
* Fri Jun 10 2016 Akira TAGOH <tagoh@redhat.com> - 2.10.95-8
982ad7
- Update 45-latin.conf to add some hints to fall back for Windows fonts (#1073460)
982ad7
c1a03f
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.10.95-7
c1a03f
- Mass rebuild 2014-01-24
c1a03f
c1a03f
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.10.95-6
c1a03f
- Mass rebuild 2013-12-27
c1a03f
c5b8fc
* Tue Oct  8 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-5
c5b8fc
- Fix the race condition issue on updating cache (#1011510)
c5b8fc
- Fix crash issue in FcFontSort()
c5b8fc
- Fix an issue not copying all values from the font.
c5b8fc
c5b8fc
* Fri Sep 13 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-4
c5b8fc
- Fix memory leaks in FcFreeTypeQueryFace().
c5b8fc
c5b8fc
* Mon Sep  2 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-3
c5b8fc
- Do not create a directory for migration when no old config file and directory.
c5b8fc
  (#1003495)
c5b8fc
c5b8fc
* Sat Aug 31 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.95-1
c5b8fc
- Fix a crash issue (#1003069)
c5b8fc
c5b8fc
* Fri Aug 30 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.94-1
c5b8fc
- New upstream release.
c5b8fc
- migrate the configuration for XDG Base Directory spec automatically (#882267)
c5b8fc
c5b8fc
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.93-2
c5b8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c5b8fc
c5b8fc
* Mon May 20 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.93-1
c5b8fc
- New upstream release.
c5b8fc
c5b8fc
* Thu Apr 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-3
c5b8fc
- Fix a web font issue in firefox. (#946859)
c5b8fc
c5b8fc
* Mon Apr  1 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-2
c5b8fc
- Fix font matching issue. (#929372)
c5b8fc
c5b8fc
* Fri Mar 29 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.92-1
c5b8fc
- New upstream release.
c5b8fc
c5b8fc
* Tue Feb 12 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-3
c5b8fc
- Improve the spec to meet the latest packaging guidelines (#225759)
c5b8fc
  - add -devel-doc subpackage.
c5b8fc
- Fix a build issue with automake 1.13
c5b8fc
c5b8fc
* Fri Feb  8 2013 Ville Skyttä <ville.skytta@iki.fi> - 2.10.91-2
c5b8fc
- Own the %%{_datadir}/xml/fontconfig dir.
c5b8fc
- Fix bogus dates in %%changelog.
c5b8fc
c5b8fc
* Fri Jan 11 2013 Akira TAGOH <tagoh@redhat.com> - 2.10.91-1
c5b8fc
- New upstream release (#894109)
c5b8fc
  - threadsafe
c5b8fc
  - new tool to validate the glyph coverage
c5b8fc
  - add new rule to scale the bitmap font.
c5b8fc
c5b8fc
* Mon Nov 26 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.2-1
c5b8fc
- New upstream release.
c5b8fc
  - Fix an regression on FcFontMatch with namelang. (#876970)
c5b8fc
c5b8fc
* Thu Oct 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-2
c5b8fc
- Update License field (#869614)
c5b8fc
c5b8fc
* Fri Jul 27 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.1-1
c5b8fc
- New upstream release.
c5b8fc
c5b8fc
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.0-2
c5b8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c5b8fc
c5b8fc
* Tue Jul 17 2012 Akira TAGOH <tagoh@redhat.com> - 2.10.0-1
c5b8fc
- New upstream release.
c5b8fc
c5b8fc
* Mon Jun 25 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.92-1
c5b8fc
- New upstream release.
c5b8fc
c5b8fc
* Mon Jun 11 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.91-1
c5b8fc
- New upstream release.
c5b8fc
  - docs are generated with the fixed docbook (#826145)
c5b8fc
  - handle whitespace in family name correctly (#468565, #591634)
c5b8fc
  - Updated ne.orth. (#586763)
c5b8fc
c5b8fc
* Wed May 16 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-2
c5b8fc
- Add grep and coreutils to Requires(post). (#821957)
c5b8fc
c5b8fc
* Fri Mar 23 2012 Akira TAGOH <tagoh@redhat.com>
c5b8fc
- backport patch to make 'result' from FcFontMatch() and FcFontSort()
c5b8fc
  more reliable.
c5b8fc
c5b8fc
* Wed Mar 21 2012 Akira TAGOH <tagoh@redhat.com> - 2.9.0-1
c5b8fc
- New upstream release (#803559)
c5b8fc
  - Update ks.orth (#790471)
c5b8fc
  - Add brx.orth (#790460)
c5b8fc
  - Update ur.orth (#757985)
c5b8fc
  - No Apple Roman cmap support anymore. should works. (#681808)
c5b8fc
  - Update ne.orth (#586763)
c5b8fc
  - Add a workaround for ZapfDingbats. (#562952, #497648, #468565)
c5b8fc
- clean up the spec file.
c5b8fc
- Add BR: fontpackages-devel.
c5b8fc
- Add R: fontpackages-filesystem.
c5b8fc
c5b8fc
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-5
c5b8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c5b8fc
c5b8fc
* Tue May 31 2011 Adam Jackson <ajax@redhat.com> 2.8.0-4
c5b8fc
- fontconfig-2.8.0-dingbats.patch: Hack for dingbats font matching. (#468565)
c5b8fc
c5b8fc
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-3
c5b8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c5b8fc
c5b8fc
* Thu Jun 24 2010 Adam Jackson <ajax@redhat.com> 2.8.0-2
c5b8fc
- fontconfig-2.8.0-sleep-less.patch: Make a stupid sleep() in fc-cache
c5b8fc
  slightly less stupid.
c5b8fc
c5b8fc
* Thu Dec  3 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.8.0-1
c5b8fc
- Update to 2.8.0
c5b8fc
c5b8fc
* Tue Sep  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.3-1
c5b8fc
- Update to 2.7.3
c5b8fc
c5b8fc
* Mon Aug 31 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.2-1
c5b8fc
- Update to 2.7.2
c5b8fc
c5b8fc
* Mon Jul  27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.1-1
c5b8fc
- Update to 2.7.1
c5b8fc
c5b8fc
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-2
c5b8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c5b8fc
c5b8fc
* Wed Jun 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.7.0
c5b8fc
- Update to 2.7.0
c5b8fc
c5b8fc
* Mon Jun  1 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090601-1
c5b8fc
- Update to 2.6.99.behdad.20090601
c5b8fc
c5b8fc
* Fri May  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090508-1
c5b8fc
- Update to 2.6.99.behdad.20090508
c5b8fc
- Resolves #497984
c5b8fc
c5b8fc
* Wed Mar 18 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090318-1
c5b8fc
- Update to 2.6.99.behdad.20090318
c5b8fc
- Resolves #490888
c5b8fc
c5b8fc
* Tue Mar 17 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad.20090317-1
c5b8fc
- Update to 2.6.99.behdad.20090317
c5b8fc
- Resolves #485685
c5b8fc
c5b8fc
* Sat Mar 14 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-3
c5b8fc
- New tarball with version fixed in the header
c5b8fc
c5b8fc
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-2
c5b8fc
- Previous tarball was broken.  Rebuild with respinned ball.
c5b8fc
c5b8fc
* Fri Mar 13 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.99.behdad-1
c5b8fc
- Update to 2.6.99.behdad
c5b8fc
c5b8fc
* Tue Mar 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.98-1.gb39c36a
c5b8fc
- Update to 2.6.98-1.gb39c36a
c5b8fc
c5b8fc
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.97-5.g945d6a4
c5b8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c5b8fc
c5b8fc
* Mon Feb 23 2009 Nicolas Mailhot <nim at fedoraproject dot org>
c5b8fc
- 2.6.97-4.g945d6a4
c5b8fc
— global-ization
c5b8fc
c5b8fc
* Mon Feb 16 2009 Richard Hughes <rhughes@redhat.com> - 2.6.97-3.g945d6a4
c5b8fc
- Correct the rpm provide name to be font(), not Font().
c5b8fc
c5b8fc
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-2.g945d6a4
c5b8fc
- Another try.
c5b8fc
c5b8fc
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.97-1.g945d6a4
c5b8fc
- Update to 2.6.97-1.g945d6a4
c5b8fc
c5b8fc
* Sun Feb 15 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.96-1.g0b290a6
c5b8fc
- Update to 2.6.96-1.g0b290a6
c5b8fc
c5b8fc
* Tue Jan 27 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.95-1.git.66.gb162bfb
c5b8fc
- Update to 2.6.95-1.git.66.gb162bfb
c5b8fc
c5b8fc
* Fri Jan 23 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.94-1.git.65.g628ee83
c5b8fc
- Update to 2.6.94-1.git.65.g628ee83
c5b8fc
c5b8fc
* Wed Jan 21 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.93-1.git.64.g6aa4dce
c5b8fc
- Update to 2.6.93-1.git.64.g6aa4dce
c5b8fc
c5b8fc
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.92-1.git.64.g167bb82
c5b8fc
- Update to 2.6.92-1.git.64.g167bb82
c5b8fc
c5b8fc
* Mon Jan 19 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.91-1.git.64.g9feaf34
c5b8fc
- Update to 2.6.91-1.git.64.g9feaf34
c5b8fc
c5b8fc
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-3.git.63.g6bb4b9a
c5b8fc
- Install fc-scan and fc-query
c5b8fc
c5b8fc
* Fri Jan 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.90-2.git.63.g6bb4b9a
c5b8fc
- Update to 2.6.90-1.git.63.g6bb4b9a
c5b8fc
- Remove upstreamed patch
c5b8fc
c5b8fc
* Mon Oct 20 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-3
c5b8fc
- Add fontconfig-2.6.0-indic.patch
c5b8fc
- Resolves: #464470
c5b8fc
c5b8fc
* Sun Jun 01 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-2
c5b8fc
- Fix build.
c5b8fc
c5b8fc
* Sat May 31 2008 Behdad Esfahbod <besfahbo@redhat.com> - 2.6.0-1
c5b8fc
- Update to 2.6.0.
c5b8fc
c5b8fc
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.5.0-2
c5b8fc
- Autorebuild for GCC 4.3
c5b8fc
c5b8fc
* Wed Nov 14 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.5.0-1
c5b8fc
- Update to 2.5.0.
c5b8fc
c5b8fc
* Tue Nov 06 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.92-1
c5b8fc
- Update to 2.4.92.
c5b8fc
- Mark /etc/fonts/conf.d/* as config(noreplace).
c5b8fc
- Remove most of our conf file, all upstreamed except for
c5b8fc
  75-blacklist-fedora.conf that I'm happily dropping.  Who has
c5b8fc
  Hershey fonts these days...
c5b8fc
- ln upstream'ed 25-unhint-nonlatin.conf from conf.avail in conf.d
c5b8fc
- Add 25-no-bitmap-fedora.conf which is the tiny remaining bit
c5b8fc
  of conf that didn't end up upstream.  Can get rid of it in the
c5b8fc
  future, but not just yet.
c5b8fc
c5b8fc
* Thu Oct 25 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.91-1
c5b8fc
- Update to 2.4.91.
c5b8fc
- Add /usr/local/share/fonts to default config. (#147004)
c5b8fc
- Don't rebuild docs, to fix multilib conflicts. (#313011)
c5b8fc
- Remove docbook and elinks BuildRequires and stuff as we don't
c5b8fc
  rebuild docs.
c5b8fc
c5b8fc
* Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 2.4.2-5
c5b8fc
- Rebuild for PPC toolchain bug
c5b8fc
- Add BuildRequires: gawk
c5b8fc
c5b8fc
* Sun Jun 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-4
c5b8fc
- /etc/fonts/conf.d is now owned by filesystem
c5b8fc
c5b8fc
* Fri May 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.4.2-3
c5b8fc
- Add Liberation fonts to 30-aliases-fedora.conf
c5b8fc
c5b8fc
* Fri Jan 12 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.2-2
c5b8fc
- Change /usr/share/X11/fonts/OTF to /usr/share/X11/fonts/TTF
c5b8fc
- Resolves: #220809
c5b8fc
c5b8fc
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.2-1
c5b8fc
- Update to 2.4.2
c5b8fc
c5b8fc
* Wed Oct  4 2006 Matthias Clasen <mclasen@redhat.com> - 2.4.1-4
c5b8fc
- Fix a multilib upgrade problem (#208151)
c5b8fc
c5b8fc
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.4.1-3
c5b8fc
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
c5b8fc
c5b8fc
* Fri Sep 22 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-2
c5b8fc
- Update 30-aliases-fedora.conf to correctly alias MS and StarOffice
c5b8fc
  fonts. (#207460)
c5b8fc
c5b8fc
* Fri Sep 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.1-1
c5b8fc
- Update to 2.4.1, a public API was dropped from 2.4.0
c5b8fc
- Remove upstreamed patch
c5b8fc
c5b8fc
* Mon Sep 11 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.4.0-1
c5b8fc
- Update to 2.4.0
c5b8fc
- Rename/order our configuration stuff to match the new scheme.
c5b8fc
  Breaks expected :-(
c5b8fc
c5b8fc
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-3
c5b8fc
- Add missing file.  Previous update didn't go through
c5b8fc
c5b8fc
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-2
c5b8fc
- Add fontconfig-2.3.97-ppc64.patch, for ppc64 arch signature
c5b8fc
c5b8fc
* Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.97-1
c5b8fc
- update to 2.3.97
c5b8fc
- Drop upstreamed patches
c5b8fc
- Regenerate defaultconfig patch
c5b8fc
- Don't touch stamp as it was not ever needed
c5b8fc
c5b8fc
* Thu Aug 17 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-11
c5b8fc
- inclusion of zhong yi font and rearranged font prefer list. (bug# 201300)
c5b8fc
c5b8fc
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-10
c5b8fc
- use "%%5x" instead of " %%4x" to support 64k instead of
c5b8fc
  clamping.  Idea from Behdad.
c5b8fc
c5b8fc
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-9
c5b8fc
- tweak last patch to give a more reasonable page size
c5b8fc
  value if 64k page size is in effect.
c5b8fc
c5b8fc
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-8
c5b8fc
- maybe fix buffer overflow (bug 202152).
c5b8fc
c5b8fc
* Fri Aug 11 2006 Ray Strode <rstrode@redhat.com> - 2.3.95-7
c5b8fc
- Update configs to provide better openoffice/staroffice
c5b8fc
  compatibility (bug 200723)
c5b8fc
c5b8fc
* Thu Jul 27 2006 Behdad Esfahbod <besfahbo@redhat.com> - 2.3.95-6
c5b8fc
- Do umask 0022 in post
c5b8fc
- Update configs to reflect addition of new Indic fonts (#200381, #200397)
c5b8fc
c5b8fc
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-5
c5b8fc
- Plug a small memory leak
c5b8fc
c5b8fc
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1.1
c5b8fc
- rebuild
c5b8fc
c5b8fc
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.3.95-4.1
c5b8fc
- rebuild
c5b8fc
c5b8fc
* Fri Jun  2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-4
c5b8fc
- Fix the handling of TTF font collections
c5b8fc
c5b8fc
* Thu May 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-3
c5b8fc
- Apply a patch by David Turner to speed up cache generation
c5b8fc
c5b8fc
* Wed Apr 26 2006 Bill Nottingham <notting@redhat.com> - 2.3.95-2
c5b8fc
- fix fonts.conf typo
c5b8fc
c5b8fc
* Wed Apr 26 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.95-1
c5b8fc
- Update to 2.3.95
c5b8fc
c5b8fc
* Fri Feb 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.94-1
c5b8fc
- Update to 2.3.94
c5b8fc
c5b8fc
* Sat Feb 11 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060211-1
c5b8fc
- Newer cvs snapshot
c5b8fc
c5b8fc
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060208-1.1
c5b8fc
- bump again for double-long bug on ppc(64)
c5b8fc
c5b8fc
* Wed Feb  8 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060208-1
c5b8fc
- Newer cvs snapshot
c5b8fc
c5b8fc
* Tue Feb  7 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060207-1
c5b8fc
- Newer cvs snapshot
c5b8fc
- Drop upstreamed patches, pick up some new ones
c5b8fc
c5b8fc
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.3.93.cvs20060131-3.1
c5b8fc
- rebuilt for new gcc4.1 snapshot and glibc changes
c5b8fc
c5b8fc
* Thu Feb  2 2006 Ray Strode <rstrode@redhat.com> - 2.3.93.cvs20060131-3
c5b8fc
- Move user cache to a subdirectory (bug 160275)
c5b8fc
c5b8fc
* Thu Feb  2 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-2
c5b8fc
- Accumulated patches
c5b8fc
c5b8fc
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060131-1
c5b8fc
- Newer cvs snapshot
c5b8fc
c5b8fc
* Tue Jan 24 2006 Matthias Clasen <mclasen@redhat.com> - 2.3.93.cvs20060124-1
c5b8fc
- Newer cvs snapshot
c5b8fc
c5b8fc
* Tue Jan 17 2006 Ray Strode <rstrode@redhat.com> - 2.3.93-4
c5b8fc
- apply patch from Tim Mayberry to correct aliasing and disable
c5b8fc
  hinting for the two Chinese font names AR PL ShanHeiSun Uni 
c5b8fc
  and AR PL Zenkai Uni
c5b8fc
c5b8fc
* Tue Jan 10 2006 Bill Nottingham <notting@redhat.com> - 2.3.93-3
c5b8fc
- prereq coreutils for mkdir/touch in %%post
c5b8fc
c5b8fc
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-2
c5b8fc
- Fix to create /var/cache/fontconfig/stamp in the post install stage.
c5b8fc
c5b8fc
* Wed Dec 21 2005 Carl Worth <cworth@redhat.com> - 2.3.93-1
c5b8fc
- New upstream version.
c5b8fc
c5b8fc
* Tue Dec 13 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-3
c5b8fc
- Disable hinting for Lohit Gujarati
c5b8fc
c5b8fc
* Fri Dec  9 2005 Carl Worth <cworth@redhat.com> - 2.3.92.cvs20051129-2
c5b8fc
- Add two new Chinese font names to the default fonts.conf file:
c5b8fc
    AR PL ShanHeiSun Uni
c5b8fc
    AR PL Zenkai Uni
c5b8fc
c5b8fc
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
c5b8fc
- rebuilt
c5b8fc
c5b8fc
* Tue Nov 29 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051129-1
c5b8fc
- Update to a newer cvs snapshot
c5b8fc
c5b8fc
* Sat Nov 19 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92.cvs20051119-1
c5b8fc
- Update to a newer cvs snapshot
c5b8fc
c5b8fc
* Wed Nov 16 2005 Bill Nottingham <notting@redhat.com> - 2.3.93-3
c5b8fc
- modular X moved fonts from /usr/X11R6/lib/X11/fonts to
c5b8fc
  /usr/share/X11/fonts, adjust %%configure accordingly and 
c5b8fc
  conflict with older font packages
c5b8fc
c5b8fc
* Wed Nov  9 2005 Carl Worth <cworth@redhat.com> - 2.3.92-2
c5b8fc
- Remove inadvertent rejection of Luxi Mono from 40-blacklist-fonts.conf.
c5b8fc
  Fixes #172437
c5b8fc
c5b8fc
* Fri Nov  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.92-1
c5b8fc
- Update to 2.3.92
c5b8fc
c5b8fc
* Mon Oct 31 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051031-1
c5b8fc
- Update to a newer cvs snapshot
c5b8fc
- Add a patch which should help to understand broken cache problems
c5b8fc
c5b8fc
* Fri Oct 21 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-2
c5b8fc
- Add new Chinese fonts
c5b8fc
- Fix the 40-blacklist-fonts.conf file to use the documented
c5b8fc
  fonts.conf syntax, and exclude the Hershey fonts by family
c5b8fc
  name.
c5b8fc
c5b8fc
* Fri Oct 14 2005 Matthias Clasen <mclasen@redhat.com> - 2.3.91.cvs20051017-1
c5b8fc
- Update to the mmap branch of fontconfig
c5b8fc
c5b8fc
* Fri Jul 22 2005 Kristian Høgsberg <krh@redhat.com> - 2.3.2-1
c5b8fc
- Update to fontconfig-2.3.2.  Drop
c5b8fc
c5b8fc
	fontconfig-2.1-slighthint.patch,
c5b8fc
	fontconfig-2.2.3-timestamp.patch,
c5b8fc
	fontconfig-2.2.3-names.patch,
c5b8fc
	fontconfig-2.2.3-ta-pa-orth.patch, and
c5b8fc
	fontconfig-2.2.3-timestamp.patch,
c5b8fc
c5b8fc
  as they are now merged upstream.
c5b8fc
c5b8fc
- Fold fontconfig-2.2.3-add-sazanami.patch into
c5b8fc
  fontconfig-2.3.2-defaultconfig.patch and split rules to disable CJK
c5b8fc
  hinting out into /etc/fonts/conf.d/50-no-hint-fonts.conf.
c5b8fc
c5b8fc
- Drop fontconfig-0.0.1.020826.1330-blacklist.patch and use the new
c5b8fc
  rejectfont directive to reject those fonts in 40-blacklist-fonts.conf.
c5b8fc
c5b8fc
- Add fontconfig-2.3.2-only-parse-conf-files.patch to avoid parsing
c5b8fc
  .rpmsave files.
c5b8fc
c5b8fc
- Renable s390 documentation now that #97079 has been fixed and add
c5b8fc
  BuildRequires: for docbook-utils and docbook-utils-pdf.
c5b8fc
c5b8fc
- Drop code to iconv and custom install man pages, upstream does the
c5b8fc
  right thing now.
c5b8fc
c5b8fc
- Add workaround from hell to make elinks cooperate so we can build
c5b8fc
  txt documentation.
c5b8fc
c5b8fc
* Tue Apr 19 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-13
c5b8fc
- Add another font family name Sazanami Gothic/Mincho (#148748)
c5b8fc
c5b8fc
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-12
c5b8fc
- Rebuild
c5b8fc
c5b8fc
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-11
c5b8fc
- Rebuild
c5b8fc
c5b8fc
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-10
c5b8fc
- Rebuild
c5b8fc
c5b8fc
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-9
c5b8fc
- Disable docs for s390 for now
c5b8fc
c5b8fc
* Fri Mar  4 2005 David Zeuthen <davidz@redhat.com> - 2.2.3-8
c5b8fc
- Rebuild
c5b8fc
c5b8fc
* Wed Dec  1 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-6
c5b8fc
- Sleep a second before the exit of fc-cache to fix problems with fast 
c5b8fc
  serial installs of fonts (#140335)
c5b8fc
- Turn off hinting for Lohit Hindi/Bengali/Punjabi (#139816)
c5b8fc
c5b8fc
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-5
c5b8fc
- Add Lohit fonts for Indic languages (#134492)
c5b8fc
- Add Punjabi converage, fix Tamil coverage
c5b8fc
c5b8fc
* Wed Sep 22 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-4
c5b8fc
- Update fonts-hebrew names to include CLM suffix
c5b8fc
c5b8fc
* Thu Sep  2 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-3
c5b8fc
- Backport code from head branch of fontconfig CVS to parse names 
c5b8fc
  for postscript fonts (fixes #127500, J. J. Ramsey)
c5b8fc
- Own /usr/share/fonts (#110956, David K. Levine)
c5b8fc
- Add KacstQura to serif/sans-serif/monospace aliases (#101182)
c5b8fc
c5b8fc
* Mon Aug 16 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-2
c5b8fc
- Don't run fc-cache if the binary isn't there (#128072, tracked
c5b8fc
  down by Jay Turner)
c5b8fc
c5b8fc
* Tue Aug  3 2004 Owen Taylor <otaylor@redhat.com> - 2.2.3-1
c5b8fc
- Upgrade to 2.2.3
c5b8fc
- Convert man pages to UTF-8 (#108730, Peter van Egdom)
c5b8fc
- Renable docs on s390
c5b8fc
c5b8fc
* Mon Jul 26 2004 Owen Taylor <otaylor@redhat.com> - 2.2.1-12
c5b8fc
- Rebuild for RHEL
c5b8fc
- Back freetype required version down to 2.1.4
c5b8fc
c5b8fc
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
c5b8fc
- rebuilt
c5b8fc
c5b8fc
* Mon Apr 19 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-10
c5b8fc
- Require recent freetype (#109592, Peter Oliver)
c5b8fc
- Remove fonts.conf timestamp to fix multiarch conflict (#118182)
c5b8fc
- Disable hinting for Mukti Narrow (#120915, Sayamindu Dasgupta)
c5b8fc
c5b8fc
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.1
c5b8fc
- Rebuild
c5b8fc
c5b8fc
* Wed Mar 10 2004 Owen Taylor <otaylor@redhat.com> 2.2.1-8.0
c5b8fc
- Add Albany/Cumberland/Thorndale as fallbacks for Microsoft core fonts and 
c5b8fc
  as non-preferred alternatives for Sans/Serif/Monospace
c5b8fc
- Fix FreeType includes for recent FreeType
c5b8fc
c5b8fc
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
c5b8fc
- rebuilt
c5b8fc
c5b8fc
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
c5b8fc
- rebuilt
c5b8fc
c5b8fc
* Mon Sep 22 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-6.0
c5b8fc
- Should have been passing --with-add-fonts, not --with-add-dirs to 
c5b8fc
  configure ... caused wrong version of Luxi to be used. (#100862)
c5b8fc
c5b8fc
* Fri Sep 19 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-5.0
c5b8fc
- Tweak fonts.conf to get right hinting for CJK fonts (#97337)
c5b8fc
c5b8fc
* Tue Jun 17 2003 Bill Nottingham <notting@redhat.com> 2.2.1-3
c5b8fc
- handle null config->cache correctly
c5b8fc
c5b8fc
* Thu Jun 12 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
c5b8fc
- Update default config to include Hebrew fonts (#90501, Dov Grobgeld)
c5b8fc
c5b8fc
* Tue Jun 10 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-2
c5b8fc
- As a workaround disable doc builds on s390
c5b8fc
c5b8fc
* Mon Jun  9 2003 Owen Taylor <otaylor@redhat.com> 2.2.1-1
c5b8fc
- Version 2.2.1
c5b8fc
c5b8fc
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
c5b8fc
- rebuilt
c5b8fc
c5b8fc
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
c5b8fc
- debuginfo rebuild
c5b8fc
c5b8fc
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com> 2.1-8
c5b8fc
- Fix segfault in fc-cache from .dircache patch
c5b8fc
c5b8fc
* Mon Feb 24 2003 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Back out patch that wrote fonts.conf entries that crash RH-8.0 
c5b8fc
  gnome-terminal, go with patch from fontconfig CVS instead.
c5b8fc
  (#84863)
c5b8fc
c5b8fc
* Tue Feb 11 2003 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Move fontconfig man page to main package, since it contains non-devel 
c5b8fc
  information (#76189)
c5b8fc
- Look in the OTF subdirectory of /usr/X11R6/lib/fonts as well
c5b8fc
  so we find Syriac fonts (#82627)
c5b8fc
c5b8fc
* Thu Feb  6 2003 Matt Wilson <msw@redhat.com> 2.1-5
c5b8fc
- modified fontconfig-0.0.1.020626.1517-fontdir.patch to hard code
c5b8fc
  /usr/X11R6/lib/X11/fonts instead of using $(X_FONT_DIR).  This is
c5b8fc
  because on lib64 machines, fonts are not in /usr/X11R6/lib64/....
c5b8fc
c5b8fc
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
c5b8fc
- rebuilt
c5b8fc
c5b8fc
* Wed Jan 15 2003 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Try a different tack when fixing cache problem
c5b8fc
c5b8fc
* Tue Jan 14 2003 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Try to fix bug where empty cache entries would be found in 
c5b8fc
  ~/.fonts.cache-1 during scanning (#81335)
c5b8fc
c5b8fc
* Thu Nov 21 2002 Mike A. Harris <mharris@redhat.com> 2.1-1
c5b8fc
- Updated to version 2.1
c5b8fc
- Updated slighthint patch to fontconfig-2.1-slighthint.patch
c5b8fc
- Updated freetype version required to 2.1.2-7
c5b8fc
c5b8fc
* Mon Sep  2 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Version 2.0
c5b8fc
- Correct capitalization/spacing for ZYSong18030 name (#73272)
c5b8fc
c5b8fc
* Fri Aug 30 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Blacklist fonts from ghostscript-fonts that don't render correctly
c5b8fc
c5b8fc
* Mon Aug 26 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Upgrade to fcpackage rc3
c5b8fc
- Fix bug in comparisons for xx_XX language tags
c5b8fc
- Compensate for a minor config file change in rc3
c5b8fc
c5b8fc
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Add an explicit PreReq for freetype
c5b8fc
- Move fonts we don't ship to the end of the fonts.conf aliases so
c5b8fc
  installing them doesn't change the look.
c5b8fc
c5b8fc
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Memory leak fix when parsing config files
c5b8fc
- Set rh_prefer_bitmaps for .ja fonts to key off of in Xft
c5b8fc
- Fix some groff warnings for fontconfig.man (#72138)
c5b8fc
c5b8fc
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Try once more to get the right default Sans-serif font :-(
c5b8fc
- Switch the Sans/Monospace aliases for Korean to Gulim, not Dotum
c5b8fc
c5b8fc
* Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Fix %%post
c5b8fc
c5b8fc
* Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Fix lost Luxi Sans default
c5b8fc
c5b8fc
* Mon Aug 12 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Upgrade to rc2
c5b8fc
- Turn off hinting for all CJK fonts
c5b8fc
- Fix typo in %%post
c5b8fc
- Remove the custom language tag stuff in favor of Keith's standard 
c5b8fc
  solution.
c5b8fc
c5b8fc
* Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Prefer Luxi Sans to Nimbus Sans again
c5b8fc
c5b8fc
* Fri Jul 12 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Add FC_HINT_STYLE to FcBaseObjectTypes
c5b8fc
- Switch Chinese fonts to always using Sung-ti / Ming-ti, and never Kai-ti
c5b8fc
- Add ZYSong18030 to aliases (#68428)
c5b8fc
c5b8fc
* Wed Jul 10 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Fix a typo in the langtag patch (caught by Erik van der Poel)
c5b8fc
c5b8fc
* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Add FC_HINT_STYLE tag
c5b8fc
c5b8fc
* Thu Jun 27 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- New upstream version, with fix for problems with
c5b8fc
  ghostscript-fonts (Fonts don't work for Qt+CJK,
c5b8fc
  etc.)
c5b8fc
c5b8fc
* Wed Jun 26 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- New upstream version, fixing locale problem
c5b8fc
c5b8fc
* Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Add a hack where we set the "language" fontconfig property based on the locale, then 
c5b8fc
  we conditionalize base on that in the fonts.conf file.
c5b8fc
c5b8fc
* Sun Jun 23 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- New upstream version
c5b8fc
c5b8fc
* Tue Jun 18 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Fix crash from FcObjectSetAdd
c5b8fc
c5b8fc
* Tue Jun 11 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- make fonts.conf %%config, not %%config(noreplace)
c5b8fc
- Another try at the CJK aliases
c5b8fc
- Add some CJK fonts to the config
c5b8fc
- Prefer Luxi Mono to Nimbus Mono
c5b8fc
c5b8fc
* Mon Jun 10 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- New upstream version
c5b8fc
- Fix matching for bitmap fonts
c5b8fc
c5b8fc
* Mon Jun  3 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- New version, new upstream mega-tarball
c5b8fc
c5b8fc
* Tue May 28 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Fix problem with FcConfigSort
c5b8fc
c5b8fc
* Fri May 24 2002 Owen Taylor <otaylor@redhat.com>
c5b8fc
- Initial specfile
c5b8fc