Changeset 5636
- Timestamp:
- 01/03/08 01:57:38 (1 year ago)
- Files:
-
- sandbox/crschmidt/debian/control (modified) (1 diff)
- sandbox/crschmidt/debian/openlayers.README.Debian (modified) (1 diff)
- sandbox/crschmidt/debian/patches/00list (modified) (1 diff)
- sandbox/crschmidt/debian/patches/remove_jsmin.dpatch (added)
- sandbox/crschmidt/debian/patches/update_build.dpatch (added)
- sandbox/crschmidt/debian/rules (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/crschmidt/debian/control
r5618 r5636 3 3 Priority: extra 4 4 Maintainer: Christopher Schmidt <crschmidt@metacarta.com> 5 Build-Depends: debhelper (>= 5), dpatch 5 Build-Depends: debhelper (>= 5), dpatch, python 6 6 Standards-Version: 3.7.3 7 7 Homepage: http://openlayers.org/ sandbox/crschmidt/debian/openlayers.README.Debian
r5580 r5636 21 21 available. This default can be enabled by installing the openlayers-apache package. 22 22 23 -- Christopher Schmidt <crschmidt@metacarta.com> Sat, 29 Dec 2007 07:17:03 -0500 23 The OpenLayers.js shipped with this package is not compressed using jsmin like 24 the standard OpenLayers distribution. If you wish to create an OpenLayers.js 25 in this manner, you will need to: 26 27 * Install openlayers-utils 28 * Download http://javascript.crockford.com/jsmin.py.txt as 29 http://javascript.crockford.com/jsmin.py 30 * Run `openlayers_build /usr/share/openlayers-util/build/full` 31 32 -- Christopher Schmidt <crschmidt@metacarta.com> Thu, 3 Jan 2008 01:51:16 -0500 sandbox/crschmidt/debian/patches/00list
r5584 r5636 1 1 apache_license_fixes 2 remove_jsmin 3 update_build sandbox/crschmidt/debian/rules
r5585 r5636 22 22 touch $@ 23 23 24 depatch:24 unpatch: 25 25 dpatch deapply-all 26 26 27 clean: depatch27 clean: unpatch 28 28 dh_testdir 29 29 dh_testroot … … 46 46 47 47 # The actual library + supporting files 48 c p $(CURDIR)/OpenLayers.js $(CURDIR)/debian/openlayers/usr/share/openlayers/www48 cd $(CURDIR)/build/ && python build.py full $(CURDIR)/debian/openlayers/usr/share/openlayers/www/OpenLayers.js 49 49 cp -r $(CURDIR)/img/* $(CURDIR)/debian/openlayers/usr/share/openlayers/www/img 50 50 cp -r $(CURDIR)/theme/* $(CURDIR)/debian/openlayers/usr/share/openlayers/www/theme … … 58 58 59 59 # Needed for openlayers_build 60 cp $(CURDIR)/tools/jsmin.py $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils 61 chmod -x $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils/jsmin.py 62 sed -i -e 's?#!/usr/bin/python??' $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils/jsmin.py 60 cp $(CURDIR)/tools/minimize.py $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils 63 61 cp $(CURDIR)/tools/mergejs.py $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils 64 62 chmod -x $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils/mergejs.py … … 68 66 cp $(CURDIR)/build/license.txt $(CURDIR)/debian/openlayers-utils/usr/share/openlayers-utils/build 69 67 cp $(CURDIR)/build/lite.cfg $(CURDIR)/debian/openlayers-utils/usr/share/openlayers-utils/build 68 cp $(CURDIR)/build/full.cfg $(CURDIR)/debian/openlayers-utils/usr/share/openlayers-utils/build 70 69 cp $(CURDIR)/build/build.py $(CURDIR)/debian/openlayers-utils/usr/bin/openlayers_build 71 70 sed -i -e 's!../lib!/usr/share/openlayers-utils/lib!' \
