blob: 3aa833a457c5d2e4a6a59b82f9718d7667d1fd58 (
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
|
# Copyright 1999-2008 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.20.0.ebuild,v 1.2 2008/01/25 00:18:05 mr_bones_ Exp $
inherit 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="~amd64 ~x86"
IUSE="nfs samba"
RDEPEND="
>=dev-libs/liboobs-2.17.5
>=x11-libs/gtk+-2.9
>=gnome-base/libglade-2.4
>=gnome-base/gconf-2.2
dev-libs/dbus-glib
>=gnome-base/nautilus-2.9.90
nfs? ( net-fs/nfs-utils )
samba? ( >=net-fs/samba-3 )"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=app-text/gnome-doc-utils-0.3.2
dev-util/pkgconfig
>=dev-util/intltool-0.35.0"
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO"
pkg_setup() {
if ! use nfs && ! use samba; then
G2CONF="${G2CONF} --disable-shares"
fi
}
|