diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-11-28 10:26:38 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-11-28 11:26:02 +0100 |
commit | 1f477f15f62ef116bd87b90cbe61119db2f3eb47 (patch) | |
tree | 5bf34e186a4bd47f27fc5f6d3bc62bf5918c4cc8 /sys-devel/autoconf/autoconf-9999.ebuild | |
parent | dev-libs/intel-neo: bump to 19.46.14807 (diff) | |
download | gentoo-1f477f15f62ef116bd87b90cbe61119db2f3eb47.tar.gz gentoo-1f477f15f62ef116bd87b90cbe61119db2f3eb47.tar.bz2 gentoo-1f477f15f62ef116bd87b90cbe61119db2f3eb47.zip |
sys-devel/autoconf: Bumped live ebuild to EAPI-7
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-devel/autoconf/autoconf-9999.ebuild')
-rw-r--r-- | sys-devel/autoconf/autoconf-9999.ebuild | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/sys-devel/autoconf/autoconf-9999.ebuild b/sys-devel/autoconf/autoconf-9999.ebuild index f728a1a9f570..22cc7e63dcdb 100644 --- a/sys-devel/autoconf/autoconf-9999.ebuild +++ b/sys-devel/autoconf/autoconf-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://git.savannah.gnu.org/git/autoconf.git" @@ -21,21 +21,23 @@ LICENSE="GPL-3" SLOT="${PV}" IUSE="emacs" -DEPEND=">=sys-devel/m4-1.4.16 +BDEPEND=">=sys-devel/m4-1.4.16 >=dev-lang/perl-5.6" -RDEPEND="${DEPEND} +RDEPEND="${BDEPEND} !~sys-devel/${P}:2.5 >=sys-devel/autoconf-wrapper-13" -[[ ${PV} == "9999" ]] && DEPEND+=" >=sys-apps/texinfo-4.3" +[[ ${PV} == "9999" ]] && BDEPEND+=" >=sys-apps/texinfo-4.3" PDEPEND="emacs? ( app-emacs/autoconf-mode )" src_prepare() { - # Avoid the "dirty" suffix in the git version by generating it - # before we run later stages which might modify source files. - local ver=$(./build-aux/git-version-gen .tarball-version) - echo "${ver}" > .tarball-version || die - - autoreconf -f -i || die + if [[ ${PV} == *9999 ]] ; then + # Avoid the "dirty" suffix in the git version by generating it + # before we run later stages which might modify source files. + local ver=$(./build-aux/git-version-gen .tarball-version) + echo "${ver}" > .tarball-version || die + + autoreconf -f -i || die + fi toolchain-autoconf_src_prepare } |