diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2005-12-09 00:45:14 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2005-12-09 00:45:14 +0000 |
commit | b68acf3d20b56127e46c65cab234d26b8b259148 (patch) | |
tree | 7638cfda8b40be868337e18655a56689ac33d749 /sys-libs/libsepol/libsepol-1.10.ebuild | |
parent | Stable on alpha. (diff) | |
download | gentoo-2-b68acf3d20b56127e46c65cab234d26b8b259148.tar.gz gentoo-2-b68acf3d20b56127e46c65cab234d26b8b259148.tar.bz2 gentoo-2-b68acf3d20b56127e46c65cab234d26b8b259148.zip |
new upstream release.
(Portage version: 2.0.53)
Diffstat (limited to 'sys-libs/libsepol/libsepol-1.10.ebuild')
-rw-r--r-- | sys-libs/libsepol/libsepol-1.10.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sys-libs/libsepol/libsepol-1.10.ebuild b/sys-libs/libsepol/libsepol-1.10.ebuild new file mode 100644 index 000000000000..5a70d4fc6eae --- /dev/null +++ b/sys-libs/libsepol/libsepol-1.10.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-1.10.ebuild,v 1.1 2005/12/09 00:41:20 pebenito Exp $ + +IUSE="" + +inherit multilib + +DESCRIPTION="SELinux binary policy manipulation library" +HOMEPAGE="http://www.nsa.gov/selinux" +SRC_URI="http://www.nsa.gov/selinux/archives/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~mips" + +DEPEND="virtual/libc" + +src_unpack() { + unpack ${A} + cd ${S} + + sed -i -e "s:-Wall:-Wall ${CFLAGS}:g" src/Makefile \ + || die "src Makefile CFLAGS fix failed." + sed -i -e "s:-Wall:-Wall ${CFLAGS}:g" utils/Makefile \ + || die "utils Makefile CFLAGS fix failed." + + # 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 +} |