blob: 3b7df40d7c0f9b25fb32cbb4775b73ee03a5f9ce (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-network/gnome-network-1.0.2-r1.ebuild,v 1.4 2002/10/05 05:39:14 drobbins Exp $
IUSE="nls"
S=${WORKDIR}/${P}
DESCRIPTION="gnome-network"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
RDEPEND="=gnome-base/gnome-panel-1.4*
=dev-util/guile-1.4*
>=media-libs/gdk-pixbuf-0.11.0-r1"
DEPEND="${RDEPEND}
>=app-text/scrollkeeper-0.2
nls? ( sys-devel/gettext )"
src_compile() {
local myconf
use nls || myconf="--disable-nls"
CFLAGS="${CFLAGS} `gnome-config --cflags gdk_pixbuf`"
cp sync/sync.h sync/sync.h.old
cat sync/sync.h.old | sed -e s@db.h@db1/db.h@g > sync/sync.h
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--without-gnome-sync \
--enable-static=no \
--localstatedir=/var/lib || die "configure failure. please report to http://bugs.gentoo.org"
emake || die "compile error"
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS COPYING* ChangeLog NEWS README*
}
|