summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris PeBenito <pebenito@gentoo.org>2003-06-29 04:17:49 +0000
committerChris PeBenito <pebenito@gentoo.org>2003-06-29 04:17:49 +0000
commitc223c22ca294e3aad837f51d9909d86469950fc2 (patch)
tree8883cd194794dc160d57722a4ce7db07efec1d85 /sys-apps
parentremove amd64 keyword (diff)
downloadhistorical-c223c22ca294e3aad837f51d9909d86469950fc2.tar.gz
historical-c223c22ca294e3aad837f51d9909d86469950fc2.tar.bz2
historical-c223c22ca294e3aad837f51d9909d86469950fc2.zip
missing pam error msg, fix keywords
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/selinux-small/ChangeLog7
-rw-r--r--sys-apps/selinux-small/Manifest4
-rw-r--r--sys-apps/selinux-small/selinux-small-2003040709-r4.ebuild12
3 files changed, 17 insertions, 6 deletions
diff --git a/sys-apps/selinux-small/ChangeLog b/sys-apps/selinux-small/ChangeLog
index c4e7f7f20963..ea06ef0093b2 100644
--- a/sys-apps/selinux-small/ChangeLog
+++ b/sys-apps/selinux-small/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/selinux-small
# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/selinux-small/ChangeLog,v 1.22 2003/06/13 22:30:16 pebenito Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/selinux-small/ChangeLog,v 1.23 2003/06/29 04:17:45 pebenito Exp $
+
+ 28 Jun 2003; Chris PeBenito <pebenito@gentoo.org>
+ selinux-small-2003040709-r4.ebuild:
+ Fix overspecified flags in devfsd module compile. Add error about missing pam
+ in USE.
13 Jun 2003; Chris PeBenito <pebenito@gentoo.org>
selinux-small-2003040709-r4.ebuild,
diff --git a/sys-apps/selinux-small/Manifest b/sys-apps/selinux-small/Manifest
index 70db9c1241ca..9bb901261923 100644
--- a/sys-apps/selinux-small/Manifest
+++ b/sys-apps/selinux-small/Manifest
@@ -1,6 +1,6 @@
-MD5 d52280c37e01eb19ebadd38c96c36e6b ChangeLog 5324
+MD5 f88c131ca9d285be1ba7ad2d0126331a ChangeLog 5505
MD5 effd006ee5a76d62ceeef715b5dbf00b selinux-small-2003040709-r3.ebuild 4399
-MD5 7c2f7c087f9cf24101f40fa5870863f9 selinux-small-2003040709-r4.ebuild 5218
+MD5 8098f68887ec205cb21d4e5a7355d764 selinux-small-2003040709-r4.ebuild 5447
MD5 0986e11cde481cc9d4f8061654dedead files/digest-selinux-small-2003040709-r3 151
MD5 14ef7a8e2104665076099d6fe3f0f664 files/digest-selinux-small-2003040709-r4 73
MD5 8daee4f4fd3e4a74c4d5f2ddb6b086a5 files/newrole 1197
diff --git a/sys-apps/selinux-small/selinux-small-2003040709-r4.ebuild b/sys-apps/selinux-small/selinux-small-2003040709-r4.ebuild
index e5f02692e922..77b2dfff46d1 100644
--- a/sys-apps/selinux-small/selinux-small-2003040709-r4.ebuild
+++ b/sys-apps/selinux-small/selinux-small-2003040709-r4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/selinux-small/selinux-small-2003040709-r4.ebuild,v 1.3 2003/06/21 21:19:40 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/selinux-small/selinux-small-2003040709-r4.ebuild,v 1.4 2003/06/29 04:17:45 pebenito Exp $
DESCRIPTION="SELinux libraries and policy compiler"
HOMEPAGE="http://www.nsa.gov/selinux"
@@ -10,7 +10,7 @@ LICENSE="GPL-2"
SLOT="0"
S="${WORKDIR}/selinux"
-KEYWORDS="x86 amd64 ~ppc ~alpha ~sparc"
+KEYWORDS="~x86 ~amd64 ~ppc ~alpha ~sparc"
IUSE="selinux static"
DEPEND="sys-devel/flex
sys-libs/pam
@@ -40,6 +40,12 @@ pkg_setup() {
eerror "kernel sources may be damaged or incomplete, and will need to"
eend 1 "be remerged. Please fix and retry."
fi
+
+ if [ -z "`use pam`" ]; then
+ eerror "pam is missing from your USE. Currently selinux requires pam."
+ eerror "Please add pam, so all programs work correctly. A pam-less"
+ eend 1 "install will probably be supported in the future."
+ fi
}
src_unpack() {
@@ -73,7 +79,7 @@ src_compile() {
einfo "Compiling devfsd module"
cd ${S}/devfsd
mv devfsd-conflet selinux-small
- make CFLAGS="${CFLAGS} ${LIBSECURE}" LDFLAGS="${LIBSECURE/-static}" \
+ make CFLAGS="${CFLAGS}" LDFLAGS="${LIBSECURE/-static}" \
|| die "devfsd compile failed."
einfo "Compiling setfiles"