In the live ebuild, inherit autotools and change the autogen.sh call to
eautoreconf and move it to src_prepare.
if [[ "${PV}" = "9999" ]]; then
EGIT_REPO_URI="git://git.infradead.org/users/dwmw2/${PN}.git"
- inherit git-r3
+ inherit git-r3 autotools
else
ARCHIVE_URI="ftp://ftp.infradead.org/pub/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
unpack ${A}
}
-src_configure() {
+src_prepare() {
if [[ "${PV}" = 9999 ]]; then
- ./autogen.sh || die "autogen failed"
+ eautoreconf
fi
+}
+
+src_configure() {
strip-linguas $ILINGUAS
echo ${LINGUAS} > po/LINGUAS
if ! use doc; then