diff options
author | 2004-06-28 14:40:37 +0000 | |
---|---|---|
committer | 2004-06-28 14:40:37 +0000 | |
commit | 855d93377260b614d3fc747a2cd320534bf13fc7 (patch) | |
tree | 946be13b94f7ac8ba5149b327b7c673bf826d94d /sys-apps/policycoreutils | |
parent | add missing gob-2 dependency (#55312) (Manifest recommit) (diff) | |
download | gentoo-2-855d93377260b614d3fc747a2cd320534bf13fc7.tar.gz gentoo-2-855d93377260b614d3fc747a2cd320534bf13fc7.tar.bz2 gentoo-2-855d93377260b614d3fc747a2cd320534bf13fc7.zip |
update extras
Diffstat (limited to 'sys-apps/policycoreutils')
-rw-r--r-- | sys-apps/policycoreutils/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/policycoreutils/files/digest-policycoreutils-1.12-r1 | 2 | ||||
-rw-r--r-- | sys-apps/policycoreutils/policycoreutils-1.12-r1.ebuild | 63 |
3 files changed, 72 insertions, 1 deletions
diff --git a/sys-apps/policycoreutils/ChangeLog b/sys-apps/policycoreutils/ChangeLog index 0a4bbf39715c..35d7b70029c2 100644 --- a/sys-apps/policycoreutils/ChangeLog +++ b/sys-apps/policycoreutils/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/policycoreutils # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.27 2004/06/25 03:09:06 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/ChangeLog,v 1.28 2004/06/28 14:40:37 pebenito Exp $ + +*policycoreutils-1.12-r1 (28 Jun 2004) + + 28 Jun 2004; Chris PeBenito <pebenito@gentoo.org> + +policycoreutils-1.12-r1.ebuild: + Add toggle_bool to extras. 11 Jun 2004; Chris PeBenito <pebenito@gentoo.org> -policycoreutils-1.10-r1.ebuild, policycoreutils-1.12.ebuild: diff --git a/sys-apps/policycoreutils/files/digest-policycoreutils-1.12-r1 b/sys-apps/policycoreutils/files/digest-policycoreutils-1.12-r1 new file mode 100644 index 000000000000..7dac90c32def --- /dev/null +++ b/sys-apps/policycoreutils/files/digest-policycoreutils-1.12-r1 @@ -0,0 +1,2 @@ +MD5 db69756ca36d460ebe2fc0fd7cdbf2b9 policycoreutils-1.12.tgz 40518 +MD5 9a0de2580023c53d04aab04e96b420a8 policycoreutils-extra-1.5.tar.bz2 8704 diff --git a/sys-apps/policycoreutils/policycoreutils-1.12-r1.ebuild b/sys-apps/policycoreutils/policycoreutils-1.12-r1.ebuild new file mode 100644 index 000000000000..2510bd41e4ae --- /dev/null +++ b/sys-apps/policycoreutils/policycoreutils-1.12-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/policycoreutils/policycoreutils-1.12-r1.ebuild,v 1.1 2004/06/28 14:40:37 pebenito Exp $ + +IUSE="build" + +inherit eutils + +EXTRAS_VER="1.5" + +DESCRIPTION="SELinux core utilites" +HOMEPAGE="http://www.nsa.gov/selinux" +SRC_URI="http://www.nsa.gov/selinux/archives/${P}.tgz + mirror://gentoo/policycoreutils-extra-${EXTRAS_VER}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc sparc" + +DEPEND=">=sys-libs/libselinux-${PV} + sys-devel/gettext + !build? ( sys-libs/pam )" + +S2=${WORKDIR}/policycoreutils-extra + +src_unpack() { + unpack ${A} + + cd ${S} + epatch ${FILESDIR}/policycoreutils-1.10-genhomedircon-reverse.diff + + # Change script paths POLICYDIR + sed -i -e "s:/etc/security/selinux/src/policy/:${POLICYDIR}:g" ${S}/scripts/genhomedircon + + # fix up to accept Gentoo CFLAGS + local SUBDIRS="`cd ${S} && find -type d | cut -d/ -f2`" + for i in ${SUBDIRS}; do + sed -i -e "s:-Wall:-Wall ${CFLAGS}:g" ${S}/${i}/Makefile \ + || die "${i} Makefile CFLAGS fix failed." + done +} + +src_compile() { + if use build; then + einfo "Compiling setfiles" + emake -C ${S}/setfiles || die + else + einfo "Compiling policycoreutils" + emake -C ${S} || die + einfo "Compiling policycoreutils-extra" + emake -C ${S2} || die + fi +} + +src_install() { + if use build; then + dosbin ${S}/setfiles/setfiles + else + einfo "Installing policycoreutils" + make DESTDIR="${D}" -C ${S} install || die + einfo "Installing policycoreutils-extra" + make DESTDIR="${D}" -C ${S2} install || die + fi +} |