diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-07-25 11:42:51 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-07-25 11:42:51 +0000 |
commit | 8f59a8e438c7c1a8c6766222961fdfad30ee121a (patch) | |
tree | e91ea6267ebef6abc53b151d1451bedc09624f8a /app-text/ttf2pk2/ttf2pk2-1.5_p20120701.ebuild | |
parent | Fix curl header includes (diff) | |
download | gentoo-2-8f59a8e438c7c1a8c6766222961fdfad30ee121a.tar.gz gentoo-2-8f59a8e438c7c1a8c6766222961fdfad30ee121a.tar.bz2 gentoo-2-8f59a8e438c7c1a8c6766222961fdfad30ee121a.zip |
bump to the version released with texlive 2012
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'app-text/ttf2pk2/ttf2pk2-1.5_p20120701.ebuild')
-rw-r--r-- | app-text/ttf2pk2/ttf2pk2-1.5_p20120701.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-text/ttf2pk2/ttf2pk2-1.5_p20120701.ebuild b/app-text/ttf2pk2/ttf2pk2-1.5_p20120701.ebuild new file mode 100644 index 000000000000..12d19413a2d6 --- /dev/null +++ b/app-text/ttf2pk2/ttf2pk2-1.5_p20120701.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ttf2pk2/ttf2pk2-1.5_p20120701.ebuild,v 1.1 2012/07/25 11:42:51 aballier Exp $ + +EAPI=4 + +DESCRIPTION="Freetype 2 based TrueType font to TeX's PK format converter" +HOMEPAGE="http://tug.org/texlive/" +SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="" + +# Note about blockers: it is a freetype2 based replacement for ttf2pk and +# ttf2tfm from freetype1, so block freetype1. +# It installs some data that collides with +# dev-texlive/texlive-langcjk-2011[source]. Hope it'd be fixed with 2012, +# meanwhile we can start dropping freetype1. +RDEPEND=">=dev-libs/kpathsea-6.0.1_p20110627 + media-libs/freetype:2 + sys-libs/zlib + !media-libs/freetype:1 + !=dev-texlive/texlive-langcjk-2011*[source]" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/texlive-${PV#*_p}-source/texk/${PN} + +src_configure() { + econf --with-system-kpathsea \ + --with-system-freetype2 \ + --with-system-zlib +} + +src_install() { + emake DESTDIR="${D}" install + dodoc BUGS README TODO ChangeLog +} |