On Fri, 2008-02-22 at 00:52 -0700, Brad Walker wrote: > On Fri, 2008-02-22 at 18:43 +1100, David Hunter wrote: > > # yum install chkfontpath > > Loaded plugins: fastestmirror, presto > > Loading mirror speeds from cached hostfile > > * development: ftp.cica.es > > * adobe-linux-i386: linuxdownload.adobe.com > > Setting up and reading Presto delta metadata > > No Presto metadata available for development > > No Presto metadata available for adobe-linux-i386 > > Setting up Install Process > > Parsing package install arguments > > No package chkfontpath available. > > Nothing to do > > My bad, I have chkfontpath from f8 installed. Koji says that > chkfontpath's not included in f9-alpha or f9-dist. Apparently nothing > obsoletes it. The f8 package still works for me. Ideally, someone would > update the mscorefonts spec and drop the xfs requirement for FC8+. And I've done it. Can someone remind me where the upstream for this is? Andrew Bartlett -- Andrew Bartlett http://samba.org/~abartlet/ Authentication Developer, Samba Team http://samba.org Samba Developer, Red Hat Inc.
# This is the msttcorefonts spec file as distributed from
# http://corefonts.sourceforge.net/.
%define fontname msttcore
# nowdays most (all?) distributions seems to use this. Oh the joys of the FHS
%define ttmkfdir /usr/bin/ttmkfdir
%define fontdir %{_datadir}/fonts/%{fontname}
Summary: TrueType core fonts for the web
Name: %{fontname}-fonts
Obsoletes: msttcorefonts
Version: 2.0
Release: 2
License: Spec file is GPL, binary rpm is gratis but non-distributable
Group: User Interface/X
BuildArch: noarch
BuildRoot: /var/tmp/%{name}-root
BuildPrereq: %{ttmkfdir}
BuildPrereq: wget
BuildPrereq: cabextract
Packager: Noa Resare <noa resare com>
%description
The TrueType core fonts for the web that was once available from
http://www.microsoft.com/typography/fontpack/. The src rpm is cleverly
constructed so that the actual fonts are downloaded from Sourceforge's site
at build time. Therefore this package technically does not 'redistribute'
the fonts, it just makes it easy to install them on a linux system.
%prep
mkdir -p %{name}/downloads
cd %{name}/downloads
# this is the sourceforge mirrorlist as of 2006-04-30. If someone spots changes
# over at sourcforge, feel free to email me and I'll update the list
mirrors="easynews+heanet+superb-west+internap+switch+ufpr+surfnet+umn+kent+mesh+superb-east+jaist"
mirror_count=12
andale32_md5="cbdc2fdd7d2ed0832795e86a8b9ee19a andale32.exe"
arial32_md5="9637df0e91703179f0723ec095a36cb5 arial32.exe"
arialb32_md5="c9089ae0c3b3d0d8c4b0a95979bb9ff0 arialb32.exe"
comic32_md5="2b30de40bb5e803a0452c7715fc835d1 comic32.exe"
courie32_md5="4e412c772294403ab62fb2d247d85c60 courie32.exe"
georgi32_md5="4d90016026e2da447593b41a8d8fa8bd georgi32.exe"
impact32_md5="7907c7dd6684e9bade91cff82683d9d7 impact32.exe"
times32_md5="ed39c8ef91b9fb80f76f702568291bd5 times32.exe"
trebuc32_md5="0d7ea16cac6261f8513a061fbfcdb2b5 trebuc32.exe"
webdin32_md5="230a1d13a365b22815f502eb24d9149b webdin32.exe"
verdan32_md5="12d2a75f8156e10607be1eaa8e8ef120 verdan32.exe"
wd97vwr32_md5="efa72d3ed0120a07326ce02f051e9b42 wd97vwr32.exe"
download_files="andale32.exe arial32.exe arialb32.exe comic32.exe courie32.exe georgi32.exe impact32.exe times32.exe trebuc32.exe webdin32.exe verdan32.exe wd97vwr32.exe"
failures=0
function set_mirror {
local r m
r=`expr $RANDOM % $mirror_count + 1`
m=`echo $mirrors |cut -d+ -f$r`
mirror="http://${m}.dl.sourceforge.net/sourceforge/corefonts/"
}
function check_file {
matches=
if [ ! -r $1 ]
then
echo "$1 does not exist"
return
fi
local variable_name=`basename $1 .exe`_md5
local stored_checksum
eval stored_checksum=\$$variable_name
local computed_checksum=`md5sum $1`
if [ "$stored_checksum" = "$computed_checksum" ]
then
matches=yes
else
rm $1
matches=
fi
}
function download {
wget --timeout=5 -O "$2" $1$2
}
set_mirror
for f in $download_files
do
check_file $f
while [ ! $matches ]
do
download $mirror $f
check_file $f
if [ ! $matches ]
then
echo "failed to download $mirror$f"
failures=`expr $failures + 1`
if [ $failures -gt 5 ]
then
echo "failed to download too many times."
exit
fi
set_mirror
fi
done
done
%build
font_files="andale32.exe arial32.exe arialb32.exe comic32.exe courie32.exe georgi32.exe impact32.exe times32.exe trebuc32.exe webdin32.exe verdan32.exe"
cd %{name}
rm -rf cab-contents fonts
mkdir cab-contents
mkdir fonts
for i in $font_files
do
if [ -f downloads/$i ]
then
cabextract --lowercase --directory=cab-contents downloads/$i
fi
cp cab-contents/*.ttf fonts
rm -f cab-contents/*
done
cabextract --lowercase --directory=cab-contents downloads/wd97vwr32.exe
cabextract --lowercase --directory=cab-contents cab-contents/viewer1.cab
cp cab-contents/*.ttf fonts
cd fonts
%{ttmkfdir} > fonts.dir
%install
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
cd %{name}/fonts
mkdir -p $RPM_BUILD_ROOT/%{fontdir}
cp *.ttf fonts.dir $RPM_BUILD_ROOT/%{fontdir}
%clean
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
%post
if [ -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache -f %{fontdir} || :
fi
%postun
if [ "$1" = "0" ]; then
if [ -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache -f %{fontdir} || :
fi
fi
%files
%attr(-,root,root) %{fontdir}
%dir %{fontdir}
%changelog
* Mon Feb 18 2009 Andrew Bartlett <abartlet samba org> 2.0-2
- Make work with Fedora 9 fonts system
* Sun May 07 2006 Noa Resare <noa resare com> 2.0-1
- checksums downloads
- random mirror
- use redistributable word 97 viewer as source for tahoma.ttf
* Mon Mar 31 2003 Daniel Resare <noa resare com> 1.3-4
- updated microsoft link
- updated sourceforge mirrors
* Mon Nov 25 2002 Daniel Resare <noa resare com> 1.3-3
- the install dir is now deleted when the package is uninstalled
- executable permission removed from the fonts
- executes fc-cache after install if it is available
* Thu Nov 07 2002 Daniel Resare <noa resare com> 1.3-2
- Microsoft released a new service-pack. New url for Tahoma font.
* Thu Oct 24 2002 Daniel Resare <noa resare com> 1.3-1
- removed python hack
- removed python hack info from description
- made tahoma inclusion depend on define
- added some info on the ttmkfdir define
* Tue Aug 27 2002 Daniel Resare <noa resare com> 1.2-3
- fixed spec error when tahoma is not included
* Tue Aug 27 2002 Daniel Resare <noa resare com> 1.2-2
- removed tahoma due to unclear licensing
- parametrized ttmkfdir path (for mandrake users)
- changed description text to reflect the new microsoft policy
* Thu Aug 15 2002 Daniel Resare <noa resare com> 1.2-1
- changed distserver because microsoft no longer provides them
* Tue Apr 09 2002 Daniel Resare <noa resare com> 1.1-3
- fixed post/preun script to actually do what they were supposed to do
* Tue Mar 12 2002 Daniel Resare <noa resare com> 1.1-2
- removed cabextact from this package
- added tahoma font from ie5.5 update
* Fri Aug 25 2001 Daniel Resare <noa metamatrix se>
- initial version
Attachment:
signature.asc
Description: This is a digitally signed message part