net-dialup/freeradius-client: tc-export AR #5

Merged
alarig merged 2 commits from net-dialup/freeradius-client into master 2020-06-16 12:26:10 +02:00
1 changed files with 8 additions and 1 deletions

View File

@ -3,7 +3,7 @@
EAPI=7 EAPI=7
inherit autotools inherit autotools toolchain-funcs
DESCRIPTION="FreeRADIUS Client framework" DESCRIPTION="FreeRADIUS Client framework"
HOMEPAGE="https://wiki.freeradius.org/project/Radiusclient" HOMEPAGE="https://wiki.freeradius.org/project/Radiusclient"
@ -31,12 +31,19 @@ src_prepare() {
} }
src_configure() { src_configure() {
tc-export AR
local myeconfargs=( local myeconfargs=(
$(use_enable scp) $(use_enable scp)
$(use_enable shadow) $(use_enable shadow)
--with-secure-path --with-secure-path
) )
econf "${myeconfargs[@]}" econf "${myeconfargs[@]}"
for MAKEFILE in $(find -name Makefile) libtool; do
sed -i "s|/usr/bin/ar|${AR}|" "${MAKEFILE}" || \
die "Patching ${MAKEFILE} for ${AR} failed"
done
} }
src_install() { src_install() {