Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 599492 | Differences between
and this patch

Collapse All | Expand All

(-)accountsservice-0.6.43.ebuild (-3 / +10 lines)
Lines 2-7 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
EAPI=6
4
EAPI=6
5
6
GNOME2_EAUTORECONF="yes"
5
inherit gnome2 systemd
7
inherit gnome2 systemd
6
8
7
DESCRIPTION="D-Bus interfaces for querying and manipulating user account information"
9
DESCRIPTION="D-Bus interfaces for querying and manipulating user account information"
Lines 10-25 Link Here
10
12
11
LICENSE="GPL-3+"
13
LICENSE="GPL-3+"
12
SLOT="0"
14
SLOT="0"
13
KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86"
15
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
16
17
IUSE="doc elogind +introspection selinux systemd"
14
18
15
IUSE="doc +introspection selinux systemd"
19
REQUIRED_USE="?? ( elogind systemd )"
16
20
17
CDEPEND="
21
CDEPEND="
18
	>=dev-libs/glib-2.37.3:2
22
	>=dev-libs/glib-2.37.3:2
19
	sys-auth/polkit
23
	sys-auth/polkit
24
	elogind? ( >=sys-auth/elogind-229.4 )
20
	introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
25
	introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
21
	systemd? ( >=sys-apps/systemd-186:0= )
26
	systemd? ( >=sys-apps/systemd-186:0= )
22
	!systemd? ( sys-auth/consolekit )
27
	!systemd? ( !elogind? ( sys-auth/consolekit ) )
23
"
28
"
24
DEPEND="${CDEPEND}
29
DEPEND="${CDEPEND}
25
	dev-libs/libxslt
30
	dev-libs/libxslt
Lines 38-43 Link Here
38
43
39
PATCHES=(
44
PATCHES=(
40
	"${FILESDIR}/${PN}-0.6.35-gentoo-system-users.patch"
45
	"${FILESDIR}/${PN}-0.6.35-gentoo-system-users.patch"
46
	"${FILESDIR}/${P}-elogind.patch"
41
)
47
)
42
48
43
src_configure() {
49
src_configure() {
Lines 48-53 Link Here
48
		--enable-admin-group="wheel" \
54
		--enable-admin-group="wheel" \
49
		--with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \
55
		--with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \
50
		$(use_enable doc docbook-docs) \
56
		$(use_enable doc docbook-docs) \
57
		$(use_enable elogind) \
51
		$(use_enable introspection) \
58
		$(use_enable introspection) \
52
		$(use_enable systemd)
59
		$(use_enable systemd)
53
}
60
}

Return to bug 599492