diff options
author | Chris PeBenito <pebenito@gentoo.org> | 2009-08-02 01:13:01 +0000 |
---|---|---|
committer | Chris PeBenito <pebenito@gentoo.org> | 2009-08-02 01:13:01 +0000 |
commit | 2ee9aa639be4dfd07dbb43586e08e41ce8d4fb81 (patch) | |
tree | a14ada7d5c361fa23959b32d60e4c733dd00cae2 /sys-libs/libselinux/libselinux-2.0.85.ebuild | |
parent | new upstream release. (diff) | |
download | gentoo-2-2ee9aa639be4dfd07dbb43586e08e41ce8d4fb81.tar.gz gentoo-2-2ee9aa639be4dfd07dbb43586e08e41ce8d4fb81.tar.bz2 gentoo-2-2ee9aa639be4dfd07dbb43586e08e41ce8d4fb81.zip |
new upstream release.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/libselinux/libselinux-2.0.85.ebuild')
-rw-r--r-- | sys-libs/libselinux/libselinux-2.0.85.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/sys-libs/libselinux/libselinux-2.0.85.ebuild b/sys-libs/libselinux/libselinux-2.0.85.ebuild new file mode 100644 index 000000000000..2f0062d5d509 --- /dev/null +++ b/sys-libs/libselinux/libselinux-2.0.85.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libselinux/libselinux-2.0.85.ebuild,v 1.1 2009/08/02 01:13:01 pebenito Exp $ + +IUSE="ruby" +RUBY_OPTIONAL="yes" + +inherit eutils multilib python ruby + +#BUGFIX_PATCH="${FILESDIR}/libselinux-1.30.3.diff" + +SEPOL_VER="2.0" + +DESCRIPTION="SELinux userland library" +HOMEPAGE="http://userspace.selinuxproject.org" +SRC_URI="http://userspace.selinuxproject.org/releases/current/devel/${P}.tar.gz" +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="=sys-libs/libsepol-${SEPOL_VER}* + dev-lang/swig + ruby? ( dev-lang/ruby )" + +RDEPEND="=sys-libs/libsepol-${SEPOL_VER}* + ruby? ( dev-lang/ruby )" + +src_unpack() { + unpack ${A} + cd "${S}" + + [ ! -z "${BUGFIX_PATCH}" ] && epatch "${BUGFIX_PATCH}" + + # 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 LDFLAGS="-fPIC ${LDFLAGS}" all || die + emake PYLIBVER="python${PYVER}" LDFLAGS="-fPIC ${LDFLAGS}" pywrap || die + + if use ruby; then + emake rubywrap || die + fi + + # add compatability aliases to swig wrapper + cat "${FILESDIR}/compat.py" >> "${S}/src/selinux.py" || die +} + +src_install() { + python_version + make DESTDIR="${D}" PYLIBVER="python${PYVER}" install install-pywrap || die + + if use ruby; then + emake DESTDIR="${D}" install-rubywrap || die + fi +} + +pkg_postinst() { + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages +} + +pkg_postrm() { + python_version + python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages +} |