| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-python/sepolgen/sepolgen-1.1.5-r2.ebuild,v 1.2 2012/06/26 04:57:47 floppym Exp $ |
| 4 |
|
| 5 |
EAPI="3" |
| 6 |
PYTHON_DEPEND="*" |
| 7 |
SUPPORT_PYTHON_ABIS="1" |
| 8 |
RESTRICT_PYTHON_ABIS="*-jython *-pypy-*" |
| 9 |
|
| 10 |
inherit python eutils |
| 11 |
|
| 12 |
DESCRIPTION="SELinux policy generation library" |
| 13 |
HOMEPAGE="http://userspace.selinuxproject.org" |
| 14 |
SRC_URI="http://userspace.selinuxproject.org/releases/20120216/${P}.tar.gz |
| 15 |
http://dev.gentoo.org/~swift/patches/sepolgen/sepolgen-1.1.5-gentoo-r2.tar.gz" |
| 16 |
|
| 17 |
LICENSE="GPL-2" |
| 18 |
SLOT="0" |
| 19 |
KEYWORDS="amd64 x86" |
| 20 |
IUSE="" |
| 21 |
|
| 22 |
DEPEND=">=sys-libs/libselinux-2.0[python] |
| 23 |
app-admin/setools[python]" |
| 24 |
RDEPEND="${DEPEND}" |
| 25 |
|
| 26 |
src_prepare() { |
| 27 |
# fix up default paths to not be RH specific |
| 28 |
sed -i -e 's:/usr/share/selinux/devel:/usr/share/selinux/strict:' \ |
| 29 |
"${S}/src/sepolgen/defaults.py" || die |
| 30 |
sed -i -e 's:/usr/share/selinux/devel:/usr/share/selinux/strict/include:' \ |
| 31 |
"${S}/src/sepolgen/module.py" || die |
| 32 |
|
| 33 |
EPATCH_MULTI_MSG="Applying sepolgen patches ... " \ |
| 34 |
EPATCH_SUFFIX="patch" \ |
| 35 |
EPATCH_SOURCE="${WORKDIR}/gentoo-patches" \ |
| 36 |
EPATCH_FORCE="yes" \ |
| 37 |
epatch |
| 38 |
} |
| 39 |
|
| 40 |
src_compile() { |
| 41 |
: |
| 42 |
} |
| 43 |
|
| 44 |
src_test() { |
| 45 |
if has_version sec-policy/selinux-base-policy; then |
| 46 |
python_src_test |
| 47 |
else |
| 48 |
ewarn "Sepolgen requires sec-policy/selinux-base-policy to run tests." |
| 49 |
fi |
| 50 |
} |
| 51 |
|
| 52 |
src_install() { |
| 53 |
installation() { |
| 54 |
emake DESTDIR="${D}" PYTHONLIBDIR="$(python_get_sitedir)" install |
| 55 |
} |
| 56 |
python_execute_function installation |
| 57 |
} |
| 58 |
|
| 59 |
pkg_postinst() { |
| 60 |
python_mod_optimize sepolgen |
| 61 |
} |
| 62 |
|
| 63 |
pkg_postrm() { |
| 64 |
python_mod_cleanup sepolgen |
| 65 |
} |