+if [ -z "${skipcopy}" ]; then
+ echo "*** Copying CVS tree"
+ pushd ${builddir} > /dev/null
+ if [ -e ${tarver} ]; then
+ rm -rf ${tarver}
+ fi
+ mkdir -p ${tarver}
+
+ # copy root dir contents
+ cp -pf --link ${wxdir}/* ${tarver} > /dev/null 2>&1
+
+ # copy all top dirs except CVS, build, demos, utils, samples, and wxPython
+ for d in art build contrib debian distrib docs include lib locale misc patches src; do
+ if [ -e ${wxdir}/$d ]; then
+ cp -Rpf --link ${wxdir}/$d ${tarver} #> /dev/null 2>&1
+ fi
+ done
+
+ # now do the same thing for wxPython, skipping it's build dirs and such
+ for dir in `grep -v '#' ${wxdir}/wxPython/distrib/DIRLIST`; do
+ mkdir ${tarver}/${dir}
+ ##echo "cp -pf --link ${wxdir}/${dir}/* ${tarver}/${dir}"
+ cp -pf --link ${wxdir}/${dir}/* ${tarver}/${dir} > /dev/null 2>&1
+ done
+
+ echo "*** Removing uneeded stuff from copy of CVS tree"
+ pushd ${tarver} > /dev/null
+ cleanup .cvsignore
+ cleanup CVS
+ cleanup CVSROOT
+ rm BuildCVS.txt
+ rm *.spec
+ rm -rf docs/html
+ rm -rf docs/latex
+ rm -rf contrib/docs
+ rm -rf contrib/samples
+ rm locale/*.mo
+ cleanup ".#*"
+ cleanup "*~"
+ cleanup "*.orig"
+ cleanup "*.rej"
+ cleanup "*.pyc"
+ cleanup core
+ cleanup "core.[0-9]*"
+
+ rm -f wxPython/wx/* > /dev/null 2>&1
+
+ popd > /dev/null
+ popd > /dev/null
+fi
+
+
+#----------------------------------------------------------------------
+# Make the spec file and copy to ${builddir}/${tarver} so it will be
+# in the tar file when it's built
+
+# TODO? Output all combinations of spec files to put in the tar file??
+
+makespec
+cp ${distdir}/wxPython${port}.spec ${builddir}/${tarver}/wxPython${port}.spec
+
+
+#----------------------------------------------------------------------
+# Build the tar file
+
+if [ -z "${skiptar}" ]; then
+ echo "*** Creating language catalogs..."
+ pushd ${builddir}/${tarver}/locale > /dev/null
+ make allmo
+ popd > /dev/null
+
+ echo "*** Creating tarball..."
+ cp distrib/README.1st.txt ${builddir}/${tarver}
+ pushd ${builddir} > /dev/null
+ tar cvf ${distdir}/${tarver}.tar ${tarver} > /dev/null
+
+ echo "*** Compressing..."
+ if [ -e ${distdir}/${tarver}.tar.gz ]; then
+ rm ${distdir}/${tarver}.tar.gz
+ fi
+ gzip --best ${distdir}/${tarver}.tar
+ popd > /dev/null
+fi
+
+
+#----------------------------------------------------------------------
+# build the RPM
+
+if [ -z "${skiprpm}" ]; then
+ echo "*** Building RPMs..."
+ cp ${distdir}/${tarver}.tar.gz ${rpmtop}/SOURCES
+ rpmbuild ${rpmflag} \
+ --define "_topdir ${rpmtop}" \
+ --define "_tmppath ${builddir}" \
+ ${distdir}/wxPython${port}.spec
+ if [ "$?" != "0" ]; then
+ echo "*** RPM failure, exiting."
+ exit 1
+ else
+ echo "*** Moving RPMs to ${distdir}"
+ mv -f `find ${rpmtop} -name "wxPython*.rpm"` ${distdir}
+ fi
+fi
+
+#----------------------------------------------------------------------
+# Cleanup
+
+if [ -z ${skipclean} ]; then
+ echo "*** Cleaning up"
+ rm -rf ${rpmtop}
+ rm -rf ${builddir}
+fi
+