commit: 86421caa7739259ece1e817e40edb33f98df6e77
Author: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 14:03:41 2015 +0000
Commit: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 14:03:41 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86421caa
net-wireless/gr-osmosdr: fix building with USE="-python"
python_fix_shebang now dies when the directory doesn't exist
Package-Manager: portage-2.2.24
net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20150730.ebuild | 4 +++-
net-wireless/gr-osmosdr/gr-osmosdr-9999.ebuild | 6 ++++--
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20150730.ebuild
b/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20150730.ebuild
index dd7b006..cb99ab8 100644
--- a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20150730.ebuild
+++ b/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20150730.ebuild
@@ -66,5 +66,7 @@ src_configure() {
src_install() {
cmake-utils_src_install
- python_fix_shebang "${ED}"/usr/bin
+ if use python; then
+ python_fix_shebang "${ED}"/usr/bin
+ fi
}
diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-9999.ebuild
b/net-wireless/gr-osmosdr/gr-osmosdr-9999.ebuild
index fb14eb8..346b5cc 100644
--- a/net-wireless/gr-osmosdr/gr-osmosdr-9999.ebuild
+++ b/net-wireless/gr-osmosdr/gr-osmosdr-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -66,5 +66,7 @@ src_configure() {
src_install() {
cmake-utils_src_install
- python_fix_shebang "${ED}"/usr/bin
+ if use python; then
+ python_fix_shebang "${ED}"/usr/bin
+ fi
}