- EAPI bumped to EAPI=7
- Do not use econf
Closes: https://bugs.gentoo.org/611068
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI="7"
inherit toolchain-funcs
src_configure() {
# Upstream configure script is moronic.
- econf \
+ ./configure \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
- LDFLAGS="${CFLAGS} ${LDFLAGS}" \
+ LDFLAGS="${LDFLAGS}" \
CPPFLAGS="${CPPFLAGS}" \
- --bindir="${EPREFIX}/bin"
+ --bindir="${EPREFIX}/bin" \
+ --prefix="${EPREFIX}/usr"
}