sys-boot/plymouth: Don't run eautoreconf in src_configure (QA fix).
authorLars Wendler <polynomial-c@gentoo.org>
Tue, 27 Feb 2018 13:41:39 +0000 (14:41 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Tue, 27 Feb 2018 15:03:10 +0000 (16:03 +0100)
Converted myconf variable in an array.

Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/7299

sys-boot/plymouth/plymouth-0.9.3-r1.ebuild
sys-boot/plymouth/plymouth-0.9.3.ebuild
sys-boot/plymouth/plymouth-9999.ebuild

index d73c2b13a9f564ce3fb06cacb3795f459da8155c..07707fbd471bc6a223a43eac8cbf599bb7cde55b 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -52,23 +52,28 @@ PATCHES=(
        "${FILESDIR}"/0.9.3-glibc-sysmacros.patch
 )
 
-src_configure() {
-       local myconf
-       myconf="--with-system-root-install=no
-       --localstatedir=/var
-       --without-rhgb-compat-link
-       --enable-documentation
-       --enable-systemd-integration
-       --with-systemdunitdir="$(systemd_get_systemunitdir)"
-       $(use_enable !static-libs shared)
-       $(use_enable static-libs static)
-       $(use_enable debug tracing)
-       $(use_enable gtk gtk)
-       $(use_enable libkms drm)
-       $(use_enable pango)
-       $(use_enable gdm gdm-transition)"
+src_prepare() {
+       default
        eautoreconf
-       econf ${myconf}
+}
+
+src_configure() {
+       local myconf=(
+               --with-system-root-install=no
+               --localstatedir=/var
+               --without-rhgb-compat-link
+               --enable-documentation
+               --enable-systemd-integration
+               --with-systemdunitdir="$(systemd_get_systemunitdir)"
+               $(use_enable !static-libs shared)
+               $(use_enable static-libs static)
+               $(use_enable debug tracing)
+               $(use_enable gtk gtk)
+               $(use_enable libkms drm)
+               $(use_enable pango)
+               $(use_enable gdm gdm-transition)
+       )
+       econf "${myconf[@]}"
 }
 
 src_install() {
index ea9aa1bd7d6b91545e8d28b8b73297229f093659..75326f75a37948e9c6c800cc63735efe8b5b2606 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -49,22 +49,27 @@ DOC_CONTENTS="
 PATCHES=(
 )
 
-src_configure() {
-       local myconf
-       myconf="--with-system-root-install=no
-       --localstatedir=/var
-       --without-rhgb-compat-link
-       --enable-systemd-integration
-       --with-systemdunitdir="$(systemd_get_systemunitdir)"
-       $(use_enable !static-libs shared)
-       $(use_enable static-libs static)
-       $(use_enable debug tracing)
-       $(use_enable gtk gtk)
-       $(use_enable libkms drm)
-       $(use_enable pango)
-       $(use_enable gdm gdm-transition)"
+src_prepare() {
+       default
        eautoreconf
-       econf ${myconf}
+}
+
+src_configure() {
+       local myconf=(
+               --with-system-root-install=no
+               --localstatedir=/var
+               --without-rhgb-compat-link
+               --enable-systemd-integration
+               --with-systemdunitdir="$(systemd_get_systemunitdir)"
+               $(use_enable !static-libs shared)
+               $(use_enable static-libs static)
+               $(use_enable debug tracing)
+               $(use_enable gtk gtk)
+               $(use_enable libkms drm)
+               $(use_enable pango)
+               $(use_enable gdm gdm-transition)
+       )
+       econf "${myconf[@]}"
 }
 
 src_install() {
index 49ce1012fe830df002c616fa0f7908f8a2f7d31b..375f98aabb346f6224d6bda974eca23c8e13c952 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -50,22 +50,27 @@ PATCHES=(
        "${FILESDIR}"/0.9.3-glibc-sysmacros.patch
 )
 
-src_configure() {
-       local myconf
-       myconf="--with-system-root-install=no
-       --localstatedir=/var
-       --without-rhgb-compat-link
-       --enable-systemd-integration
-       --with-systemdunitdir="$(systemd_get_systemunitdir)"
-       $(use_enable !static-libs shared)
-       $(use_enable static-libs static)
-       $(use_enable debug tracing)
-       $(use_enable gtk gtk)
-       $(use_enable libkms drm)
-       $(use_enable pango)
-       $(use_enable gdm gdm-transition)"
+src_prepare() {
+       default
        eautoreconf
-       econf ${myconf}
+}
+
+src_configure() {
+       local myconf=(
+               --with-system-root-install=no
+               --localstatedir=/var
+               --without-rhgb-compat-link
+               --enable-systemd-integration
+               --with-systemdunitdir="$(systemd_get_systemunitdir)"
+               $(use_enable !static-libs shared)
+               $(use_enable static-libs static)
+               $(use_enable debug tracing)
+               $(use_enable gtk gtk)
+               $(use_enable libkms drm)
+               $(use_enable pango)
+               $(use_enable gdm gdm-transition)
+       )
+       econf "${myconf[@]}"
 }
 
 src_install() {