Convert the usage of eblits in sys-devel/autoconf into an equivalent
eclass. This makes the ebuilds more readable, more predictable and fixes
compliance with stricter versions of the package manager (i.e. a future
release of Portage).
---
 eclass/toolchain-autoconf.eclass                   | 70 ++++++++++++++++++++++
 sys-devel/autoconf/autoconf-2.13.ebuild            | 10 +---
 sys-devel/autoconf/autoconf-2.59-r7.ebuild         | 11 +---
 sys-devel/autoconf/autoconf-2.61-r2.ebuild         | 11 +---
 sys-devel/autoconf/autoconf-2.62-r1.ebuild         | 11 +---
 sys-devel/autoconf/autoconf-2.63-r1.ebuild         | 11 +---
 sys-devel/autoconf/autoconf-2.64.ebuild            | 11 +---
 sys-devel/autoconf/autoconf-2.65-r1.ebuild         | 11 +---
 sys-devel/autoconf/autoconf-2.67.ebuild            | 11 +---
 sys-devel/autoconf/autoconf-2.68.ebuild            | 11 +---
 sys-devel/autoconf/autoconf-2.69-r2.ebuild         | 11 +---
 sys-devel/autoconf/autoconf-9999.ebuild            | 15 ++---
 sys-devel/autoconf/files/eblits/main.eblit         | 47 ---------------
 .../autoconf/files/eblits/src_configure.eblit      | 11 ----
 sys-devel/autoconf/files/eblits/src_install.eblit  | 38 ------------
 sys-devel/autoconf/files/eblits/src_prepare.eblit  |  8 ---
 16 files changed, 100 insertions(+), 198 deletions(-)
 create mode 100644 eclass/toolchain-autoconf.eclass
 delete mode 100644 sys-devel/autoconf/files/eblits/main.eblit
 delete mode 100644 sys-devel/autoconf/files/eblits/src_configure.eblit
 delete mode 100644 sys-devel/autoconf/files/eblits/src_install.eblit
 delete mode 100644 sys-devel/autoconf/files/eblits/src_prepare.eblit

diff --git a/eclass/toolchain-autoconf.eclass b/eclass/toolchain-autoconf.eclass
new file mode 100644
index 000000000000..59057b8d6ebb
--- /dev/null
+++ b/eclass/toolchain-autoconf.eclass
@@ -0,0 +1,70 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# @ECLASS: toolchain-autoconf.eclass
+# @MAINTAINER:
+# <base-sys...@gentoo.org>
+# @BLURB: Common code for sys-devel/autoconf ebuilds
+# @DESCRIPTION:
+# This eclass contains the common phase functions migrated from
+# sys-devel/autoconf eblits.
+
+if [[ -z ${_TOOLCHAIN_AUTOCONF_ECLASS} ]]; then
+
+inherit eutils
+
+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[@]}"
+}
+
+toolchain-autoconf_src_configure() {
+       # Disable Emacs in the build system since it is in a separate package.
+       export EMACS=no
+       econf --program-suffix="-${PV}" || die
+       # econf updates config.{sub,guess} which forces the manpages
+       # to be regenerated which we dont want to do #146621
+       touch man/*.1
+}
+
+# slot the info pages.  do this w/out munging the source so we don't have
+# to depend on texinfo to regen things.  #464146 (among others)
+slot_info_pages() {
+       [[ ${SLOT} == "0" ]] && return
+
+       pushd "${ED}"/usr/share/info >/dev/null || die
+       rm -f dir || die
+
+       # Rewrite all the references to other pages.
+       # before: * aclocal-invocation: (automake)aclocal Invocation.   
Generating aclocal.m4.
+       # after:  * aclocal-invocation v1.13: (automake-1.13)aclocal 
Invocation.   Generating aclocal.m4.
+       local p pages=( *.info ) args=()
+       for p in "${pages[@]/%.info}" ; do
+               args+=(
+                       -e "/START-INFO-DIR-ENTRY/,/END-INFO-DIR-ENTRY/s|: 
(${p})| v${SLOT}&|"
+                       -e "s:(${p}):(${p}-${SLOT}):g"
+               )
+       done
+       sed -i "${args[@]}" * || die
+
+       # Rewrite all the file references, and rename them in the process.
+       local f d
+       for f in * ; do
+               d=${f/.info/-${SLOT}.info}
+               mv "${f}" "${d}" || die
+               sed -i -e "s:${f}:${d}:g" * || die
+       done
+
+       popd >/dev/null || die
+}
+
+toolchain-autoconf_src_install() {
+       default
+       slot_info_pages
+}
+
+_TOOLCHAIN_AUTOCONF_ECLASS=1
+fi
diff --git a/sys-devel/autoconf/autoconf-2.13.ebuild 
b/sys-devel/autoconf/autoconf-2.13.ebuild
index 60f3ef570bb6..e5ea4f482989 100644
--- a/sys-devel/autoconf/autoconf-2.13.ebuild
+++ b/sys-devel/autoconf/autoconf-2.13.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit eutils
+inherit toolchain-autoconf
 
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
@@ -26,12 +26,6 @@ PATCHES=(
        "${FILESDIR}"/${P}-test-fixes.patch #146592
 )
 
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_install()   { eblit-run src_install   ; }
-
 src_configure() {
        touch configure # make sure configure is newer than configure.in
 
diff --git a/sys-devel/autoconf/autoconf-2.59-r7.ebuild 
b/sys-devel/autoconf/autoconf-2.59-r7.ebuild
index dbcbdf9ef005..7eade8183517 100644
--- a/sys-devel/autoconf/autoconf-2.59-r7.ebuild
+++ b/sys-devel/autoconf/autoconf-2.59-r7.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit eutils
+inherit toolchain-autoconf
 
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
@@ -23,10 +23,3 @@ RDEPEND="${DEPEND}
 PATCHES=(
        "${FILESDIR}"/${P}-more-quotes.patch
 )
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-2.61-r2.ebuild 
b/sys-devel/autoconf/autoconf-2.61-r2.ebuild
index 7af545f918e9..e1fedced3204 100644
--- a/sys-devel/autoconf/autoconf-2.61-r2.ebuild
+++ b/sys-devel/autoconf/autoconf-2.61-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit eutils
+inherit toolchain-autoconf
 
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
@@ -24,13 +24,6 @@ PATCHES=(
        "${FILESDIR}"/${P}-GETMNTENT.patch
 )
 
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
-
 src_compile() {
        # From configure output:
        # Parallel builds via `make -jN' do not work.
diff --git a/sys-devel/autoconf/autoconf-2.62-r1.ebuild 
b/sys-devel/autoconf/autoconf-2.62-r1.ebuild
index 30cec8f13d42..574a0af6ce74 100644
--- a/sys-devel/autoconf/autoconf-2.62-r1.ebuild
+++ b/sys-devel/autoconf/autoconf-2.62-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit eutils
+inherit toolchain-autoconf
 
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
@@ -25,10 +25,3 @@ PATCHES=(
        "${FILESDIR}"/${P}-at-keywords.patch
        "${FILESDIR}"/${P}-fix-multiline-string.patch #217976
 )
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-2.63-r1.ebuild 
b/sys-devel/autoconf/autoconf-2.63-r1.ebuild
index 62d7a8200fc5..0df070c98765 100644
--- a/sys-devel/autoconf/autoconf-2.63-r1.ebuild
+++ b/sys-devel/autoconf/autoconf-2.63-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit eutils
+inherit toolchain-autoconf
 
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
@@ -23,10 +23,3 @@ RDEPEND="${DEPEND}
 PATCHES=(
        "${FILESDIR}"/${P}-sh.patch #264303
 )
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-2.64.ebuild 
b/sys-devel/autoconf/autoconf-2.64.ebuild
index d08d4440b413..572f9e3322af 100644
--- a/sys-devel/autoconf/autoconf-2.64.ebuild
+++ b/sys-devel/autoconf/autoconf-2.64.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
+inherit toolchain-autoconf
+
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
 SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
@@ -17,10 +19,3 @@ DEPEND=">=sys-devel/m4-1.4.6
 RDEPEND="${DEPEND}
        !~sys-devel/${P}:2.5
        >=sys-devel/autoconf-wrapper-13"
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-2.65-r1.ebuild 
b/sys-devel/autoconf/autoconf-2.65-r1.ebuild
index ad91592374e2..1354433f9d33 100644
--- a/sys-devel/autoconf/autoconf-2.65-r1.ebuild
+++ b/sys-devel/autoconf/autoconf-2.65-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit eutils
+inherit toolchain-autoconf
 
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
@@ -23,10 +23,3 @@ RDEPEND="${DEPEND}
 PATCHES=(
        "${FILESDIR}"/${P}-AC_TYPE_INT_T.patch #324649
 )
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-2.67.ebuild 
b/sys-devel/autoconf/autoconf-2.67.ebuild
index 0bfcaee59fb8..4290fee75751 100644
--- a/sys-devel/autoconf/autoconf-2.67.ebuild
+++ b/sys-devel/autoconf/autoconf-2.67.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
+inherit toolchain-autoconf
+
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
 SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
@@ -17,10 +19,3 @@ DEPEND=">=sys-devel/m4-1.4.6
 RDEPEND="${DEPEND}
        !~sys-devel/${P}:2.5
        >=sys-devel/autoconf-wrapper-13"
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-2.68.ebuild 
b/sys-devel/autoconf/autoconf-2.68.ebuild
index 0bfcaee59fb8..4290fee75751 100644
--- a/sys-devel/autoconf/autoconf-2.68.ebuild
+++ b/sys-devel/autoconf/autoconf-2.68.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
+inherit toolchain-autoconf
+
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
 SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
@@ -17,10 +19,3 @@ DEPEND=">=sys-devel/m4-1.4.6
 RDEPEND="${DEPEND}
        !~sys-devel/${P}:2.5
        >=sys-devel/autoconf-wrapper-13"
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-2.69-r2.ebuild 
b/sys-devel/autoconf/autoconf-2.69-r2.ebuild
index 593e8a0454d5..9d09ace0dc31 100644
--- a/sys-devel/autoconf/autoconf-2.69-r2.ebuild
+++ b/sys-devel/autoconf/autoconf-2.69-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -15,6 +15,8 @@ else
        KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 fi
 
+inherit toolchain-autoconf
+
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
 
@@ -29,10 +31,3 @@ RDEPEND="${DEPEND}
        >=sys-devel/autoconf-wrapper-13"
 [[ ${PV} == "9999" ]] && DEPEND+=" >=sys-apps/texinfo-4.3"
 PDEPEND="emacs? ( app-emacs/autoconf-mode )"
-
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/autoconf-9999.ebuild 
b/sys-devel/autoconf/autoconf-9999.ebuild
index e54426475c8d..d8ac1b8201ad 100644
--- a/sys-devel/autoconf/autoconf-9999.ebuild
+++ b/sys-devel/autoconf/autoconf-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -15,6 +15,8 @@ else
        KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 fi
 
+inherit toolchain-autoconf
+
 DESCRIPTION="Used to create autoconfiguration files"
 HOMEPAGE="https://www.gnu.org/software/autoconf/autoconf.html";
 
@@ -30,18 +32,13 @@ RDEPEND="${DEPEND}
 [[ ${PV} == "9999" ]] && DEPEND+=" >=sys-apps/texinfo-4.3"
 PDEPEND="emacs? ( app-emacs/autoconf-mode )"
 
-if [[ -z ${__EBLITS__} && -n ${FILESDIR} ]] ; then
-       source "${FILESDIR}"/eblits/main.eblit || die
-fi
-src_prepare()   { eblit-run src_prepare   ; }
-src_configure() { eblit-run src_configure ; }
-src_install()   { eblit-run src_install   ; }
-
-eblit-src_prepare-pre() {
+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
 
        autoreconf -f -i || die
+
+       autotools-autoconf_src_prepare
 }
diff --git a/sys-devel/autoconf/files/eblits/main.eblit 
b/sys-devel/autoconf/files/eblits/main.eblit
deleted file mode 100644
index 66b1fe2fa87a..000000000000
--- a/sys-devel/autoconf/files/eblits/main.eblit
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-__EBLITS__="locked-and-loaded"
-
-# eblit-include [--skip] <function> [version]
-eblit-include() {
-       local skipable=false
-       [[ $1 == "--skip" ]] && skipable=true && shift
-       [[ $1 == pkg_* ]] && skipable=true
-
-       local e v func=$1 ver=$2
-       [[ -z ${func} ]] && die "Usage: eblit-include <function> [version]"
-       for v in ${ver:+-}${ver} -${PVR} -${PV} "" ; do
-               e="${FILESDIR}/eblits/${func}${v}.eblit"
-               if [[ -e ${e} ]] ; then
-                       source "${e}"
-                       return 0
-               fi
-       done
-       ${skipable} && return 0
-       die "Could not locate requested eblit '${func}' in ${FILESDIR}/eblits/"
-}
-
-# eblit-run-maybe <function>
-# run the specified function if it is defined
-eblit-run-maybe() {
-       [[ $(type -t "$@") == "function" ]] && "$@"
-}
-
-# eblit-run <function> [version]
-# aka: src_unpack() { eblit-run src_unpack ; }
-eblit-run() {
-       eblit-include --skip common "${*:2}"
-       eblit-include "$@"
-       eblit-run-maybe eblit-$1-pre
-       eblit-${PN}-$1
-       eblit-run-maybe eblit-$1-post
-}
-
-# Copy these into the ebuilds.
-#src_unpack()    { eblit-run src_unpack    ; }
-#src_prepare()   { eblit-run src_prepare   ; }
-#src_configure() { eblit-run src_configure ; }
-#src_compile()   { eblit-run src_compile   ; }
-#src_test()      { eblit-run src_test      ; }
-#src_install()   { eblit-run src_install   ; }
diff --git a/sys-devel/autoconf/files/eblits/src_configure.eblit 
b/sys-devel/autoconf/files/eblits/src_configure.eblit
deleted file mode 100644
index 680a38f74a1d..000000000000
--- a/sys-devel/autoconf/files/eblits/src_configure.eblit
+++ /dev/null
@@ -1,11 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-eblit-autoconf-src_configure() {
-       # Disable Emacs in the build system since it is in a separate package.
-       export EMACS=no
-       econf --program-suffix="-${PV}" || die
-       # econf updates config.{sub,guess} which forces the manpages
-       # to be regenerated which we dont want to do #146621
-       touch man/*.1
-}
diff --git a/sys-devel/autoconf/files/eblits/src_install.eblit 
b/sys-devel/autoconf/files/eblits/src_install.eblit
deleted file mode 100644
index b64381ca1f6d..000000000000
--- a/sys-devel/autoconf/files/eblits/src_install.eblit
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# slot the info pages.  do this w/out munging the source so we don't have
-# to depend on texinfo to regen things.  #464146 (among others)
-slot_info_pages() {
-       [[ ${SLOT} == "0" ]] && return
-
-       pushd "${ED}"/usr/share/info >/dev/null
-       rm -f dir
-
-       # Rewrite all the references to other pages.
-       # before: * aclocal-invocation: (automake)aclocal Invocation.   
Generating aclocal.m4.
-       # after:  * aclocal-invocation v1.13: (automake-1.13)aclocal 
Invocation.   Generating aclocal.m4.
-       local p pages=( *.info ) args=()
-       for p in "${pages[@]/%.info}" ; do
-               args+=(
-                       -e "/START-INFO-DIR-ENTRY/,/END-INFO-DIR-ENTRY/s|: 
(${p})| v${SLOT}&|"
-                       -e "s:(${p}):(${p}-${SLOT}):g"
-               )
-       done
-       sed -i "${args[@]}" * || die
-
-       # Rewrite all the file references, and rename them in the process.
-       local f d
-       for f in * ; do
-               d=${f/.info/-${SLOT}.info}
-               mv "${f}" "${d}" || die
-               sed -i -e "s:${f}:${d}:g" * || die
-       done
-
-       popd >/dev/null
-}
-
-eblit-autoconf-src_install() {
-       default
-       slot_info_pages
-}
diff --git a/sys-devel/autoconf/files/eblits/src_prepare.eblit 
b/sys-devel/autoconf/files/eblits/src_prepare.eblit
deleted file mode 100644
index b34fbfc56dd4..000000000000
--- a/sys-devel/autoconf/files/eblits/src_prepare.eblit
+++ /dev/null
@@ -1,8 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-eblit-autoconf-src_prepare() {
-       find -name Makefile.in -exec sed -i '/^pkgdatadir/s:$:-@VERSION@:' {} +
-
-       [[ ${#PATCHES[@]} -gt 0 ]] && epatch "${PATCHES[@]}"
-}
-- 
2.12.0


Reply via email to