www-client/badwolf: move config variable to ./configure arguments

That way they appear in the build.log thanks to edo

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2026-02-05 23:03:46 +01:00
parent a35615181b
commit 61fe8a14fb
2 changed files with 20 additions and 20 deletions

View File

@@ -67,15 +67,15 @@ fi
src_configure() { src_configure() {
[[ "${PV}" == "9999" ]] || restore_config config.h [[ "${PV}" == "9999" ]] || restore_config config.h
CC="$(tc-getCC)" \ edo ./configure \
PKGCONFIG="$(tc-getPKG_CONFIG)" \ CC="$(tc-getCC)" \
CMD_ED="false" \ PKGCONFIG="$(tc-getPKG_CONFIG)" \
CFLAGS="${CFLAGS:--O2 -Wall -Wextra}" \ CMD_ED="false" \
LDFLAGS="${LDFLAGS}" \ CFLAGS="${CFLAGS:--O2 -Wall -Wextra}" \
DOCDIR="/usr/share/doc/${PF}" \ LDFLAGS="${LDFLAGS}" \
WITH_WEBKITGTK="4.1" \ DOCDIR="/usr/share/doc/${PF}" \
PREFIX="/usr" \ WITH_WEBKITGTK="4.1" \
edo ./configure PREFIX="/usr"
} }
src_compile() { src_compile() {

View File

@@ -63,18 +63,18 @@ fi
src_configure() { src_configure() {
[[ "${PV}" == "9999" ]] || restore_config config.h [[ "${PV}" == "9999" ]] || restore_config config.h
# https://hacktivis.me/git/badwolf/file/configure.html:L444 # https://hacktivis.me/git/badwolf/file/configure.html#l444
# ./locale dir doesn't exist with ENABLE_NLS=0, leading to install failure # ./locale dir doesn't exist with ENABLE_NLS=0, leading to install failure
ENABLE_NLS=1 \ edo ./configure \
CC="$(tc-getCC)" \ ENABLE_NLS=1 \
PKG_CONFIG="$(tc-getPKG_CONFIG)" \ CC="$(tc-getCC)" \
CMD_ED="false" \ PKG_CONFIG="$(tc-getPKG_CONFIG)" \
CFLAGS="${CFLAGS:--O2 -Wall -Wextra}" \ CMD_ED="false" \
LDFLAGS="${LDFLAGS}" \ CFLAGS="${CFLAGS:--O2 -Wall -Wextra}" \
DOCDIR="/usr/share/doc/${PF}" \ LDFLAGS="${LDFLAGS}" \
WITH_WEBKITGTK="4.1" \ DOCDIR="/usr/share/doc/${PF}" \
PREFIX="/usr" \ PREFIX="/usr" \
edo ./configure WITH_WEBKITGTK="4.1" \
} }
src_compile() { src_compile() {