X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9d1eeb0bf28a16e8c8bee8ca19e9f230a1bfc18e..125e7c11c16f23daa4c594f3b8d90194099c2394:/distrib/scripts/create_archives.sh?ds=sidebyside diff --git a/distrib/scripts/create_archives.sh b/distrib/scripts/create_archives.sh index 3eade8a52f..15fa1b56ad 100755 --- a/distrib/scripts/create_archives.sh +++ b/distrib/scripts/create_archives.sh @@ -31,7 +31,7 @@ fi # Set this to the required version if [ "$VERSION" = "" ]; then - VERSION=2.7.0 + VERSION=2.9.0 fi getfilelist(){ @@ -40,7 +40,7 @@ getfilelist(){ filelist="base.rsp" utilsfiles="tex2rtf.rsp utils.rsp utilmake.rsp" - commonfiles="generic.rsp generic_samples.rsp jpeg.rsp tiff.rsp xml.rsp makefile.rsp $utilsfiles" + commonfiles="generic.rsp generic_samples.rsp stc.rsp jpeg.rsp tiff.rsp xml.rsp makefile.rsp $utilsfiles" if [ ! $port = "base" ]; then filelist="$filelist $commonfiles" @@ -59,7 +59,7 @@ getfilelist(){ fi if [ $port = "mgl" ] || [ $port = "all" ]; then - filelist="$filelist mgl.rsp" + filelist="$filelist univ.rsp mgl.rsp" fi if [ $port = "dfb" ] || [ $port = "all" ]; then @@ -145,7 +145,7 @@ dospinport(){ copyfilelist $portfiles $APPDIR $TMPFILESDIR if [ $port = "msw" ]; then - FILES=`find . -type f \( -path '*/CVS/*' -prune -o -exec ${SCRIPTDIR}/is_text.sh {} \; -print \)` + FILES=`find . -type f \( -path '*/.svn/*' -prune -o -exec ${SCRIPTDIR}/is_text.sh {} \; -print \)` echo "$FILES" > /tmp/textfiles fi @@ -208,11 +208,10 @@ prepareforrelease() cp $APPDIR/docs/cocoa/install.txt $APPDIR/install-cocoa.txt # Now delete a few files that are unnecessary - rm -f BuildCVS.txt descrip.mms + rm -f BuildSVN.txt descrip.mms rm -f setup.h_vms rm -f docs/html/wxbook.htm docs/html/roadmap.htm rm -f src/mingegcs.bat -# rm -f *.spec rm -f src/gtk/descrip.mms src/motif/descrip.mms # Copy setup0.h files to setup.h @@ -247,19 +246,19 @@ usage() for i in "$@"; do case "$i" in - --wxmac) SPINMAC=1; SPINALL=0 ;; - --wxmsw) SPINMSW=1; SPINALL=0 ;; - --wxos2) SPINOS2=1; SPINALL=0 ;; - --wxall) SPINWXALL=1; SPINALL=0 ;; - --wxbase) SPINBASE=1; SPINALL=0 ;; - --getmakefiles) GETMAKEFILES=1; SPINALL=0 ;; - --docs) SPINDOCS=1; SPINALL=0 ;; - --all) SPINALL=1 ;; - --verbose) VERBOSE=1 ;; - *) - usage - exit - ;; + --wxmac) SPINMAC=1; SPINALL=0 ;; + --wxmsw) SPINMSW=1; SPINALL=0 ;; + --wxos2) SPINOS2=1; SPINALL=0 ;; + --wxall) SPINWXALL=1; SPINALL=0 ;; + --wxbase) SPINBASE=1; SPINALL=0 ;; + --getmakefiles) GETMAKEFILES=1; SPINALL=0 ;; + --docs) SPINDOCS=1; SPINALL=0 ;; + --all) SPINALL=1 ;; + --verbose) VERBOSE=1 ;; + *) + usage + exit + ;; esac done