]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/scripts/create_archives.sh
add Scintilla.iface to the distribution
[wxWidgets.git] / distrib / scripts / create_archives.sh
index e04a25c05331ab6b1ab060ae13aef0da4277e09d..9066cb401b637300cd7396c0a6009575826f4d0b 100755 (executable)
@@ -20,7 +20,7 @@ VERBOSE=0
 ZIPFLAGS=
 
 PROGNAME=$0
-##SCRIPTDIR=$WXWIN/distrib/scripts
+
 . $SCRIPTDIR/utils.inc
 
 MANIFESTDIR=$WXWIN/distrib/scripts/manifests
@@ -31,7 +31,7 @@ fi
 
 # Set this to the required version
 if [ "$VERSION" = "" ]; then
-  VERSION=2.7.0
+  VERSION=2.9.0
 fi
 
 getfilelist(){
@@ -39,16 +39,15 @@ getfilelist(){
   outfile=$2
 
   filelist="base.rsp"
-  contribfiles="stc.rsp contrib.rsp ogl.rsp"
   utilsfiles="tex2rtf.rsp utils.rsp utilmake.rsp"
-  commonfiles="generic.rsp jpeg.rsp tiff.rsp xml.rsp deprecated.rsp makefile.rsp $utilsfiles $contribfiles"
+  commonfiles="generic.rsp generic_samples.rsp stc.rsp jpeg.rsp tiff.rsp xml.rsp makefile.rsp $utilsfiles"
 
   if [ ! $port = "base" ]; then
     filelist="$filelist $commonfiles"
   fi
 
   if [ $port = "msw" ] || [ $port = "all" ]; then
-    filelist="$filelist msw.rsp univ.rsp vc.rsp mmedia.rsp wince.rsp dmc.rsp"
+    filelist="$filelist msw.rsp univ.rsp vc.rsp wince.rsp dmc.rsp"
   fi
 
   if [ $port = "os2" ] || [ $port = "all" ]; then
@@ -60,7 +59,11 @@ 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
+    filelist="$filelist univ.rsp dfb.rsp"
   fi
 
   if [ $port = "gtk" ] || [ $port = "all" ]; then
@@ -124,7 +127,7 @@ dospinport(){
         mac)
             portname="Mac";;
         *)
-            # for all the others (DFB, GTK, MGL, MSW, X11) just use the
+            # for all the others (DFB, GTK, MGL, DFB, MSW, X11) just use the
             # upper-case version as they are abbreviations
             portname=`echo $port | tr '[a-z]' '[A-Z]'`;;
     esac
@@ -156,11 +159,11 @@ dospinport(){
         popd
     fi
     echo "Creating wx$portname-$VERSION.zip..."
-    zip $ZIPFLAGS -r -9 $APPDIR/deliver/wx$portname-$VERSION.zip .
+    zip $ZIPFLAGS -r -9 $DIST_DIR/wx$portname-$VERSION.zip .
     echo "Creating wx$portname-$VERSION.tar.gz..."
-    tar czf $APPDIR/deliver/wx$portname-$VERSION.tar.gz wx$portname-$VERSION
+    tar czf $DIST_DIR/wx$portname-$VERSION.tar.gz wx$portname-$VERSION
     echo "Creating wx$portname-$VERSION.tar.bz2..."
-    tar ch wx$portname-$VERSION | bzip2 -f9 > $APPDIR/deliver/wx$portname-$VERSION.tar.bz2
+    tar ch wx$portname-$VERSION | bzip2 -f9 > $DIST_DIR//wx$portname-$VERSION.tar.bz2
     popd
     rm -rf /tmp/wx$port
     rm ${portfiles}
@@ -187,6 +190,8 @@ prepareforrelease()
     cp $APPDIR/docs/mgl/readme.txt $APPDIR/readme-mgl.txt
     cp $APPDIR/docs/mgl/install.txt $APPDIR/install-mgl.txt
 
+    cp $APPDIR/docs/dfb/install.txt $APPDIR/install-dfb.txt
+
     cp $APPDIR/docs/x11/readme.txt $APPDIR/readme-x11.txt
     cp $APPDIR/docs/x11/install.txt $APPDIR/install-x11.txt
 
@@ -203,12 +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 -r contrib/docs/latex/ogl
     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
@@ -243,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
 
@@ -285,6 +288,7 @@ fi
 
 if [ "$SPINALL" = "1" ]; then
     dospinport "mgl"
+    dospinport "dfb"
     dospinport "gtk"
     dospinport "x11"
     dospinport "motif"