rpms/mathml-fonts/FC-3 .cvsignore, 1.4, 1.5 find_symbol_font.sh, 1.3, 1.4 mathml-fonts.spec, 1.7, 1.8 sources, 1.4, 1.5

Rex Dieter (rdieter) fedora-extras-commits at redhat.com
Fri Jun 9 16:56:03 UTC 2006


Author: rdieter

Update of /cvs/extras/rpms/mathml-fonts/FC-3
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27181

Modified Files:
	.cvsignore find_symbol_font.sh mathml-fonts.spec sources 
Log Message:
* Fri Jun 09 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.0-21
- update to BaKoMa4Lyx-1.1 (includes eufm10.ttf)
- update %description



Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/mathml-fonts/FC-3/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore	19 Oct 2005 13:54:25 -0000	1.4
+++ .cvsignore	9 Jun 2006 16:56:03 -0000	1.5
@@ -3,3 +3,4 @@
 mtextra.ttf
 MathTypeTrueTypeFonts.asp
 mtextralic.htm
+BaKoMa4LyX-1.1.zip




Index: mathml-fonts.spec
===================================================================
RCS file: /cvs/extras/rpms/mathml-fonts/FC-3/mathml-fonts.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mathml-fonts.spec	19 Oct 2005 13:54:25 -0000	1.7
+++ mathml-fonts.spec	9 Jun 2006 16:56:03 -0000	1.8
@@ -1,11 +1,10 @@
-# $Id$
 
 %define fontdir       %{_datadir}/fonts/mathml
 
 Summary: Mathematical symbol fonts
 Name:    mathml-fonts
 Version: 1.0 
-Release: 19%{?dist}
+Release: 21%{?dist}
 
 URL:     http://www.mozilla.org/projects/mathml/fonts/
 License: Distributable
@@ -23,19 +22,23 @@
 #  License: http://support.wolfram.com/mathematica/systems/windows/general/latestfonts.html (non-distributable)
 %{?_with_mathematica:Source10: http://support.wolfram.com/mathematica/systems/windows/general/MathFonts_TrueType.exe}
 ## TeX fonts
-Source20: ftp://tug.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/ttf/cmbx10.ttf
-# Reference: http://wiki.lyx.org/Windows/LyX136 
-Source21: ftp://ftp.lyx.org/pub/lyx/contrib/BaKoMa4LyX.zip
+# Bakoma TeX fonts, http://wiki.lyx.org/FAQ/Qt
+Source20: ftp://ftp.lyx.org/pub/lyx/contrib/BaKoMa4LyX-1.1.zip
+# extras (cmbx10)
+Source21: ftp://tug.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/ttf/cmbx10.ttf
+#Now included in BaKoMa4LyX-1.1
+#Source22: ftp://tug.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/ttf/eufm10.ttf
+
 ## Design Science fonts, URL: http://www.dessci.com/en/dl/fonts/
 Source30: http://www.dessci.com/en/dl/MathTypeTrueTypeFonts.asp
-Source31:  http://www.dessci.com/en/support/eula/fonts/mtextralic.htm
+Source31: http://www.dessci.com/en/support/eula/fonts/mtextralic.htm
 
 BuildRequires: cabextract
 BuildRequires: unzip
 
-# we're pretty much useless without it, and use fc-cache
-# in %%post,%%postun,%%triggers 
-Prereq: fontconfig
+# we're pretty much useless without it, and use fc-cache in scriptlets 
+# but, fontconfig will run fc-cache on install, so what's the big deal?
+#Prereq: fontconfig
 
 # Provide lyx upstream contrib rpms
 Provides: latex-xft-fonts = 0.1
@@ -44,8 +47,7 @@
 %description
 This package contains fonts required to display mathematical
 symbols.  Applications supported include:
-
-* mozilla (and netscape >= 7) to display MathML
+* mozilla-based browsers (including firefox, seamonkey) to display MathML
 * lyx
 * kformula (koffice)
 
@@ -56,11 +58,11 @@
 ## Math'ca
 %{?_with_mathematica:unzip %{SOURCE10}}
 
-## TeX fonts (bakoma/cmbx)
-install -p -m644 %{SOURCE20} .
-
-## BaKoMa4Lyx fonts
-%setup -T -D -n %{name} -a 21
+## TeX fonts
+# BaKoMa4Lyx
+%setup -T -D -n %{name} -a 20
+# cmbx
+install -p -m644 %{SOURCE21} .
 
 ## MathType fonts (mtextra)
 cabextract %{SOURCE30}
@@ -93,16 +95,16 @@
 
 %triggerun -- acroread,AdobeReader_enu
 if [ $2 -eq 0 ]; then
-  fc-cache -f %{fontdir} ||:
+  fc-cache -f %{fontdir} 2> /dev/null ||: 
 fi
 
 %post
 %{find_symbol_font} ||:
-fc-cache -f %{fontdir} ||:
+fc-cache -f %{fontdir} 2> /dev/null ||: 
 
 %postun
 if [ $1 -eq 0 ]; then
-  fc-cache ||:
+  fc-cache 2> /dev/null ||: 
 fi
 
 
@@ -115,7 +117,7 @@
 %{fontdir}/*.[ot]tf
 %ghost %{fontdir}/Symbol.pfa
 %ghost %{fontdir}/SY______.PFB
-%ghost %{fontdir}/fonts.cache-1
+%ghost %{fontdir}/fonts.cache-*
 
 
 %clean
@@ -123,6 +125,13 @@
 
 
 %changelog
+* Fri Jun 09 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.0-21
+- update to BaKoMa4Lyx-1.1 (includes eufm10.ttf)
+- update %%description
+
+* Fri Oct 28 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.0-20
+- newer fontconfig's create/use fonts.cache-2 too (#171978)
+
 * Wed Oct 19 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.0-19
 - use cabextract on MathTypeTrueTypeFonts
 - include mtextralic.htm (MathType/mtextra license)


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/mathml-fonts/FC-3/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources	19 Oct 2005 13:54:25 -0000	1.4
+++ sources	9 Jun 2006 16:56:03 -0000	1.5
@@ -1,4 +1,4 @@
 19f80def73f72679e916fa8143f9be02  cmbx10.ttf
-46d1caf4e2bf294d641cf1c37be19082  BaKoMa4LyX.zip
 f3522c4ca9b4be08252848c1933d021e  MathTypeTrueTypeFonts.asp
 0c2dba03bd9d8842a495575493de28fd  mtextralic.htm
+1dde8dd9be733fac72429427f25f1cdd  BaKoMa4LyX-1.1.zip




More information about the fedora-extras-commits mailing list