Index: head/games/gtkradiant/files/patch-makeversion.py =================================================================== --- head/games/gtkradiant/files/patch-makeversion.py (revision 494555) +++ head/games/gtkradiant/files/patch-makeversion.py (revision 494556) @@ -1,22 +1,32 @@ --- ./makeversion.py.orig Sun Feb 12 16:47:01 2006 +++ ./makeversion.py Thu Mar 16 16:09:46 2006 @@ -37,9 +37,7 @@ # ouput: # include/aboutmsg.h -import sys, re, string, os - -import svn +import sys, re, string, os, platform def get_version(): # version +@@ -68,9 +66,6 @@ def radiant_makeversion(append_about): + f = open('include/RADIANT_MAJOR', 'w') + f.write(major) + f.close() +- f = open('include/version', 'w') +- f.write(line) +- f.close() + # aboutmsg + aboutfile = 'include/aboutmsg.default' + if ( os.environ.has_key('RADIANT_ABOUTMSG') ): @@ -82,7 +80,7 @@ line = f.readline() f.close() else: - line = "Custom build based on revision " + str(svn.getRevision(os.getcwd())) + line = "Custom build for %s (%s)" % (platform.system(), platform.machine()) # optional additional message if ( not append_about is None ): line += append_about