blob: a132a865169a0094e143f936bec05e9d7b98dc52 (
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
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/pstoedit/pstoedit-3.33.ebuild,v 1.3 2003/10/02 14:28:12 obz Exp $
inherit libtool
# see bug #29724. please don't re-enable flash support until
# ming has the patches applied <obz@gentoo.org>
# IUSE="flash"
IUSE=""
DESCRIPTION="translates PostScript and PDF graphics into other vector formats"
SRC_URI="http://home.t-online.de/home/helga.glunz/wglunz/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.pstoedit.net/pstoedit"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
DEPEND="media-libs/libpng
sys-libs/zlib"
# flash? ( media-libs/ming )"
RDEPEND="${DEPEND}
app-text/ghostscript"
src_compile() {
local myconf=""
# checking if libemf is previously installed, bug #29724
# <obz@gentoo.org>
[ -f /usr/include/libEMF/emf.h ] \
&& myconf="${myconf} --with-libemf-include=/usr/include/libEMF"
elibtoolize
econf ${myconf}
make || die
}
src_install () {
make DESTDIR=${D} install || die "make install failed"
dodoc readme.txt copying
dodoc changelog.htm
}
|