blob: 5a690c78ef19bb62da99a9a8bfde1b002a943fc1 (
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
61
62
63
64
65
66
|
# Copyright 1999-2013 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-2.32.0-r3.ebuild,v 1.9 2013/09/09 02:39:40 patrick Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
GNOME_TARBALL_SUFFIX="bz2"
inherit autotools eutils gnome2
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 ia64 ppc sparc x86"
IUSE="nfs policykit samba"
RDEPEND="
>=app-admin/system-tools-backends-2.10.1
>=dev-libs/liboobs-2.31.91
>=x11-libs/gtk+-2.19.7:2
>=dev-libs/glib-2.25.3:2
dev-libs/dbus-glib
>=gnome-base/nautilus-2.9.90
sys-libs/cracklib
nfs? ( net-fs/nfs-utils )
samba? ( >=net-fs/samba-3 )
policykit? (
>=sys-auth/polkit-0.92
|| ( gnome-extra/polkit-gnome:obsolete <gnome-extra/polkit-gnome-0.102 )
)"
DEPEND="${RDEPEND}
app-text/docbook-xml-dtd:4.1.2
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
virtual/pkgconfig
>=dev-util/intltool-0.35.0"
src_prepare() {
epatch "${FILESDIR}"/${P}-libtool-intermediate-libs.patch \
"${FILESDIR}"/${P}-missing-atk.patch \
"${FILESDIR}"/${P}-missing-m.patch \
"${FILESDIR}"/${P}-glib-2.32.patch
# automake-1.13 fix, bug #467540
sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.in || die
eautoreconf
gnome2_src_prepare
}
src_configure() {
local myconf=""
if ! use nfs && ! use samba; then
myconf="--disable-shares"
fi
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO"
gnome2_src_configure \
--disable-static \
$(use_enable policykit polkit-gtk) \
${myconf}
}
|