blob: 2248ca7260a3cb2eabfaa7522cbe9c1e0f7ff4c1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-1.28.ebuild,v 1.7 2006/02/19 22:00:24 kumba Exp $
IUSE=""
SEPOL_VER="1.10"
inherit eutils multilib python
DESCRIPTION="SELinux userland library"
HOMEPAGE="http://www.nsa.gov/selinux"
SRC_URI="http://www.nsa.gov/selinux/archives/${P}.tgz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 mips ppc sparc x86"
DEPEND="=sys-libs/libsepol-${SEPOL_VER}*
dev-lang/swig"
src_unpack() {
unpack ${A}
cd ${S}
# 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}" LDFLAGS="-fPIC ${LDFLAGS}" || die
}
src_install() {
python_version
make DESTDIR="${D}" PYLIBVER="python${PYVER}" install
}
|