summaryrefslogtreecommitdiff
blob: 72e644dc868b67b3bd39b421c54d2a8204b0bb74 (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
# Copyright 1999-2004 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.9 2004/04/27 21:16:25 agriffis Exp $

inherit eutils

IUSE=""

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"

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_unpack() {

	unpack ${A}

	cd ${S}
	# Work around problems described in #27386
	epatch ${FILESDIR}/${P}-db_fix.patch

}

src_compile() {

	CFLAGS="${CFLAGS} `gnome-config --cflags gdk_pixbuf`"

	./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*
}