diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2004-01-06 23:57:05 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2004-01-06 23:57:05 +0000 |
commit | 123410391d0ec82c08b9f269698e3b88b684e673 (patch) | |
tree | fc1d51fc06337377355eab704063834b21678dc2 /app-admin/setools/setools-1.1.1.ebuild | |
parent | Added patches to address the security vulnerabilities in bugs #37292 and #37317. (diff) | |
download | gentoo-2-123410391d0ec82c08b9f269698e3b88b684e673.tar.gz gentoo-2-123410391d0ec82c08b9f269698e3b88b684e673.tar.bz2 gentoo-2-123410391d0ec82c08b9f269698e3b88b684e673.zip |
new upstream bugfix release
Diffstat (limited to 'app-admin/setools/setools-1.1.1.ebuild')
-rw-r--r-- | app-admin/setools/setools-1.1.1.ebuild | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/app-admin/setools/setools-1.1.1.ebuild b/app-admin/setools/setools-1.1.1.ebuild new file mode 100644 index 000000000000..1d3e59ba25df --- /dev/null +++ b/app-admin/setools/setools-1.1.1.ebuild @@ -0,0 +1,132 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/setools/setools-1.1.1.ebuild,v 1.1 2004/01/06 23:56:57 pebenito Exp $ + +DESCRIPTION="SELinux policy tools" +HOMEPAGE="http://www.tresys.com/selinux_policy_tools.html" +SRC_URI="http://www.tresys.com/Downloads/selinux-tools/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +S="${WORKDIR}/${P}" +KEYWORDS="~x86" +IUSE="X gtk selinux" + +DEPEND="sys-devel/bison + sys-devel/flex + X? ( dev-lang/tk gtk? ( >=gnome-base/libglade-2.0 ) )" + +RDEPEND="X? ( + dev-lang/tk + >=dev-tcltk/bwidget-1.4.1 + gtk? ( >=gnome-base/libglade-2.0 ) + )" + +src_unpack() { + unpack ${A} + cd ${S} + + # fix the Makefile to listen to portage CFLAGS + sed -i -e "s:-O2:-O2 ${CFLAGS}:" ${S}/Makefile + + # fix for tcl/tk version + has_version '=dev-lang/tk-8.4*' && \ + sed -i -e 's:8.3:8.4:' ${S}/Makefile + + # fix up the scripts we're going to install + sed -i -e 's:local/selinux/::g' ${S}/seuser/seuseradd + sed -i -e 's:local/selinux/::g' ${S}/seuser/seuserdel + sed -i -e 's:local/selinux/::g' ${S}/seuser/seusermod + + # we will manually install policy + sed -i -e "s: policy-install::g" ${S}/seuser/Makefile + + # fix up the file contexts + sed -i -e 's:local/selinux/::' -e 's:local/::' ${S}/policy/seuser.fc + + # ensure install -Z isn't used + sed -i -e 's,-Z system_u:object_r:seuser_exec_t,,g' ${S}/seuser/Makefile + sed -i -e 's,-Z system_u:object_r:seuser_conf_t,,g' ${S}/seuser/Makefile + sed -i -e 's,-Z system_u:object_r:policy_src_t,,g' ${S}/seuser/Makefile +} + +src_compile() { + cd ${S} + + # build command line tools + make all-nogui || die "command line tools compile failed" + + if use X; then + make apol sepcut seuserx \ + || die "apol, sepcut, or seuserx compile failed" + + if use gtk; then + make seaudit || die "seaudit compile failed." + fi + + fi +} + +src_install() { + cd ${S} + + dodoc COPYING ChangeLog-setools README + + # some of the Makefiles are broken, and will fail + # if ${D}/usr/bin is nonexistant + dodir /usr/bin + + # command line tools + make DESTDIR=${D} install-secmds \ + || die "secmds install failed." + + if use X; then + # graphical tools + + make DESTDIR=${D} install-apol install-sepcut \ + || die "apol and sepcut install failed." + + if use gtk; then + make DESTDIR=${D} install-seaudit \ + || die "seaudit install failed." + fi + fi + + if use selinux; then + if use X; then + make DESTDIR=${D} install-seuserx \ + || die "seuserx install failed." + else + make DESTDIR=${D} install-seuser \ + || die "seuser install failed." + fi + + insinto ${POLICYDIR}/domains/program + doins ${S}/policy/seuser.te + insinto ${POLICYDIR}/file_contexts/program + doins ${S}/policy/seuser.fc + fi +} + +pkg_postinst() { + einfo "Installed tools:" + einfo " " + einfo "seinfo" + einfo "sesearch" + if use X; then + einfo "apol" + einfo "sepcut" + use gtk && einfo "seaudit" + fi + if use selinux; then + einfo "seuser" + use X && einfo "seuserx" + einfo "seuseradd" + einfo "seuserdel" + einfo "seusermod" + einfo " " + einfo "A policy for the seuser program has been installed into" + einfo "${POLICYDIR}. Please reload your policy at relabel" + einfo "setools: rlpkg setools" + fi +} |