Make default ./configure args configurable

With this commit we implicitly enable NLS
Enable full wildcard usage in subsys.conf
Currently unpackaged_file detection is missing and perhaps the subsys.conf
syntax should be scrapped in favor of the solaris style pkgdef
since there are many similarities.
This commit is contained in:
Tom G. Christensen 2004-04-11 20:39:17 +00:00
parent e18d3046fe
commit 96e4251e89

View File

@ -45,6 +45,8 @@ pkgname=$pkgprefix$topdir
os=irix`$UNAME -r` os=irix`$UNAME -r`
cpu=mips3 cpu=mips3
configure_args='--prefix=$prefix'
META_CLEAN="$topdir.spec $topdir.idb" META_CLEAN="$topdir.spec $topdir.idb"
# Host specific configuration # Host specific configuration
@ -315,9 +317,14 @@ create_idb()
local found=0 local found=0
while read dir pdcat perm user group desc while read dir pdcat perm user group desc
do do
dironly=${dir%/*} #local wildcardpos=$($EXPR index "$dir" '*?')
#if [ $wildcardpos -gt 2 ]; then
# dironly=${dir:0:(($wildcardpos-2))}
#else
# dironly=$($DIRNAME $dir)
#fi
found=0 found=0
if [ -d $dironly ]; then # This exists #if [ -d $dironly ]; then # This exists
add_files "$dir" $pdcat $perm $user $group add_files "$dir" $pdcat $perm $user $group
for i in ${pc[@]} # If $pdcat is already there then don't add it again for i in ${pc[@]} # If $pdcat is already there then don't add it again
do do
@ -331,7 +338,7 @@ create_idb()
pd[$index]=$desc pd[$index]=$desc
let "index = $index + 1" let "index = $index + 1"
fi fi
fi #fi
done < $subsysconf done < $subsysconf
$SORT +4u -6 < $idbfile > $metadir/idbtemp $SORT +4u -6 < $idbfile > $metadir/idbtemp
lines=$(wc -l < $metadir/idbtemp) lines=$(wc -l < $metadir/idbtemp)