| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
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 $ |
3 | # $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.1.4-r1.ebuild,v 1.3 2012/10/03 20:34:13 vapier Exp $ |
| 4 | |
4 | |
| 5 | EAPI="2" |
5 | EAPI="4" |
| 6 | |
6 | |
| 7 | inherit multilib toolchain-funcs eutils |
7 | inherit multilib toolchain-funcs eutils |
| 8 | |
8 | |
| 9 | DESCRIPTION="SELinux binary policy representation library" |
9 | DESCRIPTION="SELinux binary policy representation library" |
| 10 | HOMEPAGE="http://userspace.selinuxproject.org" |
10 | HOMEPAGE="http://userspace.selinuxproject.org" |
| … | |
… | |
| 13 | LICENSE="GPL-2" |
13 | LICENSE="GPL-2" |
| 14 | SLOT="0" |
14 | SLOT="0" |
| 15 | KEYWORDS="amd64 x86" |
15 | KEYWORDS="amd64 x86" |
| 16 | IUSE="" |
16 | IUSE="" |
| 17 | |
17 | |
| 18 | DEPEND="" |
|
|
| 19 | RDEPEND="" |
|
|
| 20 | |
|
|
| 21 | # tests are not meant to be run outside of the |
18 | # tests are not meant to be run outside of the |
| 22 | # full SELinux userland repo |
19 | # full SELinux userland repo |
| 23 | RESTRICT="test" |
20 | RESTRICT="test" |
| 24 | |
21 | |
| 25 | src_prepare() { |
22 | src_prepare() { |
| 26 | # fix up paths for multilib |
23 | # fix up paths for multilib |
|
|
24 | sed -i \ |
| 27 | sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" src/Makefile \ |
25 | -e "/^LIBDIR/s/lib/$(get_libdir)/" \ |
| 28 | || die "Fix for multilib LIBDIR failed." |
|
|
| 29 | sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" src/Makefile \ |
26 | -e "/^SHLIBDIR/s/lib/$(get_libdir)/" \ |
| 30 | || die "Fix for multilib SHLIBDIR failed." |
27 | -e 's:\<ranlib\>:$(RANLIB):' \ |
|
|
28 | src/Makefile || die |
| 31 | epatch "${FILESDIR}/libsepol-2.1.4-fix_role_fix_callback.patch" |
29 | epatch "${FILESDIR}/libsepol-2.1.4-fix_role_fix_callback.patch" |
|
|
30 | tc-export AR CC RANLIB |
| 32 | } |
31 | } |
| 33 | |
|
|
| 34 | src_compile() { |
|
|
| 35 | emake AR="$(tc-getAR)" CC="$(tc-getCC)" || die |
|
|
| 36 | } |
|
|
| 37 | |
|
|
| 38 | src_install() { |
|
|
| 39 | emake DESTDIR="${D}" install || die |
|
|
| 40 | } |
|
|