diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2011-02-05 11:18:03 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2011-02-05 11:18:03 +0000 |
commit | 5937490c4dec62ed6518efa8517f1d3e40390351 (patch) | |
tree | 5354efdbfaa307b1f247b3fd1f8a95adbdc6b04e /sys-libs/libsepol | |
parent | New upstream release. (diff) | |
download | historical-5937490c4dec62ed6518efa8517f1d3e40390351.tar.gz historical-5937490c4dec62ed6518efa8517f1d3e40390351.tar.bz2 historical-5937490c4dec62ed6518efa8517f1d3e40390351.zip |
New upstream release.
Package-Manager: portage-2.1.9.25/cvs/Linux x86_64
Diffstat (limited to 'sys-libs/libsepol')
-rw-r--r-- | sys-libs/libsepol/ChangeLog | 10 | ||||
-rw-r--r-- | sys-libs/libsepol/libsepol-2.0.41.ebuild | 40 |
2 files changed, 48 insertions, 2 deletions
diff --git a/sys-libs/libsepol/ChangeLog b/sys-libs/libsepol/ChangeLog index 96f72a0f5d27..d561b1754b0f 100644 --- a/sys-libs/libsepol/ChangeLog +++ b/sys-libs/libsepol/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/libsepol -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.35 2009/09/23 21:16:53 patrick Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.36 2011/02/05 11:18:03 blueness Exp $ + +*libsepol-2.0.41 (05 Feb 2011) + + 05 Feb 2011; Anthony G. Basile <blueness@gentoo.org> + +libsepol-2.0.41.ebuild: + New upstream release. 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> libsepol-2.0.32.ebuild, libsepol-2.0.37.ebuild: diff --git a/sys-libs/libsepol/libsepol-2.0.41.ebuild b/sys-libs/libsepol/libsepol-2.0.41.ebuild new file mode 100644 index 000000000000..84010f0279d1 --- /dev/null +++ b/sys-libs/libsepol/libsepol-2.0.41.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.0.41.ebuild,v 1.1 2011/02/05 11:18:03 blueness Exp $ + +IUSE="" + +inherit multilib eutils + +DESCRIPTION="SELinux binary policy representation library" +HOMEPAGE="http://userspace.selinuxproject.org" +SRC_URI="http://userspace.selinuxproject.org/releases/20100525/devel/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +RDEPEND="" + +# tests are not meant to be run outside of the +# full SELinux userland repo +RESTRICT="test" + +src_unpack() { + unpack ${A} + cd "${S}" + + # 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 +} |