blob: f921501167a7383d2a2e7306708db75ac3b3bd5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsemanage/libsemanage-1.4.ebuild,v 1.7 2006/02/22 16:58:28 spb Exp $
IUSE=""
SEPOL_VER="1.10"
SELNX_VER="1.28"
inherit eutils multilib python
DESCRIPTION="SELinux kernel and 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="alpha amd64 mips ppc sparc x86"
DEPEND="=sys-libs/libsepol-${SEPOL_VER}*
=sys-libs/libselinux-${SELNX_VER}*"
src_unpack() {
unpack ${A}
cd ${S}
# make portage CFLAGS work
sed -i -e "s:-Wall:-Wall ${CFLAGS}:g" ${S}/src/Makefile \
|| die "src Makefile CFLAGS fix failed."
# fix up paths for multilib
sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" ${S}/src/Makefile \
|| die "Fix for multilib LIBDIR failed."
sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" ${S}/src/Makefile \
|| die "Fix for multilib SHLIBDIR failed."
}
src_compile() {
python_version
emake PYLIBVER="python${PYVER}" || die
}
src_install() {
python_version
make DESTDIR="${D}" PYLIBVER="python${PYVER}" install
# remove config file. the appropriate
# policy will install this file.
rm -fR ${D}/etc
}
|