blob: 4ec07c519b0029144c7de047cad1ea4d878db52d (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/pslib/pslib-0.4.1-r1.ebuild,v 1.4 2009/11/21 17:30:30 maekke Exp $
inherit autotools eutils
DESCRIPTION="pslib is a C-library to create PostScript files on the fly."
HOMEPAGE="http://pslib.sourceforge.net/"
SRC_URI="mirror://sourceforge/pslib/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug jpeg png tiff"
RDEPEND="png? ( media-libs/libpng )
jpeg? ( media-libs/jpeg )
tiff? ( media-libs/tiff )"
#gif? requires libungif, not in portage
DEPEND="${RDEPEND}
dev-lang/perl
>=dev-libs/glib-2
dev-util/intltool
dev-perl/XML-Parser"
SLOT="0"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-lm.patch"
epatch "${FILESDIR}/${PN}-getline.patch"
eautoreconf
}
src_compile() {
econf $(use_with png) \
$(use_with jpeg) \
$(use_with tiff) \
$(use_with debug) \
|| die "Configure failed"
emake || die "Make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Make install failed"
dodoc AUTHORS README
}
|