sys-auth/polkit: depend on acc-user/polkitd
authorMike Gilbert <floppym@gentoo.org>
Fri, 9 Aug 2019 17:27:59 +0000 (13:27 -0400)
committerMike Gilbert <floppym@gentoo.org>
Fri, 9 Aug 2019 18:27:49 +0000 (14:27 -0400)
Package-Manager: Portage-2.3.71, Repoman-2.3.16_p24
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
sys-auth/polkit/polkit-0.116-r1.ebuild [moved from sys-auth/polkit/polkit-0.116.ebuild with 87% similarity]

similarity index 87%
rename from sys-auth/polkit/polkit-0.116.ebuild
rename to sys-auth/polkit/polkit-0.116-r1.ebuild
index b3fdcd99dd811629a5f5005843de580ea9eb2600..4b9c7900a5f5d667703345ff80400e0165970f8d 100644 (file)
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools pam pax-utils systemd user xdg-utils
+inherit autotools pam pax-utils systemd xdg-utils
 
 DESCRIPTION="Policy framework for controlling privileges for system-wide services"
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/polkit https://gitlab.freedesktop.org/polkit/polkit"
@@ -17,6 +17,7 @@ IUSE="consolekit elogind examples gtk +introspection jit kde nls pam selinux sys
 REQUIRED_USE="^^ ( consolekit elogind systemd )"
 
 BDEPEND="
+       acct-user/polkitd
        app-text/docbook-xml-dtd:4.1.2
        app-text/docbook-xsl-stylesheets
        dev-libs/gobject-introspection-common
@@ -40,6 +41,7 @@ DEPEND="
        systemd? ( sys-apps/systemd:0=[policykit] )
 "
 RDEPEND="${DEPEND}
+       acct-user/polkitd
        selinux? ( sec-policy/selinux-policykit )
 "
 PDEPEND="
@@ -62,16 +64,6 @@ QA_MULTILIB_PATHS="
        usr/lib/polkit-1/polkit-agent-helper-1
        usr/lib/polkit-1/polkitd"
 
-pkg_setup() {
-       local u=polkitd
-       local g=polkitd
-       local h=/var/lib/polkit-1
-
-       enewgroup ${g}
-       enewuser ${u} -1 -1 ${h} ${g}
-       esethome ${u} ${h}
-}
-
 src_prepare() {
        default
 
@@ -122,20 +114,18 @@ src_compile() {
 src_install() {
        default
 
-       fowners -R polkitd:root /{etc,usr/share}/polkit-1/rules.d
-
-       diropts -m0700 -o polkitd -g polkitd
-       keepdir /var/lib/polkit-1
-
        if use examples; then
                insinto /usr/share/doc/${PF}/examples
                doins src/examples/{*.c,*.policy*}
        fi
 
+       diropts -m 0700 -o polkitd
+       keepdir /usr/share/polkit-1/rules.d
+
        find "${ED}" -name '*.la' -delete || die
 }
 
 pkg_postinst() {
-       chown -R polkitd:root "${EROOT}"/{etc,usr/share}/polkit-1/rules.d
-       chown -R polkitd:polkitd "${EROOT}"/var/lib/polkit-1
+       chmod 0700 "${EROOT}"/{etc,usr/share}/polkit-1/rules.d
+       chown polkitd "${EROOT}"/{etc,usr/share}/polkit-1/rules.d
 }