X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cc62d777c4d51d685b1a604dc6cac8934dea2cf6..b4bdf722abfa3cd0a221df755ff9ca0efa44e803:/distrib/scripts/create_archives.sh diff --git a/distrib/scripts/create_archives.sh b/distrib/scripts/create_archives.sh index 08d7a29d06..b07a0640d5 100755 --- a/distrib/scripts/create_archives.sh +++ b/distrib/scripts/create_archives.sh @@ -20,10 +20,10 @@ VERBOSE=0 ZIPFLAGS= PROGNAME=$0 -SCRIPTDIR=$WXWIN/distrib/scripts +##SCRIPTDIR=$WXWIN/distrib/scripts . $SCRIPTDIR/utils.inc -MANIFESTDIR=$SCRIPTDIR/manifests +MANIFESTDIR=$WXWIN/distrib/scripts/manifests WEBFILES=$WXWIN/../wxWebSite if [ ! "$CYGPATH" = "" ]; then WEBFILES=`$CYGPATH "$WEBFILES"` @@ -76,7 +76,7 @@ getfilelist(){ fi if [ $port = "all" ]; then - filelist="$filelist palmos.rsp" + filelist="$filelist gtk1.rsp palmos.rsp docsrc.rsp" fi tempfile="/tmp/wx$port.files.in" @@ -114,11 +114,20 @@ doinit() dospinport(){ port=$1 - if [ $port != "all" ]; then - portname="`echo $port|tr '[a-z]' '[A-Z]'`" - else - portname="Widgets" - fi + case "$port" in + all) + portname="Widgets";; + base) + portname="Base";; + motif) + portname="Motif";; + mac) + portname="Mac";; + *) + # for all the others (DFB, GTK, MGL, MSW, X11) just use the + # upper-case version as they are abbreviations + portname=`echo $port | tr '[a-z]' '[A-Z]'`;; + esac echo "Creating wx$portname distribution..." @@ -126,43 +135,36 @@ dospinport(){ portfiles="/tmp/wx$port.files" getfilelist "$port" "$portfiles" - TMPFILESDIR=/tmp/wx$port/wxWidgets-$VERSION + TMPFILESDIR=/tmp/wx$port/wx$portname-$VERSION rm -rf $TMPFILESDIR mkdir -p $TMPFILESDIR copyfilelist $portfiles $APPDIR $TMPFILESDIR - + + if [ $port = "msw" ]; then + FILES=`find . -type f \( -path '*/CVS/*' -prune -o -exec ${SCRIPTDIR}/is_text.sh {} \; -print \)` + echo "$FILES" > /tmp/textfiles + fi + pushd /tmp/wx$port # use DOS line endings for text files for MSW archives. if [ $port = "msw" ]; then - find . -name \*.bkl -exec unix2dos {} \; - find . -name \*.bcc -exec unix2dos {} \; - find . -name \*.c -exec unix2dos {} \; - find . -name \*.cpp -exec unix2dos {} \; - find . -name \*.cxx -exec unix2dos {} \; - find . -name \*.dmc -exec unix2dos {} \; - find . -name \*.dms -exec unix2dos {} \; - find . -name \*.dsp -exec unix2dos {} \; - find . -name \*.dsw -exec unix2dos {} \; - find . -name \*.h -exec unix2dos {} \; - find . -name \*.htm* -exec unix2dos {} \; - find . -name \*.ini -exec unix2dos {} \; - find . -name \*.rc -exec unix2dos {} \; - find . -name \*.tex -exec unix2dos {} \; - find . -name \*.txt -exec unix2dos {} \; - find . -name \*.vc -exec unix2dos {} \; - find . -name \*.vcp -exec unix2dos {} \; - find . -name \*.vcw -exec unix2dos {} \; - find . -name \*.wat -exec unix2dos {} \; + pushd /tmp/wx$port/wx$portname-$VERSION + for file in `cat /tmp/textfiles`; do + unix2dos $file + done + popd fi echo "Creating wx$portname-$VERSION.zip..." zip $ZIPFLAGS -r -9 $APPDIR/deliver/wx$portname-$VERSION.zip . echo "Creating wx$portname-$VERSION.tar.gz..." - tar czvf $APPDIR/deliver/wx$portname-$VERSION.tar.gz wxWidgets-$VERSION + tar czf $APPDIR/deliver/wx$portname-$VERSION.tar.gz wx$portname-$VERSION echo "Creating wx$portname-$VERSION.tar.bz2..." - tar ch wxWidgets-$VERSION | bzip2 -f9 > $APPDIR/deliver/wx$portname-$VERSION.tar.bz2 + tar ch wx$portname-$VERSION | bzip2 -f9 > $APPDIR/deliver/wx$portname-$VERSION.tar.bz2 popd rm -rf /tmp/wx$port + rm ${portfiles} +# rm /tmp/textfiles } prepareforrelease() @@ -206,7 +208,7 @@ prepareforrelease() 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 *.spec rm -f src/gtk/descrip.mms src/motif/descrip.mms # Copy setup0.h files to setup.h