diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2004-09-06 21:26:41 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2004-09-06 21:26:41 +0000 |
commit | a68da01c86220497f4122011bb91cea006c8d834 (patch) | |
tree | c4404493a201df0b3bfa59254354ff74451c15b5 /sec-policy/selinux-base-policy/selinux-base-policy-20040906.ebuild | |
parent | Marked ~amd64. (diff) | |
download | historical-a68da01c86220497f4122011bb91cea006c8d834.tar.gz historical-a68da01c86220497f4122011bb91cea006c8d834.tar.bz2 historical-a68da01c86220497f4122011bb91cea006c8d834.zip |
new release
Diffstat (limited to 'sec-policy/selinux-base-policy/selinux-base-policy-20040906.ebuild')
-rw-r--r-- | sec-policy/selinux-base-policy/selinux-base-policy-20040906.ebuild | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/sec-policy/selinux-base-policy/selinux-base-policy-20040906.ebuild b/sec-policy/selinux-base-policy/selinux-base-policy-20040906.ebuild new file mode 100644 index 000000000000..949ff36810c1 --- /dev/null +++ b/sec-policy/selinux-base-policy/selinux-base-policy-20040906.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sec-policy/selinux-base-policy/selinux-base-policy-20040906.ebuild,v 1.1 2004/09/06 21:26:41 pebenito Exp $ + +IUSE="build" + +inherit eutils + +DESCRIPTION="Gentoo base policy for SELinux" +HOMEPAGE="http://www.gentoo.org/proj/en/hardened/selinux/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" +DEPEND="build? ( sys-devel/make + sys-devel/m4 )" +RDEPEND="sys-devel/m4 + sys-devel/make" + +S=${WORKDIR}/base-policy + +[ -z ${POLICYDIR} ] && POLICYDIR="/etc/security/selinux/src/policy" + +# deprecated policies: +DEPRECATED="domains/program/devfsd.te domains/program/opt.te + file_contexts/program/devfsd.fc file_contexts/program/opt.fc + file_contexts/users.fc" + +src_compile() { + return +} + +src_install() { + if use build; then + # generate a file_contexts + dodir ${POLICYDIR}/file_contexts + einfo "Ignore the checkpolicy error on the next line." + make -C ${S} \ + FC=${D}/${POLICYDIR}/file_contexts/file_contexts \ + ${D}/${POLICYDIR}/file_contexts/file_contexts + + [ ! -f ${D}/${POLICYDIR}/file_contexts/file_contexts ] && \ + die "file_contexts was not generated." + else + # install full policy + dodir /etc/security/selinux/src + + insinto /etc/security + doins ${S}/appconfig/* + + cp -a ${S} ${D}/${POLICYDIR} + rm -fR ${D}/${POLICYDIR}/appconfig + fi +} + +pkg_postinst() { + local isdeprecated + echo + einfo "This is the base policy for SELinux on Gentoo. This policy" + einfo "package only covers the applications in the system profile." + einfo "More policy may need to be added according to your requirements." + echo + eerror "It is STRONGLY suggested that you evaluate and merge the" + eerror "policy changes. If any of the file contexts (*.fc) have" + eerror "changed, you should also relabel." + echo + ewarn "Please check the Changelog, there may be important information." + echo + echo + + einfo "Checking for deprecated policy..." + for i in $DEPRECATED; do + if [ -f "${POLICYDIR}/${i}" ]; then + eerror "${POLICYDIR}/${i}" + isdeprecated="y" + fi + done + [ "${isdeprecated}" ] && \ + eerror "The above policy file(s) should be removed if possible." || \ + einfo "None found." + + ebeep 4 + epause 4 +} |