summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2009-01-19 22:17:03 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2009-01-19 22:17:03 +0000
commitf67cd278df160535fb16d13fb7fc1cc4ebd2b83d (patch)
tree5593cef70a9751f4b49b5520a8ffe0ff2bceb2fa /sys-auth/policykit
parentMove default-bsd/ to default/bsd for FreeBSD 7.1, so that we switch to the ne... (diff)
downloadgentoo-2-f67cd278df160535fb16d13fb7fc1cc4ebd2b83d.tar.gz
gentoo-2-f67cd278df160535fb16d13fb7fc1cc4ebd2b83d.tar.bz2
gentoo-2-f67cd278df160535fb16d13fb7fc1cc4ebd2b83d.zip
Kill old revision.
(Portage version: 2.2_rc22/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
Diffstat (limited to 'sys-auth/policykit')
-rw-r--r--sys-auth/policykit/ChangeLog5
-rw-r--r--sys-auth/policykit/policykit-0.6.ebuild54
2 files changed, 4 insertions, 55 deletions
diff --git a/sys-auth/policykit/ChangeLog b/sys-auth/policykit/ChangeLog
index c5721ec1fb89..1697b3a14733 100644
--- a/sys-auth/policykit/ChangeLog
+++ b/sys-auth/policykit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-auth/policykit
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.10 2009/01/15 21:59:43 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.11 2009/01/19 22:17:03 eva Exp $
+
+ 19 Jan 2009; Gilles Dartiguelongue <eva@gentoo.org> -policykit-0.6.ebuild:
+ Kill old revision.
15 Jan 2009; Peter Alfredsen <loki_val@gentoo.org> metadata.xml:
Compnerd retired.
diff --git a/sys-auth/policykit/policykit-0.6.ebuild b/sys-auth/policykit/policykit-0.6.ebuild
deleted file mode 100644
index 18c25057b34b..000000000000
--- a/sys-auth/policykit/policykit-0.6.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.6.ebuild,v 1.6 2008/01/25 19:09:40 corsair Exp $
-
-inherit eutils autotools multilib
-
-MY_PN="PolicyKit"
-
-DESCRIPTION="Policy framework for setting user allowed actions with priviledge"
-HOMEPAGE="http://hal.freedesktop.org/docs/PolicyKit"
-SRC_URI="http://hal.freedesktop.org/releases/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc64 ~sparc ~x86"
-IUSE="doc selinux"
-
-RDEPEND=">=dev-libs/glib-2.7
- >=dev-libs/dbus-glib-0.61
- virtual/pam
- dev-libs/expat
- selinux? ( sys-libs/libselinux )"
-DEPEND="${RDEPEND}
- dev-libs/libxslt
- dev-util/pkgconfig
- app-text/docbook-xsl-stylesheets
- doc? ( dev-util/gtk-doc )"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-pkg_setup() {
- enewgroup polkituser || die "failed to create group"
- enewuser polkituser -1 "-1" /dev/null polkituser || die "failed to create user"
-}
-
-src_compile() {
- econf --with-expat \
- --with-pam-module-dir=/$(get_libdir)/security \
- --with-os-type=gentoo \
- $(use_enable doc gtk-doc) \
- $(use_enable selinux) \
- --with-polkit-user=polkituser \
- --with-polkit-group=polkituser \
- --localstatedir=/var \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- # Need to keep a few directories around...
- keepdir /var/run/PolicyKit
- keepdir /var/lib/PolicyKit
-}