1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/usr/local/bin/python
# This script builds a SWIG1.3 distribution.
# Usage : mkdist.py dirname
import sys
try:
dirname = sys.argv[1]
except:
print "Usage: mkdist.py directory"
sys.exit(0)
# If directory exists, remove it
import os
print "Removing ", dirname
os.system("rm -rf "+dirname)
# Do a CVS export on the directory name
print "Checking out SWIG"
os.system("cvs export -D now -r rel-1-3 -d "+dirname+ " SWIG")
# Now clean the source directory
SOURCES = ['DOH','Swig','Preprocessor','CParse','Modules1.1', 'Modules', 'Include']
srcs = [ ]
for d in SOURCES:
srcs.append(dirname+"/Source/"+d)
print "Cleaning the source directory..."
import glob
import string
dirs = glob.glob(dirname+"/Source/*")
dnames = [ ]
for d in dirs:
if not (d in srcs):
print "Removing ", d
os.system("rm -rf "+d)
dnames.append(string.split(d,"/")[-1])
print "Patching the configure script"
f = open(dirname+"/configure.in")
s = f.read()
f.close()
# Remove any dirs not in SOURCES from the configure line
print dnames
for d in dnames:
s = string.replace(s,"Source/"+d+"/Makefile","")
s = string.replace(s,"Source/"+d,"")
f = open(dirname+"/configure.in","w")
f.write(s)
f.close()
# Remove the debian directory -- it's not official
os.system("rm -Rf "+dirname+"/debian");
# Blow away all .cvsignore files
print "Blowing away .cvsignore files"
os.system("find "+dirname+" -name .cvsignore -exec rm {} \\;");
# Go build the system
os.system("cd "+dirname+"; autoconf")
os.system("cd "+dirname+"/Source/DOH; autoconf")
os.system("cd "+dirname+"/Tools; autoconf")
os.system("cd "+dirname+"/Examples/GIFPlot; autoconf")
os.system("cd "+dirname+"/Source/CParse; bison -y -d parser.y; mv y.tab.c parser.c; mv y.tab.h parser.h")
os.system("tar -cf "+string.lower(dirname)+".tar "+dirname)
os.system("gzip "+string.lower(dirname)+".tar")
|