blob: a3d5ae99f507b618d4f95a1e71e080f4c08be23a (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.1.9-r1.ebuild,v 1.2 2012/06/26 05:03:37 floppym Exp $
EAPI="4"
PYTHON_DEPEND="python? *"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython *-pypy-*"
inherit multilib python toolchain-funcs eutils
SEPOL_VER="2.1.4"
DESCRIPTION="SELinux userland library"
HOMEPAGE="http://userspace.selinuxproject.org"
SRC_URI="http://userspace.selinuxproject.org/releases/20120216/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="python ruby"
RDEPEND=">=sys-libs/libsepol-${SEPOL_VER}
ruby? ( dev-lang/ruby )"
DEPEND="${RDEPEND}
ruby? ( dev-lang/swig )
python? ( dev-lang/swig )"
pkg_setup() {
if use python; then
python_pkg_setup
fi
}
src_prepare() {
# 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."
epatch "${FILESDIR}/${P}-mountsys.patch"
}
src_compile() {
emake AR="$(tc-getAR)" CC="$(tc-getCC)" LDFLAGS="-fPIC ${LDFLAGS}" all || die
if use python; then
python_copy_sources src
building() {
emake CC="$(tc-getCC)" PYLIBVER="python$(python_get_version)" PYPREFIX="python-$(python_get_version)" LDFLAGS="-fPIC ${LDFLAGS}" pywrap
}
python_execute_function -s --source-dir src building
fi
if use ruby; then
emake CC="$(tc-getCC)" rubywrap || die
fi
}
src_install() {
emake DESTDIR="${D}" install || die
if use python; then
installation() {
emake DESTDIR="${D}" PYLIBVER="python$(python_get_version)" PYPREFIX="python-$(python_get_version)" install-pywrap
}
python_execute_function -s --source-dir src installation
fi
if use ruby; then
emake DESTDIR="${D}" install-rubywrap || die
fi
}
pkg_postinst() {
if use python; then
python_mod_optimize selinux
fi
}
pkg_postrm() {
if use python; then
python_mod_cleanup selinux
fi
}
|