blob: bfc4b45915e935524e27a4e6edc6c1ad8af9a54c (
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
|
# Copyright 1999-2009 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.3 2009/01/09 13:31:03 josejx 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
}
|