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