blob: 9d30b328fdbbaeef185c047e28d36b068dab7401 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/usermode/usermode-1.87.ebuild,v 1.2 2007/10/15 09:39:54 dberkholz Exp $
inherit flag-o-matic rpm autotools
# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source
# tarball out of it
RPMREV="3"
DESCRIPTION="Tools for certain user account management tasks"
HOMEPAGE="http://fedoraproject.org/wiki/SystemConfig/"
SRC_URI="mirror://fedora/development/source/SRPMS/${P}-${RPMREV}.src.rpm"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="debug selinux"
RDEPEND="=dev-libs/glib-2*
=x11-libs/gtk+-2*
=gnome-base/libglade-2*
sys-apps/attr
x11-libs/libSM
dev-util/desktop-file-utils
sys-libs/system-config-base
>=sys-libs/pam-0.75
dev-perl/XML-Parser
sys-libs/libuser"
DEPEND="${RDEPEND}
sys-devel/gettext"
src_unpack() {
rpm_src_unpack
cd "${S}"
# Change vendor prefix of desktop file from redhat to gentoo
sed -i -e "s:^\(VENDOR=\).*:\1gentoo:g" Makefile.am
# Invalid categories in desktop-file-utils-0.11 (#153395)
sed -i \
-e "/AdvancedSettings/d" \
-e "/Application/d" \
-e "/X-Red-Hat-Base/d" \
Makefile.am
eautoreconf
}
src_compile() {
append-ldflags -Wl,-z,now
econf \
$(use_with selinux) \
$(use_enable debug) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
# This needs to be suid, it's the main interface with suid-requiring stuff
fperms 4711 /usr/sbin/userhelper
# Don't install a shutdown executable, it will be preferred over /sbin/
rm "${D}"/usr/bin/shutdown
}
|