blob: 5f600e025c7706135b19d6d9fc5ec5b6b3ae58c7 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2006 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.11.0.ebuild,v 1.1 2006/12/05 20:22:42 grobian Exp $
inherit gnustep
DESCRIPTION="Library of GUI classes written in Obj-C"
HOMEPAGE="http://www.gnustep.org/"
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
SLOT="0"
LICENSE="LGPL-2.1"
IUSE="${IUSE} jpeg gif png gsnd doc cups"
DEPEND="${GNUSTEP_CORE_DEPEND}
>=gnustep-base/gnustep-make-1.12.0
>=gnustep-base/gnustep-base-1.12.0
|| (
( x11-libs/libXt )
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"
# gsnd needs a recent portaudio that's not in the tree yet
# =media-libs/portaudio-19*
RDEPEND="${DEPEND}
${DEBUG_DEPEND}
${DOC_RDEPEND}"
egnustep_install_domain "System"
src_unpack() {
unpack ${A}
cd ${S}
# if use gsnd;
# then
# sed -i -e "s:#include <portaudio.h>:#include <portaudio-2/portaudio.h>:g" ${S}/Tools/gsnd/gsnd.m
# sed -i -e "s:-lportaudio:-lportaudio-2:g" ${S}/Tools/gsnd/GNUmakefile
# sed -i -e "s:^BUILD_GSND=.*$:BUILD_GSND=gsnd:g" ${S}/config.make.in
# fi
}
src_compile() {
egnustep_env
myconf="--with-tiff-include=/usr/include --with-tiff-library=/usr/lib"
use gif && myconf="$myconf --disable-ungif --enable-libgif"
myconf="$myconf `use_enable jpeg`"
myconf="$myconf `use_enable png`"
myconf="$myconf `use_enable cups`"
if use gsnd;
then
myconf="$myconf `use_enable gsnd`"
myconf="$myconf --with-audiofile-include=/usr/include --with-audiofile-lib=/usr/lib"
# myconf="$myconf --with-include-flags=-I/usr/include/portaudio-2"
fi
econf $myconf || die "configure failed"
egnustep_make || die
if use doc;
then
cd ${S}/Documentation
egnustep_make || die
fi
}
src_install() {
egnustep_env
egnustep_install || die
if use doc;
then
cd ${S}/Documentation
egnustep_install || die
fi
use gsnd && newinitd ${FILESDIR}/gsnd.initd gsnd
}
|