diff options
author | David Seifert <soap@gentoo.org> | 2018-01-18 00:31:18 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-01-18 10:40:32 +0100 |
commit | b0d5d45b9cecba5061938be67f3610edd3820c9b (patch) | |
tree | 510e7b54e2b0d100a84d56879712a2b38f11ff7a /eclass/toolchain-autoconf.eclass | |
parent | dev-vcs/git: Bump to version 2.16.0. Removed old. (diff) | |
download | gentoo-b0d5d45b9cecba5061938be67f3610edd3820c9b.tar.gz gentoo-b0d5d45b9cecba5061938be67f3610edd3820c9b.tar.bz2 gentoo-b0d5d45b9cecba5061938be67f3610edd3820c9b.zip |
toolchain-autoconf.eclass: Modernise
* Add EAPI blacklist
Closes: https://github.com/gentoo/gentoo/pull/6893
Diffstat (limited to 'eclass/toolchain-autoconf.eclass')
-rw-r--r-- | eclass/toolchain-autoconf.eclass | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/eclass/toolchain-autoconf.eclass b/eclass/toolchain-autoconf.eclass index 59057b8d6ebb..18276f0b49c5 100644 --- a/eclass/toolchain-autoconf.eclass +++ b/eclass/toolchain-autoconf.eclass @@ -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 # @ECLASS: toolchain-autoconf.eclass @@ -9,16 +9,24 @@ # This eclass contains the common phase functions migrated from # sys-devel/autoconf eblits. -if [[ -z ${_TOOLCHAIN_AUTOCONF_ECLASS} ]]; then +case ${EAPI:-0} in + [0-5]) + die "${ECLASS} is banned in EAPI ${EAPI:-0}" + ;; + 6) + ;; + *) + die "Unknown EAPI ${EAPI:-0}" + ;; +esac -inherit eutils +if [[ -z ${_TOOLCHAIN_AUTOCONF_ECLASS} ]]; then EXPORT_FUNCTIONS src_prepare src_configure src_install toolchain-autoconf_src_prepare() { find -name Makefile.in -exec sed -i '/^pkgdatadir/s:$:-@VERSION@:' {} + || die - - [[ ${#PATCHES[@]} -gt 0 ]] && epatch "${PATCHES[@]}" + default } toolchain-autoconf_src_configure() { |