diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2006-01-06 08:46:28 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2006-01-06 08:46:28 +0000 |
commit | 9961c2d66fcab8249f718b8e26a39eb243b03191 (patch) | |
tree | b536d12595bbc0f82f135c52379501eb18e60f3f /sys-apps/hal | |
parent | add explicit handling of selinux support. (diff) | |
download | historical-9961c2d66fcab8249f718b8e26a39eb243b03191.tar.gz historical-9961c2d66fcab8249f718b8e26a39eb243b03191.tar.bz2 historical-9961c2d66fcab8249f718b8e26a39eb243b03191.zip |
add explicit handling of selinux support.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'sys-apps/hal')
-rw-r--r-- | sys-apps/hal/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/hal/Manifest | 14 | ||||
-rw-r--r-- | sys-apps/hal/hal-0.5.5.1-r3.ebuild | 8 |
3 files changed, 21 insertions, 6 deletions
diff --git a/sys-apps/hal/ChangeLog b/sys-apps/hal/ChangeLog index 4c7a591f3e3d..96bc85f87205 100644 --- a/sys-apps/hal/ChangeLog +++ b/sys-apps/hal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/hal # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/ChangeLog,v 1.69 2006/01/02 16:54:37 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/ChangeLog,v 1.70 2006/01/06 08:46:28 pebenito Exp $ + + 06 Jan 2006; Chris PeBenito <pebenito@gentoo.org> hal-0.5.5.1-r3.ebuild: + Add explicit handling of SELinux support. 02 Jan 2006; Michael Hanselmann <hansmi@gentoo.org> hal-0.4.8.ebuild: Stable on ppc. diff --git a/sys-apps/hal/Manifest b/sys-apps/hal/Manifest index a2f9dec81888..55c55d6932ad 100644 --- a/sys-apps/hal/Manifest +++ b/sys-apps/hal/Manifest @@ -1,4 +1,7 @@ -MD5 a50594bb4122d1f55176d81def98e294 ChangeLog 9866 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 c2c09220accbbcf355b72854bcd8d70e ChangeLog 9988 MD5 f8ec045cb9f929b5bc89e16ce3cbd637 files/0.5-hald.rc 646 MD5 3031a9fe74f43859c313d5f3076e68cd files/digest-hal-0.4.7-r2 62 MD5 2bbbb519c89110dfec96cf63cf541afc files/digest-hal-0.4.8 62 @@ -16,5 +19,12 @@ MD5 7ee3fd5b5ee117f14633350e5b335c2f files/hal-unmount.dev 397 MD5 35750516d24e67c9f24f5f1e0da22ca0 files/hald 522 MD5 6620fb9a1606d84523f610671945560e hal-0.4.7-r2.ebuild 3446 MD5 b3418f98e4fc613f1ffe016d8a371612 hal-0.4.8.ebuild 3420 -MD5 0af097a0418d15077bc9733629b6247f hal-0.5.5.1-r3.ebuild 3706 +MD5 d6155161ec5700e1777d4ed6d4ca46aa hal-0.5.5.1-r3.ebuild 3776 MD5 a60767d83157413d549c69b98fac962c metadata.xml 303 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2 (GNU/Linux) + +iD8DBQFDvi5vJ+ChZlpDtAoRAoyxAJ99vke+LMEy4H678y2Xmd7Qv2ZrbwCgmLbG +EoISZwGSwTft8Med1NDp3I0= +=UabF +-----END PGP SIGNATURE----- diff --git a/sys-apps/hal/hal-0.5.5.1-r3.ebuild b/sys-apps/hal/hal-0.5.5.1-r3.ebuild index 5b508afed3f1..2e80b0eb1213 100644 --- a/sys-apps/hal/hal-0.5.5.1-r3.ebuild +++ b/sys-apps/hal/hal-0.5.5.1-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/hal-0.5.5.1-r3.ebuild,v 1.2 2006/01/04 01:02:24 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/hal-0.5.5.1-r3.ebuild,v 1.3 2006/01/06 08:46:28 pebenito Exp $ inherit eutils linux-info debug @@ -11,7 +11,7 @@ SRC_URI="http://freedesktop.org/~david/dist/${P}.tar.gz" LICENSE="|| ( GPL-2 AFL-2.0 )" SLOT="0" KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="acpi debug doc pam_console pcmcia" +IUSE="acpi debug doc pam_console pcmcia selinux" RDEPEND=">=dev-libs/glib-2.6 >=sys-apps/dbus-0.50 @@ -21,7 +21,8 @@ RDEPEND=">=dev-libs/glib-2.6 dev-libs/expat dev-libs/libusb sys-apps/hotplug - pam_console? ( sys-libs/pam )" + pam_console? ( sys-libs/pam ) + selinux? ( sys-libs/libselinux )" DEPEND="${RDEPEND} dev-util/pkgconfig @@ -92,6 +93,7 @@ src_compile() { $(use_enable acpi acpi-proc) \ $(use_enable doc docbook-docs) \ $(use_enable doc doxygen-docs) \ + $(use_enable selinux) \ || die "configure failed" # --disable-acpi-acpid when HAL handles all that acpid handles |