blob: 248970ea288779580bf3f2368a981a1fb364421a (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/system-tools-backends/system-tools-backends-2.6.1.ebuild,v 1.1 2009/04/16 22:13:31 eva Exp $
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="~amd64 ~x86"
IUSE="policykit"
RDEPEND="!<app-admin/gnome-system-tools-1.1.91
>=sys-apps/dbus-1.1.2
>=dev-libs/dbus-glib-0.74
>=dev-libs/glib-2.15.2
>=dev-perl/Net-DBus-0.33.4
dev-lang/perl
policykit? ( >=sys-auth/policykit-0.5 )
userland_GNU? ( sys-apps/shadow )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=dev-util/intltool-0.40"
DOCS="AUTHORS ChangeLog NEWS README TODO"
pkg_setup() {
G2CONF="${G2CONF} $(use_enable policykit polkit)"
enewgroup stb-admin || die "Failed to create stb-admin group"
}
src_unpack() {
gnome2_src_unpack
# Fix a typo in services
epatch "${FILESDIR}/${PN}-2.6.0-services.patch"
# Fix a distro detection in users to use proper variant
# of useradd
epatch "${FILESDIR}/${PN}-2.6.0-users.patch"
# Fix automagic policykit dependency
epatch "${FILESDIR}/${PN}-2.6.0-automagic-polkit.patch"
# Fix service handling
epatch "${FILESDIR}/${PN}-2.6.0-handle-services.patch"
# Clean up pid file
epatch "${FILESDIR}/${PN}-2.6.0-cleanup-pid-file.patch"
# Change default permission, only people in stb-admin is allowed
# to speak to the dispatcher.
epatch "${FILESDIR}/${PN}-2.6.0-default-permissions.patch"
# Apply fix from ubuntu for CVE 2008 4311
epatch "${FILESDIR}/${PN}-2.6.0-cve-2008-4311.patch"
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
}
src_compile() {
# Autotools insanity, localstatedir gets set to /usr/local/var by default
gnome2_src_compile --localstatedir="${ROOT}"/var
}
src_install() {
gnome2_src_install
newinitd "${FILESDIR}"/stb.rc system-tools-backends
}
pkg_postinst() {
echo
elog "You need to add yourself to the group stb-admin and"
elog "add system-tools-backends to the default runlevel."
elog "You can do this as root like so:"
elog " # rc-update add system-tools-backends default"
echo
}
|