blob: 9ae0341a48c46a0642a6423fd84e03426c41cab0 (
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/sys-apps/accountsservice/accountsservice-0.6.34.ebuild,v 1.2 2013/11/30 19:55:23 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
VALA_MIN_API_VERSION="0.16"
VALA_USE_DEPEND="vapigen"
inherit eutils gnome2 systemd vala
DESCRIPTION="D-Bus interfaces for querying and manipulating user account information"
HOMEPAGE="http://www.fedoraproject.org/wiki/Features/UserAccountDialog"
SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc +introspection systemd vala"
REQUIRED_USE="vala? ( introspection )"
# Want glib-2.34 for g_clear_pointer, bug #462938
RDEPEND="
>=dev-libs/glib-2.34.0:2
sys-auth/polkit
introspection? ( >=dev-libs/gobject-introspection-0.9.12 )
systemd? ( >=sys-apps/systemd-186 )
!systemd? ( sys-auth/consolekit )
"
DEPEND="${RDEPEND}
dev-libs/libxslt
dev-util/gdbus-codegen
>=dev-util/gtk-doc-am-1.15
>=dev-util/intltool-0.40
sys-devel/gettext
virtual/pkgconfig
doc? (
app-text/docbook-xml-dtd:4.1.2
app-text/xmlto )
vala? (
>=dev-lang/vala-0.16.1-r1
$(vala_depend) )
"
src_prepare() {
epatch "${FILESDIR}/${PN}-0.6.34-gentoo-system-users.patch"
use vala && vala_src_prepare
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--disable-static \
--disable-more-warnings \
--localstatedir="${EPREFIX}"/var \
--docdir="${EPREFIX}"/usr/share/doc/${PF} \
--enable-admin-group="wheel" \
$(use_enable doc docbook-docs) \
$(use_enable introspection) \
$(use_enable vala) \
$(use_enable systemd) \
$(systemd_with_unitdir)
}
|