blob: 27134f763a44f5677c11702bf094e836be157a4e (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/pdfkit/pdfkit-0.9_pre062906.ebuild,v 1.2 2006/10/11 20:45:06 grobian Exp $
inherit gnustep
MY_P=${PN}-${PV##*pre}
S=${WORKDIR}/${MY_P/pdfk/PDFK}
DESCRIPTION="A framework for rendering of PDF content in GNUstep applications"
HOMEPAGE="http://home.gna.org/gsimageapps/"
SRC_URI="http://www.gnustep.it/enrico/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~ppc ~x86 ~amd64"
SLOT="0"
IUSE=${IUSE}
DEPEND="${GS_DEPEND}
!gnustep-libs/imagekits"
RDEPEND="${GS_RDEPEND}
!gnustep-libs/imagekits"
egnustep_install_domain "System"
src_compile () {
egnustep_env
use amd64 && append-flags -fPIC
econf || die
egnustep_make || die
}
|