blob: d95314111d7427ca867029f8f0aeee4728db067f (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Mikael Hallendal <hallski@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gal/gal-0.19.2-r1.ebuild,v 1.2 2002/06/08 15:40:50 spider Exp $
S=${WORKDIR}/${P}
DESCRIPTION="The Gnome Application Libraries"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/unstable/sources/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.gnome.org/"
DEPEND="nls? ( sys-devel/gettext )
>=dev-util/intltool-0.11
sys-devel/perl
( >=gnome-base/gnome-vfs-1.0.2-r1
<gnome-base/gnome-vfs-1.9.0 )
>=dev-libs/libunicode-0.4-r1
alsa? ( >=media-libs/alsa-lib-0.5.10 )
>=gnome-base/gnome-print-0.34
=gnome-base/libglade-0*
>=dev-libs/libxml-1.8.16"
src_compile() {
local myconf
if [ -z "`use nls`" ]
then
myconf="--disable-nls"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
${myconf} || die
make || die # Doesn't work with -j 4 (hallski)
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS COPYING ChangeLog NEWS README
}
|