commit: c43f6cb62d492c4f9a7d0e04abdc9d5d007a48be
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 13 20:25:41 2018 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue Feb 13 20:25:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c43f6cb6
sys-libs/gwenhywfar: Do not run configuration in src_prepare() (bug #647478
again).
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sys-libs/gwenhywfar/gwenhywfar-4.19.0.ebuild | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/sys-libs/gwenhywfar/gwenhywfar-4.19.0.ebuild
b/sys-libs/gwenhywfar/gwenhywfar-4.19.0.ebuild
index 4c916a73918..6883b65fbc3 100644
--- a/sys-libs/gwenhywfar/gwenhywfar-4.19.0.ebuild
+++ b/sys-libs/gwenhywfar/gwenhywfar-4.19.0.ebuild
@@ -4,7 +4,7 @@
EAPI=6
MY_P="${P/_beta/beta}"
-inherit autotools qmake-utils
+inherit qmake-utils
DESCRIPTION="A multi-platform helper library for other libraries"
HOMEPAGE="https://www.aquamaniac.de/aqbanking/"
@@ -66,16 +66,14 @@ RESTRICT="test"
S="${WORKDIR}/${MY_P}"
-src_prepare() {
+src_configure() {
disableQtModule() {
local module
for module in ${@}; do
- sed -e "/qtHaveModule(${module})/s/^/#DONT/" -i
m4/ax_have_qt.m4 || die
+ sed -e "/qtHaveModule(${module})/s|^|#DONT|" -i
configure || die
done
}
- default
-
use designer || disableQtModule designer uitools
use qml || disableQtModule qml qmltest
use sensors || disableQtModule sensors
@@ -83,10 +81,6 @@ src_prepare() {
use test || disableQtModule testlib
use webkit || disableQtModule webkit webkitwidgets
- eautoreconf
-}
-
-src_configure() {
local guis=()
use fox && guis+=( fox16 )
use gtk && guis+=( gtk2 )