Und wieder ein package fertig -- mozilla bringt mich noch zu wahnsinn, 3,5h!!!

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@4857 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2009-07-22 09:29:24 +00:00
parent d0d7e5e2b1
commit a9e582e7bd

View File

@ -72,13 +72,60 @@
SRCPATH=Security/Lib
premk() {
mkdir -p $TMPROOT/opt/mozilla/nss
cd mozilla/security/coreconf
mkdir -p $TMPROOT/usr/X11R7/{include,bin,lib}
}
mk32() {
BOPTS=$BUILDOPTIONS32 make
cd ../nss/lib/softoken
BOPTS=$BUILDOPTIONS32 make
cd ../freebl
BOPTS=$BUILDOPTIONS32 make
cd ../../
BOPTS=$BUILDOPTIONS32 make
cd lib/freebl
BOPTS=$BUILDOPTIONS32 make
cd ../../
BOPTS=$BUILDOPTIONS32 make
BOPTS=$BUILDOPTIONS32 make install
cd ../../dist/Linux*
cp -vpL bin/* $TMPROOT/usr/X11R7/bin
cp -vpL lib/* $TMPROOT/usr/X11R7/lib
cd ../../security/coreconf
make clean
cd ../nss
make clean
cd lib/softoken
make clean
cd ../freebl
make clean
cd ../../../coreconf
}
mk() {
cp -a * $TMPROOT/opt/mozilla/nss
BOPTS=$BUILDOPTIONS make
cd ../nss/lib/softoken
BOPTS=$BUILDOPTIONS make
cd ../freebl
BOPTS=$BUILDOPTIONS make
cd ../../
BOPTS=$BUILDOPTIONS make
cd lib/freebl
BOPTS=$BUILDOPTIONS make
cd ../../
BOPTS=$BUILDOPTIONS make
BOPTS=$BUILDOPTIONS make install
cd ../../dist/Linux*
cp -vpL bin/* $TMPROOT/usr/X11R7/bin
if [ "$MK64BIT" == "true" ]; then
mkdir $TMPROOT/usr/X11R7/$LIBDIR
fi
cp -vpL lib/* $TMPROOT/usr/X11R7/$LIBDIR
cd ..
cp -rvpL public/nss $TMPROOT/usr/X11R7/include
}
postmk() {
GetSVN Viitor_nss $TMPROOT
echo "Nothing to do for postmk()"
}