| 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.4-r1.ebuild,v 1.2 2012/04/29 10:07:40 swift Exp $
|
| 4 |
|
| 5 |
EAPI="4"
|
| 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/20120216/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="amd64 x86"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
# tests are not meant to be run outside of the
|
| 19 |
# full SELinux userland repo
|
| 20 |
RESTRICT="test"
|
| 21 |
|
| 22 |
src_prepare() {
|
| 23 |
# fix up paths for multilib
|
| 24 |
sed -i \
|
| 25 |
-e "/^LIBDIR/s/lib/$(get_libdir)/" \
|
| 26 |
-e "/^SHLIBDIR/s/lib/$(get_libdir)/" \
|
| 27 |
-e 's:\<ranlib\>:$(RANLIB):' \
|
| 28 |
src/Makefile || die
|
| 29 |
epatch "${FILESDIR}/libsepol-2.1.4-fix_role_fix_callback.patch"
|
| 30 |
tc-export AR CC RANLIB
|
| 31 |
}
|