diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2010-06-05 06:46:56 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2010-06-05 06:46:56 +0000 |
commit | 7bfb5a47a2a3c4e6608a9544dd91f10eaa730097 (patch) | |
tree | 759c8099bb365821e9908a4d90ce367800c55f19 /media-fonts | |
parent | Fix encoding in ChangeLog (diff) | |
download | gentoo-2-7bfb5a47a2a3c4e6608a9544dd91f10eaa730097.tar.gz gentoo-2-7bfb5a47a2a3c4e6608a9544dd91f10eaa730097.tar.bz2 gentoo-2-7bfb5a47a2a3c4e6608a9544dd91f10eaa730097.zip |
Version bump. (bug #322011 by Christian Kotz and Alexandre Rostovtsev)
Install pdf glyph tables with USE=doc.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-fonts')
-rw-r--r-- | media-fonts/stix-fonts/ChangeLog | 11 | ||||
-rw-r--r-- | media-fonts/stix-fonts/files/61-stix.conf | 36 | ||||
-rw-r--r-- | media-fonts/stix-fonts/stix-fonts-1.0.0.ebuild | 31 |
3 files changed, 70 insertions, 8 deletions
diff --git a/media-fonts/stix-fonts/ChangeLog b/media-fonts/stix-fonts/ChangeLog index e9c7b8610538..24ab2a71ee4e 100644 --- a/media-fonts/stix-fonts/ChangeLog +++ b/media-fonts/stix-fonts/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-fonts/stix-fonts -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-fonts/stix-fonts/ChangeLog,v 1.1 2008/03/23 19:25:11 dirtyepic Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/stix-fonts/ChangeLog,v 1.2 2010/06/05 06:46:56 dirtyepic Exp $ + +*stix-fonts-1.0.0 (05 Jun 2010) + + 05 Jun 2010; Ryan Hill <dirtyepic@gentoo.org> files/61-stix.conf, + +stix-fonts-1.0.0.ebuild: + Version bump. (bug #322011 by Christian Kotz and Alexandre Rostovtsev) + Install pdf glyph tables with USE=doc. *stix-fonts-0.9_beta (23 Mar 2008) diff --git a/media-fonts/stix-fonts/files/61-stix.conf b/media-fonts/stix-fonts/files/61-stix.conf index cac391bceb74..a299492bbcaf 100644 --- a/media-fonts/stix-fonts/files/61-stix.conf +++ b/media-fonts/stix-fonts/files/61-stix.conf @@ -21,7 +21,31 @@ </prefer> </alias> <alias binding="same"> - <family>STIXIntegrals</family> + <family>STIXIntegralsD</family> + <accept> + <family>STIXGeneral</family> + </accept> + </alias> + <alias binding="same"> + <family>STIXIntegralsSm</family> + <accept> + <family>STIXGeneral</family> + </accept> + </alias> + <alias binding="same"> + <family>STIXIntegralsUp</family> + <accept> + <family>STIXGeneral</family> + </accept> + </alias> + <alias binding="same"> + <family>STIXIntegralsUpD</family> + <accept> + <family>STIXGeneral</family> + </accept> + </alias> + <alias binding="same"> + <family>STIXIntegralsUpSm</family> <accept> <family>STIXGeneral</family> </accept> @@ -33,31 +57,31 @@ </accept> </alias> <alias binding="same"> - <family>STIXSize1</family> + <family>STIXSizeOneSym</family> <accept> <family>STIXGeneral</family> </accept> </alias> <alias binding="same"> - <family>STIXSize2</family> + <family>STIXSizeTwoSym</family> <accept> <family>STIXGeneral</family> </accept> </alias> <alias binding="same"> - <family>STIXSize3</family> + <family>STIXSize3ThreeSym</family> <accept> <family>STIXGeneral</family> </accept> </alias> <alias binding="same"> - <family>STIXSize4</family> + <family>STIXSizeFourSym</family> <accept> <family>STIXGeneral</family> </accept> </alias> <alias binding="same"> - <family>STIXSize5</family> + <family>STIXSizeFiveSym</family> <accept> <family>STIXGeneral</family> </accept> diff --git a/media-fonts/stix-fonts/stix-fonts-1.0.0.ebuild b/media-fonts/stix-fonts/stix-fonts-1.0.0.ebuild new file mode 100644 index 000000000000..470992c962e1 --- /dev/null +++ b/media-fonts/stix-fonts/stix-fonts-1.0.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/stix-fonts/stix-fonts-1.0.0.ebuild,v 1.1 2010/06/05 06:46:56 dirtyepic Exp $ + +inherit font + +DESCRIPTION="Comprehensive OpenType font set of mathematical symbols and alphabets" +HOMEPAGE="http://www.stixfonts.org/" +SRC_URI="mirror://gentoo/STIXv${PV}.zip" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S="${WORKDIR}/STIXv${PV}" +FONT_SUFFIX="otf" +FONT_S="${S}/Fonts" +FONT_CONF=( "${FILESDIR}"/61-stix.conf ) + +src_install() { + # DOCS can't do files with spaces so handle it ourselves + font_src_install + dodoc "STIX Font Release Documentation 2010.pdf" + use doc && dodoc "${S}"/Glyphs/*.pdf +} + +RESTRICT="strip binchecks" |