commit: 54642a7414cafeea79371dea5021cca6a72c13cb
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 23 08:33:04 2017 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 11:14:30 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54642a74
sys-apps/selinux-python: update live ebuild
need to pass the path to libsepol.a
Package-Manager: portage-2.3.3
sys-apps/selinux-python/selinux-python-9999.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/sys-apps/selinux-python/selinux-python-9999.ebuild
b/sys-apps/selinux-python/selinux-python-9999.ebuild
index 556173cabf..84a858b5e4 100644
--- a/sys-apps/selinux-python/selinux-python-9999.ebuild
+++ b/sys-apps/selinux-python/selinux-python-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -62,9 +62,10 @@ src_compile() {
src_install() {
installation() {
- emake -C "${BUILD_DIR}" DESTDIR="${D}" \
+ emake -C "${BUILD_DIR}" \
+ DESTDIR="${D}" \
LIBDIR="\$(PREFIX)/$(get_libdir)" \
- PYLIBVER="${EPYTHON}" \
+ LIBSEPOLA="/usr/$(get_libdir)/libsepol.a" \
install
python_optimize
}