diff options
Diffstat (limited to 'sys-libs/libsepol/libsepol-1.6.ebuild')
-rw-r--r-- | sys-libs/libsepol/libsepol-1.6.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sys-libs/libsepol/libsepol-1.6.ebuild b/sys-libs/libsepol/libsepol-1.6.ebuild new file mode 100644 index 000000000000..cb227fe99385 --- /dev/null +++ b/sys-libs/libsepol/libsepol-1.6.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.6.ebuild,v 1.1 2005/06/25 23:33:57 pebenito Exp $ + +IUSE="" + +inherit multilib + +DESCRIPTION="SELinux binary 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="~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 +} |