diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2006-10-05 06:23:13 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2006-10-05 06:23:13 +0000 |
commit | e6cf96fe337093ab3496fef7267e5f7d11554d26 (patch) | |
tree | aaa3dd34f51585981548d14600468dd47cd07f8c | |
parent | mask svn snapshot selinux toolchain for old policy (diff) | |
download | historical-e6cf96fe337093ab3496fef7267e5f7d11554d26.tar.gz historical-e6cf96fe337093ab3496fef7267e5f7d11554d26.tar.bz2 historical-e6cf96fe337093ab3496fef7267e5f7d11554d26.zip |
Add SVN snapshot.
Package-Manager: portage-2.1.2_pre2-r2
-rw-r--r-- | sys-libs/libselinux/ChangeLog | 8 | ||||
-rw-r--r-- | sys-libs/libselinux/files/digest-libselinux-1.30.29 | 3 | ||||
-rw-r--r-- | sys-libs/libselinux/libselinux-1.30.29.ebuild | 57 | ||||
-rw-r--r-- | sys-libs/libsemanage/ChangeLog | 8 | ||||
-rw-r--r-- | sys-libs/libsemanage/files/digest-libsemanage-1.6.17 | 3 | ||||
-rw-r--r-- | sys-libs/libsemanage/libsemanage-1.6.17.ebuild | 59 | ||||
-rw-r--r-- | sys-libs/libsepol/ChangeLog | 8 | ||||
-rw-r--r-- | sys-libs/libsepol/files/digest-libsepol-1.12.28 | 3 | ||||
-rw-r--r-- | sys-libs/libsepol/libsepol-1.12.28.ebuild | 39 |
9 files changed, 185 insertions, 3 deletions
diff --git a/sys-libs/libselinux/ChangeLog b/sys-libs/libselinux/ChangeLog index d1a490c719b2..c4398ce18bed 100644 --- a/sys-libs/libselinux/ChangeLog +++ b/sys-libs/libselinux/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/libselinux # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.48 2006/07/31 01:23:47 pebenito Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/ChangeLog,v 1.49 2006/10/05 06:21:38 pebenito Exp $ + +*libselinux-1.30.29 (05 Oct 2006) + + 05 Oct 2006; Chris PeBenito <pebenito@gentoo.org> + +libselinux-1.30.29.ebuild: + Add SVN snapshot. 31 Jul 2006; Chris PeBenito <pebenito@gentoo.org> libselinux-1.30.ebuild: Mark stable, long overdue. diff --git a/sys-libs/libselinux/files/digest-libselinux-1.30.29 b/sys-libs/libselinux/files/digest-libselinux-1.30.29 new file mode 100644 index 000000000000..59ccdd6f198b --- /dev/null +++ b/sys-libs/libselinux/files/digest-libselinux-1.30.29 @@ -0,0 +1,3 @@ +MD5 c5101d0b2effaa2015f22ad6ce845aca libselinux-1.30.29.tgz 268332 +RMD160 aade1f2878f3110795657627038531c299142b14 libselinux-1.30.29.tgz 268332 +SHA256 c74e9febea0cc100d298fc66ff3e276873bae5f905002c773898d5cc88352199 libselinux-1.30.29.tgz 268332 diff --git a/sys-libs/libselinux/libselinux-1.30.29.ebuild b/sys-libs/libselinux/libselinux-1.30.29.ebuild new file mode 100644 index 000000000000..718d8130c0ab --- /dev/null +++ b/sys-libs/libselinux/libselinux-1.30.29.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-1.30.29.ebuild,v 1.1 2006/10/05 06:21:38 pebenito Exp $ + +IUSE="" + +inherit eutils multilib python + +#BUGFIX_PATCH="${FILESDIR}/libselinux-1.30.3.diff" + +SEPOL_VER="1.12.28" + +DESCRIPTION="SELinux userland library" +HOMEPAGE="http://www.nsa.gov/selinux" +SRC_URI="http://www.nsa.gov/selinux/archives/${P}.tgz" +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86" + +DEPEND="=sys-libs/libsepol-${SEPOL_VER}*" + +src_unpack() { + unpack ${A} + cd ${S} + + [ ! -z "${BUGFIX_PATCH}" ] && epatch "${BUGFIX_PATCH}" + + # fix up paths for multilib + sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" ${S}/src/Makefile \ + || die "Fix for multilib LIBDIR failed." + sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" ${S}/src/Makefile \ + || die "Fix for multilib SHLIBDIR failed." +} + +src_compile() { + python_version + emake LDFLAGS="-fPIC ${LDFLAGS}" all || die + emake PYLIBVER="python${PYVER}" LDFLAGS="-fPIC ${LDFLAGS}" pywrap || die + + # add compatability aliases to swig wrapper + cat ${FILESDIR}/compat.py >> ${S}/src/selinux.py || die +} + +src_install() { + python_version + make DESTDIR="${D}" PYLIBVER="python${PYVER}" install install-pywrap || die +} + +pkg_postinst() { + python_version + python_mod_optimize ${ROOT}usr/lib/python${PYVER}/site-packages +} + +pkg_postrm() { + python_version + python_mod_cleanup ${ROOT}usr/lib/python${PYVER}/site-packages +} diff --git a/sys-libs/libsemanage/ChangeLog b/sys-libs/libsemanage/ChangeLog index 366f3b28333c..05fb07feffc0 100644 --- a/sys-libs/libsemanage/ChangeLog +++ b/sys-libs/libsemanage/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/libsemanage # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsemanage/ChangeLog,v 1.10 2006/07/31 01:27:00 pebenito Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsemanage/ChangeLog,v 1.11 2006/10/05 06:23:13 pebenito Exp $ + +*libsemanage-1.6.17 (05 Oct 2006) + + 05 Oct 2006; Chris PeBenito <pebenito@gentoo.org> + +libsemanage-1.6.17.ebuild: + Add SVN snapshot. 31 Jul 2006; Chris PeBenito <pebenito@gentoo.org> libsemanage-1.6.ebuild: Mark stable, long overdue. diff --git a/sys-libs/libsemanage/files/digest-libsemanage-1.6.17 b/sys-libs/libsemanage/files/digest-libsemanage-1.6.17 new file mode 100644 index 000000000000..8959f0aca7e0 --- /dev/null +++ b/sys-libs/libsemanage/files/digest-libsemanage-1.6.17 @@ -0,0 +1,3 @@ +MD5 a732f97a30c4f31a929c93dba84bbbf9 libsemanage-1.6.17.tgz 159948 +RMD160 efe598f95cc1a27e00a9d1f6d4d5ebee92fd0fcb libsemanage-1.6.17.tgz 159948 +SHA256 8b251960f6ee93ebc489092fbd8bd9e8e5648d8a8dcd3047069a754caf4390a3 libsemanage-1.6.17.tgz 159948 diff --git a/sys-libs/libsemanage/libsemanage-1.6.17.ebuild b/sys-libs/libsemanage/libsemanage-1.6.17.ebuild new file mode 100644 index 000000000000..39067ca86e59 --- /dev/null +++ b/sys-libs/libsemanage/libsemanage-1.6.17.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsemanage/libsemanage-1.6.17.ebuild,v 1.1 2006/10/05 06:23:13 pebenito Exp $ + +IUSE="" + +inherit eutils multilib python + +# BUGFIX_PATCH="${FILESDIR}/libsemanage-1.6.6.diff" + +SEPOL_VER="1.12.28" +SELNX_VER="1.30.29" + +DESCRIPTION="SELinux kernel and policy management library" +HOMEPAGE="http://www.nsa.gov/selinux" +SRC_URI="http://www.nsa.gov/selinux/archives/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86" + +DEPEND="=sys-libs/libsepol-${SEPOL_VER}* + =sys-libs/libselinux-${SELNX_VER}*" + +src_unpack() { + unpack ${A} + cd ${S} + + [ ! -z "${BUGFIX_PATCH}" ] && epatch "${BUGFIX_PATCH}" + + # fix up paths for multilib + sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" ${S}/src/Makefile \ + || die "Fix for multilib LIBDIR failed." + sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" ${S}/src/Makefile \ + || die "Fix for multilib SHLIBDIR failed." +} + +src_compile() { + python_version + emake PYLIBVER="python${PYVER}" all pywrap || die +} + +src_install() { + python_version + make DESTDIR="${D}" PYLIBVER="python${PYVER}" install install-pywrap + + # remove config file. the appropriate + # policy will install this file. + rm -fR ${D}/etc +} + +pkg_postinst() { + python_version + python_mod_optimize ${ROOT}usr/lib/python${PYVER}/site-packages +} + +pkg_postrm() { + python_version + python_mod_cleanup ${ROOT}usr/lib/python${PYVER}/site-packages +} diff --git a/sys-libs/libsepol/ChangeLog b/sys-libs/libsepol/ChangeLog index 9ae910587ddc..57e20c00d531 100644 --- a/sys-libs/libsepol/ChangeLog +++ b/sys-libs/libsepol/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/libsepol # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.18 2006/07/31 01:22:11 pebenito Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.19 2006/10/05 06:20:17 pebenito Exp $ + +*libsepol-1.12.28 (05 Oct 2006) + + 05 Oct 2006; Chris PeBenito <pebenito@gentoo.org> + +libsepol-1.12.28.ebuild: + Add SVN snapshot. 31 Jul 2006; Chris PeBenito <pebenito@gentoo.org> libsepol-1.12-r1.ebuild: Mark stable, long overdue. diff --git a/sys-libs/libsepol/files/digest-libsepol-1.12.28 b/sys-libs/libsepol/files/digest-libsepol-1.12.28 new file mode 100644 index 000000000000..bbadfb319c44 --- /dev/null +++ b/sys-libs/libsepol/files/digest-libsepol-1.12.28 @@ -0,0 +1,3 @@ +MD5 d872372870ede9de87e54fcfe939c840 libsepol-1.12.28.tgz 379433 +RMD160 08dabd2af59cecee79946bc33f0e5117aa40f2de libsepol-1.12.28.tgz 379433 +SHA256 2a37355ad13d09ae5088930e62fa41e3521b5555a2aff1d5fad1d03604af092d libsepol-1.12.28.tgz 379433 diff --git a/sys-libs/libsepol/libsepol-1.12.28.ebuild b/sys-libs/libsepol/libsepol-1.12.28.ebuild new file mode 100644 index 000000000000..e328e427179a --- /dev/null +++ b/sys-libs/libsepol/libsepol-1.12.28.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-1.12.28.ebuild,v 1.1 2006/10/05 06:20:17 pebenito Exp $ + +IUSE="" + +inherit multilib eutils + +#BUGFIX_PATCH="${FILESDIR}/libsepol-1.12.5.diff" + +DESCRIPTION="SELinux binary policy representation library" +HOMEPAGE="http://www.nsa.gov/selinux" +SRC_URI="http://www.nsa.gov/selinux/archives/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86" + +DEPEND="virtual/libc" + +src_unpack() { + unpack ${A} + cd ${S} + + [ ! -z "$BUGFIX_PATCH" ] && epatch "${BUGFIX_PATCH}" + + # fix up paths for multilib + sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" src/Makefile \ + || die "Fix for multilib LIBDIR failed." + sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" src/Makefile \ + || die "Fix for multilib SHLIBDIR failed." +} + +src_compile() { + emake || die +} + +src_install() { + make DESTDIR="${D}" install +} |