blob: 3045a7feabde51dd17da8a3fc1dadcf6affc20a4 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gnome-system-tools/gnome-system-tools-1.4.1.ebuild,v 1.9 2006/09/03 19:53:26 kumba Exp $
inherit gnome2 eutils
DESCRIPTION="Tools aimed to make easy the administration of UNIX systems"
HOMEPAGE="http://www.gnome.org/projects/gst/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
IUSE="nfs samba"
RDEPEND="net-misc/openssh
userland_GNU? ( sys-apps/shadow )
>=x11-libs/gtk+-2.6
>=gnome-base/libgnomeui-2.9.0
>=gnome-base/libglade-2.4
>=gnome-base/gconf-2.2
>=dev-libs/libxml2-2.4.12
>=gnome-base/nautilus-2.9.90
>=app-admin/system-tools-backends-1.3.0
nfs? ( net-fs/nfs-utils )
samba? ( >=net-fs/samba-3 )"
DEPEND="${RDEPEND}
app-text/scrollkeeper
dev-util/pkgconfig
>=dev-util/intltool-0.29"
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO"
USE_DESTDIR="1"
# --enable-disks is not (still) supported for Gentoo
G2CONF="${G2CONF} --enable-boot --enable-services --disable-network"
pkg_setup() {
if ! use nfs && ! use samba; then
G2CONF="${G2CONF} --disable-shares"
fi
}
src_unpack() {
unpack ${A}
cd ${S}
# fix scrollkeeper violations
gnome2_omf_fix doc/boot/C/Makefile.in \
doc/time/C/Makefile.in \
doc/time/nl/Makefile.in \
doc/users/C/Makefile.in \
doc/network/C/Makefile.in \
doc/services/C/Makefile.in \
doc/services/nl/Makefile.in
}
|