blob: 5cd39310b7188bee4f5148ad6f40d2ab03ded333 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mftrace/mftrace-1.0.10.ebuild,v 1.5 2004/03/12 09:18:44 mr_bones_ Exp $
IUSE="truetype"
PYVER=$(python -V 2>&1 | sed -e 's:Python \([0-9].[0-9]\).*:\1:')
DESCRIPTION="traces TeX fonts to PFA or PFB fonts (formerly pktrace)"
HOMEPAGE="http://www.cs.uu.nl/~hanwen/mftrace/"
SRC_URI="http://www.cs.uu.nl/~hanwen/mftrace/${P}.tar.gz"
LICENSE="GPL-1"
# have only tested this ebuild version on x86, but old pktrace
# ebuild had these keywords:
KEYWORDS="x86"
# SLOT 1 was used in pktrace ebuild
SLOT="1"
DEPEND=">=dev-lang/python-2.2.1-r2"
RDEPEND=">=dev-lang/python-2.2.1-r2
>=app-text/tetex-1.0.7-r10
>=app-text/t1utils-1.25
>=media-gfx/autotrace-0.30
truetype? ( >=media-gfx/pfaedit-020910 )"
src_compile() {
econf --datadir=/usr/lib/python${PYVER}/site-packages
emake || die "emake failed"
}
src_install () {
make \
prefix=${D}/usr \
datadir=${D}/usr/lib/python${PYVER}/site-packages/mftrace \
mandir=${D}/usr/share/man \
install || die "make install failed"
dodoc README.txt ChangeLog
}
|