Changeset 913
- Timestamp:
- 10/14/07 08:10:48
- Files:
-
- buildout/pcl.buildout/trunk/buildout.cfg (modified) (2 diffs)
- buildout/pcl.buildout/trunk/dependencies.cfg (modified) (2 diffs)
- buildout/pcl.buildout/trunk/hooks/mapserver.py (modified) (2 diffs)
- buildout/pcl.buildout/trunk/pcl-mapserver.cfg (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
buildout/pcl.buildout/trunk/buildout.cfg
r792 r913 11 11 postgis 12 12 gdal 13 maps erver13 mapscript 14 14 PCL-Core 15 15 PCL-GDAL … … 29 29 recipe = zc.recipe.egg 30 30 eggs = 31 mapscript 31 32 PCL-Core 32 33 PCL-GDAL buildout/pcl.buildout/trunk/dependencies.cfg
r895 r913 15 15 [custom-python] 16 16 executable = ${python:location}/bin/python 17 18 [system-python] 19 executable = /usr/bin/python2.4 17 20 18 21 [libpng] … … 139 142 keep-compile-dir = true 140 143 144 [mapscript] 145 recipe = zc.recipe.egg:develop 146 setup = ${mapserver:compile-directory}/mapscript/python/setup.py 147 141 148 [worldborders] 142 149 recipe = hexagonit.recipe.download buildout/pcl.buildout/trunk/hooks/mapserver.py
r898 r913 58 58 59 59 run('%s -modern -python -o mapscript_wrap.c ../mapscript.i' % options['swig']) 60 run(' %s setup.py install' % buildout[buildout['buildout']['python']]['executable'])60 run('sed -ie \'s/distutils.core/setuptools/\' setup.py') 61 61 finally: 62 62 os.chdir(here) … … 82 82 83 83 run('%s -modern -python -o mapscript_wrap.c ../mapscript.i' % options['swig']) 84 run(' %s setup.py install --prefix %s' % (buildout[buildout['buildout']['python']]['executable'], options['location']))84 run('sed -ie \'s/distutils.core/setuptools/\' setup.py') 85 85 finally: 86 86 os.chdir(here) buildout/pcl.buildout/trunk/pcl-mapserver.cfg
r900 r913 8 8 postgis 9 9 gdal 10 maps erver10 mapscript 11 11 PCL-Core 12 12 PCL-GDAL … … 22 22 recipe = zc.recipe.egg 23 23 eggs = 24 mapscript 24 25 PCL-Core 25 26 PCL-GDAL … … 53 54 recipe = zc.recipe.testrunner 54 55 eggs = 56 mapscript 55 57 PCL-MapServer 56 58 elementtree
