| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.1.8.ebuild,v 1.3 2012/11/17 16:56:46 swift Exp $
|
| 4 |
|
| 5 |
EAPI="2"
|
| 6 |
|
| 7 |
inherit multilib toolchain-funcs eutils
|
| 8 |
|
| 9 |
DESCRIPTION="SELinux binary policy representation library"
|
| 10 |
HOMEPAGE="http://userspace.selinuxproject.org"
|
| 11 |
SRC_URI="http://userspace.selinuxproject.org/releases/20120924/${P}.tar.gz
|
| 12 |
http://dev.gentoo.org/~swift/patches/${PN}/patchbundle-${P}-r1.tar.gz"
|
| 13 |
|
| 14 |
LICENSE="GPL-2"
|
| 15 |
SLOT="0"
|
| 16 |
KEYWORDS="~amd64 ~x86"
|
| 17 |
IUSE=""
|
| 18 |
|
| 19 |
DEPEND=""
|
| 20 |
RDEPEND=""
|
| 21 |
|
| 22 |
# tests are not meant to be run outside of the
|
| 23 |
# full SELinux userland repo
|
| 24 |
RESTRICT="test"
|
| 25 |
|
| 26 |
src_prepare() {
|
| 27 |
EPATCH_MULTI_MSG="Applying libsepol patches ... " \
|
| 28 |
EPATCH_SUFFIX="patch" \
|
| 29 |
EPATCH_SOURCE="${WORKDIR}/gentoo-patches" \
|
| 30 |
EPATCH_FORCE="yes" \
|
| 31 |
epatch
|
| 32 |
|
| 33 |
# fix up paths for multilib
|
| 34 |
sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" src/Makefile \
|
| 35 |
|| die "Fix for multilib LIBDIR failed."
|
| 36 |
sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" src/Makefile \
|
| 37 |
|| die "Fix for multilib SHLIBDIR failed."
|
| 38 |
|
| 39 |
epatch_user
|
| 40 |
}
|
| 41 |
|
| 42 |
src_compile() {
|
| 43 |
tc-export RANLIB;
|
| 44 |
emake AR="$(tc-getAR)" CC="$(tc-getCC)" || die
|
| 45 |
}
|
| 46 |
|
| 47 |
src_install() {
|
| 48 |
emake DESTDIR="${D}" install || die
|
| 49 |
}
|