]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/distrib/all/build-linux
tweak border size
[wxWidgets.git] / wxPython / distrib / all / build-linux
index 8872d2622288297e84e059d5d7010a8cd848e683..cb2a02b70e6bdecb14823be29d12d1778c8a955f 100755 (executable)
@@ -5,11 +5,11 @@
 # 
 # The command line must have the following parameters:
 #
-#    1. the path to the base of the wx source tree
-#    2. the path of where to put the resulting RPMs
-#    3. skipclean flag (yes|no)
-#    4. the VERSION
-#    5. the remaining args are the versions of Python to build for
+#    1. the path of the build dir.  The src RPMs will be here when we start
+#       and the binary RPMs will be left here when we're done.
+#    2. skipclean flag (yes|no)
+#    3. the VERSION
+#    4. the remaining args are the versions of Python to build for
 #
 # ---------------------------------------------------------------------------
 
@@ -18,47 +18,66 @@ set -o errexit
 
 echo "-=-=-=-  Hello from $HOSTNAME  -=-=-=-"
 
-if [ $# -lt 5 ]; then
+if [ $# -lt 4 ]; then
     echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION PYVER..."
     exit 1
 fi
 
-WXDIR=$1
-DESTDIR=$2
-SKIPCLEAN=$3
-VERSION=$4
-shift;shift;shift;shift
+RELEASE=$1
+SKIPCLEAN=$2
+VERSION=$3
+shift;shift;shift
 PYVER=$@
 
-# Since this is probably a VMWare guest, make sure that the date and
-# time are correct
-ntpdate gate.alldunn.com
+rpmtop=_rpm_top
 
+function DoRPMBuild {
+    echo "*** Setting up RPM build dirs"
+    for dir in SPECS BUILD RPMS SRPMS tmp; do
+       if [ ! -d $rpmtop/$dir ]; then
+           mkdir -p $rpmtop/$dir
+       fi
+    done
+    if [ ! -e $rpmtop/SOURCES ]; then
+       ln -s $PWD $rpmtop/SOURCES
+    fi
+
+    rpmbuild --define "_topdir $PWD/$rpmtop" \
+       --define "_tmppath $PWD/$rpmtop/tmp" \
+       --define "release $RELEASE" \
+       $@
+
+    if [ $? != 0 ]; then
+       return $?
+    fi
+
+    echo "*** Moving RPMs to ."
+    find $rpmtop -name "*.rpm"
+    mv -f `find $rpmtop -name "*.rpm"` .
+
+    echo "*** Cleaning up $rpmtop"
+    rm -rf $rpmtop
+}
 
-# In this case $WXDIR is where we will build at, but the source tree
-# won't be there like the other builds.  The source RPMs will be in
-# $DESTDIR, and we'll put the binary RPMs back there when done.
 
-echo "Preparing $WXDIR..."
-mkdir -p $WXDIR
-cd $WXDIR
-rm -rf * 
 
 for ver in $PYVER; do 
     echo "Building the RPMs for Python $ver..."
-    myrpmbuild --rebuild $DESTDIR/wxPythonGTK-py$ver-$VERSION-1.src.rpm
-    myrpmbuild --rebuild $DESTDIR/wxPythonGTK2-py$ver-$VERSION-1.src.rpm
+    for port in GTK GTK2; do
+       rpm2cpio wxPython$port-py$ver-$VERSION-1.src.rpm | \
+           cpio --extract -R root.
+       DoRPMBuild -ba wxPython$port.spec
+    done
 done
 
 
-echo "Copying RPMs to $DESTDIR..."
-cp  wxPythonGTK*.i[0-9]86.rpm $DESTDIR
-cd $DESTDIR
-
-
 if [ $SKIPCLEAN != yes ]; then 
     echo "Cleaning up..."
-    rm -rf $WXDIR || true
+    for ver in $PYVER; do 
+       rm wxPythonGTK-py$ver-$VERSION-*.src.rpm
+       rm wxPythonGTK2-py$ver-$VERSION-*.src.rpm
+    done
+    rm *.spec *.tar.gz
 fi
 
 echo "-=-=-=-  Goodbye!  -=-=-=-"