sys-devel/autoconf-wrapper: Don't use bashisms.
authorLars Wendler <polynomial-c@gentoo.org>
Thu, 26 Apr 2018 10:37:11 +0000 (12:37 +0200)
committerLars Wendler <polynomial-c@gentoo.org>
Thu, 26 Apr 2018 10:52:19 +0000 (12:52 +0200)
Closes: https://bugs.gentoo.org/650152
Package-Manager: Portage-2.3.31, Repoman-2.3.9

sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild [moved from sys-devel/autoconf-wrapper/autoconf-wrapper-13.ebuild with 83% similarity]
sys-devel/autoconf-wrapper/files/ac-wrapper-13.sh

similarity index 83%
rename from sys-devel/autoconf-wrapper/autoconf-wrapper-13.ebuild
rename to sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
index f98d5b23afdd462f1a4e6f5820f3fbb9bcfa844c..b1847c7e75a5229e5a116d4a1626103ca40bb083 100644 (file)
@@ -1,6 +1,8 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 inherit multilib
 
 DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
@@ -12,15 +14,15 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
-S=${WORKDIR}
+S="${WORKDIR}"
 
 src_install() {
        exeinto /usr/$(get_libdir)/misc
-       newexe "${FILESDIR}"/ac-wrapper-${PV}.sh ac-wrapper.sh || die
+       newexe "${FILESDIR}"/ac-wrapper-${PV}.sh ac-wrapper.sh
 
        dodir /usr/bin
        local x=
        for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
-               dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x} || die
+               dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
        done
 }
index d4324cf73022c01e08ee16c5c45f0abf23f775bf..d984b4ac33712f0bd03285b5f862af53cd151ff4 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # Based on the ac-wrapper.pl script provided by MandrakeSoft
@@ -155,7 +155,7 @@ if [ "${WANT_AUTOCONF:-2.1}" = "2.1" ] && [ -n "${WANT_AUTOMAKE}" ] ; then
        # is set to an older version, let's do some sanity checks.
        case "${WANT_AUTOMAKE}" in
        1.[456])
-               acfiles=$(ls ac{local,include}.m4 configure.{in,ac} 2>/dev/null)
+               acfiles=$(ls aclocal.m4 acinclude.m4 configure.in configure.ac 2>/dev/null)
                [ -n "${acfiles}" ] && confversion=$(acprereq_version ${acfiles})
 
                [ -z "${confversion}" ] && [ -r "configure" ] \