blob: d3ee6c5d5a84590bcd35c9b88f4e4f92677d125b (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gnustep-back/gnustep-back-0.8.3.ebuild,v 1.1 2003/02/04 19:07:02 raker Exp $
inherit base
DESCRIPTION="GNUstep GUI backend"
HOMEPAGE="http://www.gnustep.org"
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
LICENSE="LGPL"
SLOT="0"
KEYWORDS="~x86 -ppc -sparc"
DEPEND=">=dev-util/gnustep-gui-0.8.3
>=media-libs/tiff-3.5.7
>=media-libs/jpeg-6b-r2
x11-base/xfree"
S=${WORKDIR}/${P}
PATCHES="${FILESDIR}/${P}.xft1.patch"
src_compile() {
. /usr/GNUstep/System/Makefiles/GNUstep.sh
./configure \
--prefix=/usr/GNUstep \
--with-jpeg-library=/usr/lib \
--with-jpeg-include=/usr/include \
--with-tiff-library=/usr/lib \
--with-tiff-include=/usr/include \
--with-x \
|| die "configure failed"
#--with-include-flags="-I/usr/include/freetype2" \
make || die
}
src_install () {
. /usr/GNUstep/System/Makefiles/GNUstep.sh
make \
GNUSTEP_INSTALLATION_DIR=${D}/usr/GNUstep/System \
INSTALL_ROOT_DIR=${D} \
install || die "install failed"
}
|