blob: 864a848894c7c52c97ec19e4a4ceb46eb3383aea (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.1.0.ebuild,v 1.7 2002/10/20 18:48:25 vapier Exp $
IUSE="gnome"
S=${WORKDIR}/${P}
DESCRIPTION="The GNOME Structured File Library"
SRC_URI="mirror://gnome/2.0.0/sources/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.gnome.org/"
SLOT="0"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="x86 sparc sparc64 ppc"
DEPEND=">=dev-libs/glib-2.0.4
>=dev-libs/libxml2-2.4.23
>=sys-libs/zlib-1.1.4
gnome? ( >=gnome-base/libbonobo-2.0.0
>=gnome-base/gnome-vfs-2.0.1 )"
src_compile() {
local myconf
if [ "`use gnome`" ]
then
# README lied it is --with-gnomevfs not --with-gnome-vfs
# building with-gnomevfs fails, disabling it
# stroke@gentoo.org
#
#myconf="--with-gnomevfs --with-bonobo"
myconf="--without-gnomevfs --with-bonobo"
else
myconf="--without-gnomevfs --without-bonobo"
fi
econf $myconf --with-zlib || die
make || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
datadir=${D}/usr/share \
install || die
dodoc AUTHORS COPYING* ChangeLog INSTALL NEWS README
}
|