mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-03 11:58:07 -07:00
sys-boot/plymouth: Don't run eautoreconf in src_configure (QA fix).
Converted myconf variable in an array. Package-Manager: Portage-2.3.24, Repoman-2.3.6 Closes: https://github.com/gentoo/gentoo/pull/7299
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -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() {
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user