static=0
|
|
|
|
for x in upx gzip sed kbd mplayer pciutils grep coreutils util-linux libgli lvp gawk bash findutils xfree86 ; do
|
|
[ "$pkg" == "$x" ] && static=1
|
|
done
|
|
|
|
if [ $static -eq 1 ] ; then
|
|
echo_status "Building this package statically for LVP"
|
|
var_append GCC_WRAPPER_APPEND " " "-static"
|
|
fi
|
|
|
|
if [ "$pkg" == "modutils" ] ; then
|
|
echo_status "Building this package statically for LVP"
|
|
var_append confopt " " "--enable-combined"
|
|
fi
|
|
|
|
for x in mplayer freeglut ; do
|
|
if [ "$pkg" == "$x" ] ; then
|
|
echo_status "Building this package statically for LVP"
|
|
var_append confopt " " "--enable-static"
|
|
fi
|
|
done
|
|
|
|
install_init () {
|
|
echo_status "stub called: install_init $@"
|
|
}
|