diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-01-13 13:30:20 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-01-13 13:30:20 +0000 |
commit | b1d6a6f439454f60ca11636d370b0687904bd5b4 (patch) | |
tree | 8fb738e1a77971dff56ea032827ba9411cdbefcd /app-text/mftrace | |
parent | add missing pkgconfig dep, bug #205591 (diff) | |
download | gentoo-2-b1d6a6f439454f60ca11636d370b0687904bd5b4.tar.gz gentoo-2-b1d6a6f439454f60ca11636d370b0687904bd5b4.tar.bz2 gentoo-2-b1d6a6f439454f60ca11636d370b0687904bd5b4.zip |
version bump, bug #200168, switch to latex-base
(Portage version: 2.1.4)
Diffstat (limited to 'app-text/mftrace')
-rw-r--r-- | app-text/mftrace/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/mftrace/files/digest-mftrace-1.2.13 | 3 | ||||
-rw-r--r-- | app-text/mftrace/mftrace-1.2.13.ebuild | 36 |
3 files changed, 46 insertions, 2 deletions
diff --git a/app-text/mftrace/ChangeLog b/app-text/mftrace/ChangeLog index f76a225f5b17..fb436d3501ba 100644 --- a/app-text/mftrace/ChangeLog +++ b/app-text/mftrace/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/mftrace -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mftrace/ChangeLog,v 1.41 2007/11/13 18:24:48 armin76 Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mftrace/ChangeLog,v 1.42 2008/01/13 13:30:20 aballier Exp $ + +*mftrace-1.2.13 (13 Jan 2008) + + 13 Jan 2008; Alexis Ballier <aballier@gentoo.org> +mftrace-1.2.13.ebuild: + version bump, bug #200168, switch to latex-base 13 Nov 2007; Raúl Porcel <armin76@gentoo.org> mftrace-1.2.9.ebuild: ia64 stable diff --git a/app-text/mftrace/files/digest-mftrace-1.2.13 b/app-text/mftrace/files/digest-mftrace-1.2.13 new file mode 100644 index 000000000000..520e960427f8 --- /dev/null +++ b/app-text/mftrace/files/digest-mftrace-1.2.13 @@ -0,0 +1,3 @@ +MD5 0d3f2ae9cff1f2677fbf968eb40c9238 mftrace-1.2.13.tar.gz 74557 +RMD160 523e15dc9e6091e93920ca8a073c1bfdd94908f0 mftrace-1.2.13.tar.gz 74557 +SHA256 d4cda4a03df2025bfea288237ffffe670ea59cd9fe8160c738adbca4d93a3f21 mftrace-1.2.13.tar.gz 74557 diff --git a/app-text/mftrace/mftrace-1.2.13.ebuild b/app-text/mftrace/mftrace-1.2.13.ebuild new file mode 100644 index 000000000000..7837e1675984 --- /dev/null +++ b/app-text/mftrace/mftrace-1.2.13.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mftrace/mftrace-1.2.13.ebuild,v 1.1 2008/01/13 13:30:20 aballier Exp $ + +inherit python multilib toolchain-funcs + +DESCRIPTION="traces TeX fonts to PFA or PFB fonts (formerly pktrace)" +HOMEPAGE="http://lilypond.org/download/sources/mftrace/" +SRC_URI="http://lilypond.org/download/sources/mftrace/${P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +# SLOT 1 was used in pktrace ebuild +SLOT="1" +IUSE="truetype" + +DEPEND=">=dev-lang/python-2.2.2 + || ( media-gfx/potrace >=media-gfx/autotrace-0.30 )" + +RDEPEND="${DEPEND} + virtual/latex-base + >=app-text/t1utils-1.25 + truetype? ( media-gfx/fontforge )" + +src_compile() { + python_version + tc-export CC + econf --datadir=/usr/$(get_libdir)/python${PYVER}/site-packages || \ + die "econf failed" + emake CFLAGS="-Wall ${CFLAGS}" || die "emake failed" +} + +src_install () { + python_version + emake DESTDIR="${D}" install || die "make install failed" + dodoc README.txt ChangeLog +} |