blob: fc15a1593111b584fabed0ceae1dacca4ff45871 (
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
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-gui/gnustep-gui-0.9.5_pre20050312-r1.ebuild,v 1.1 2005/03/19 23:19:34 fafhrd Exp $
ECVS_CVS_COMMAND="cvs -q"
ECVS_SERVER="savannah.gnu.org:/cvsroot/gnustep"
ECVS_USER="anoncvs"
ECVS_AUTH="ext"
ECVS_MODULE="gnustep/core/gui"
ECVS_CO_OPTS="-P -D ${PV/*_pre}"
ECVS_UP_OPTS="-dP -D ${PV/*_pre}"
ECVS_TOP_DIR="${DISTDIR}/cvs-src/savannah.gnu.org-gnustep"
inherit gnustep cvs
S=${WORKDIR}/${ECVS_MODULE}
DESCRIPTION="It is a library of graphical user interface classes written completely in the Objective-C language."
HOMEPAGE="http://www.gnustep.org"
KEYWORDS="~ppc ~x86 ~amd64 ~sparc ~alpha"
SLOT="0"
LICENSE="LGPL-2.1"
IUSE="${IUSE} jpeg gif png gsnd doc cups"
DEPEND="${GNUSTEP_BASE_DEPEND}
>=gnustep-base/gnustep-base-1.10.2_pre20050312*
virtual/x11
>=media-libs/tiff-3*
jpeg? >=media-libs/jpeg-6b*
gif? >=media-libs/giflib-4.1*
png? >=media-libs/libpng-1.2*
gsnd? >=media-libs/audiofile-0.2*
cups? >=net-print/cups-1.1*
app-text/aspell"
RDEPEND="${DEPEND}
${DOC_RDEPEND}"
egnustep_install_domain "System"
src_unpack() {
cvs_src_unpack ${A}
cd ${S}
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/gui-use-giflib.patch.bz2
}
src_compile() {
egnustep_env
myconf="--with-tiff-include=/usr/include --with-tiff-library=/usr/lib"
myconf="$myconf `use_enable gsnd`"
use gsnd && myconf="$myconf --with-audiofile-include=/usr/include --with-audiofile-lib=/usr/lib"
use gif && myconf="$myconf --disable-ungif --enable-giflib"
myconf="$myconf `use_enable jpeg`"
myconf="$myconf `use_enable png`"
myconf="$myconf `use_enable cups`"
econf $myconf || die "configure failed"
egnustep_make || die
}
|