Ticket #5798: ZopeEditManager-0.9.6.diff
File ZopeEditManager-0.9.6.diff, 2.7 KB (added by jmroot (Joshua Root), 17 years ago) |
---|
-
aqua/ZopeEditManager/files/patch-setup.py.diff
1 --- setup.py.orig Tue Oct 12 15:04:14 20042 +++ setup.py Tue Oct 12 17:35:26 20041 --- setup.py.orig 2005-06-22 03:31:11.000000000 +1000 2 +++ setup.py 2008-03-23 22:06:59.000000000 +1100 3 3 @@ -4,8 +4,8 @@ 4 4 plist = dict( 5 CFBundle Executable = "ZopeEditManager",5 CFBundleName = "ZopeEditManager", 6 6 CFBundleIdentifier = "com.urbanape.zopeeditmanager", 7 - CFBundleShortVersionString = "Version 0.9. 5",8 - CFBundleGetInfoString = ("ZopeEditManager version 0.9. 5, "7 - CFBundleShortVersionString = "Version 0.9.6", 8 - CFBundleGetInfoString = ("ZopeEditManager version 0.9.6, " 9 9 + CFBundleShortVersionString = "Version @VERSION@", 10 10 + CFBundleGetInfoString = ("ZopeEditManager version @VERSION@, " 11 "Copyright 2003 Zope Corporation"),12 NSHumanReadableCopyright = "Copyright 2003 Zope Corporation",11 "Copyright 2003-2005 Zope Corporation"), 12 NSHumanReadableCopyright = "Copyright 2003-2005 Zope Corporation", 13 13 CFBundleIconFile = "ZEM.icns", 14 14 @@ -16,6 +16,8 @@ 15 15 NSMainNibFile = "MainMenu", -
aqua/ZopeEditManager/Portfile
1 1 # $Id$ 2 2 3 PortSystem 1.0 3 4 4 5 name ZopeEditManager 5 version 0.9. 56 version 0.9.6 6 7 categories aqua zope www python 7 8 maintainers nomaintainer 8 9 description Zope Edit Manager for External Editing support on Mac OS X 9 10 long_description ${description} 10 11 homepage http://www.urbanape.com/software 11 12 master_sites http://www.urbanape.com/downloads/ 12 distfiles ${name}-${version}-src${extract.suffix} 13 checksums md5 86e931428abbf71fb02efe0b2f50c150 13 distname ${name}-${version}-src 14 extract.suffix .tgz 15 checksums md5 d42fb947d090db9fe459e8cd9e25153f \ 16 sha1 63cfb2154f6560d0fbbfc63178dcac1a4d857ed1 14 17 platforms darwin 15 18 16 # Use Python 2. 3from MacPorts explicitly17 set python ${prefix}/bin/python2. 318 set pythonlib ${prefix}/lib/python2. 319 # Use Python 2.4 from MacPorts explicitly 20 set python ${prefix}/bin/python2.4 21 set pythonlib ${prefix}/lib/python2.4 19 22 20 23 # Depends on Python, Py-Objc, and Py2App for building ONLY 21 depends_build path:${python}:python2 3\24 depends_build path:${python}:python24 \ 22 25 path:${pythonlib}/site-packages/PyObjC:py-pyobjc \ 23 26 path:${pythonlib}/site-packages/py2app:py-py2app 24 27 … … 42 45 xinstall -m 0644 $img ${helpPath}/$img 43 46 } 44 47 } 45