Changeset 5580
- Timestamp:
- 12/29/07 11:46:36 (1 year ago)
- Files:
-
- sandbox/crschmidt/debian/README.Debian (deleted)
- sandbox/crschmidt/debian/control (modified) (1 diff)
- sandbox/crschmidt/debian/openlayers-apache.README.Debian (added)
- sandbox/crschmidt/debian/openlayers-apache.dirs (added)
- sandbox/crschmidt/debian/openlayers-apache.postinst (added)
- sandbox/crschmidt/debian/openlayers-apache.postrm (added)
- sandbox/crschmidt/debian/openlayers-utils.dirs (added)
- sandbox/crschmidt/debian/openlayers-utils.manpages (added)
- sandbox/crschmidt/debian/openlayers.7 (modified) (1 diff)
- sandbox/crschmidt/debian/openlayers.README.Debian (added)
- sandbox/crschmidt/debian/openlayers.dirs (moved) (moved from sandbox/crschmidt/debian/dirs) (1 diff)
- sandbox/crschmidt/debian/openlayers.docs (moved) (moved from sandbox/crschmidt/debian/docs)
- sandbox/crschmidt/debian/openlayers.examples (moved) (moved from sandbox/crschmidt/debian/examples)
- sandbox/crschmidt/debian/openlayers.manpages (moved) (moved from sandbox/crschmidt/debian/manpages) (1 diff)
- sandbox/crschmidt/debian/openlayers.postinst.debhelper (deleted)
- sandbox/crschmidt/debian/openlayers.prerm.debhelper (deleted)
- sandbox/crschmidt/debian/rules (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/crschmidt/debian/control
r5577 r5580 14 14 implements a JavaScript API for building rich web-based geographic 15 15 applications, similar to the Google Maps and MSN Virtual Earth APIs, 16 17 Package: openlayers-utils 18 Architecture: any 19 Depends: ${shlibs:Depends}, ${misc:Depends}, python, openlayers 20 Description: Utilities for use with OpenLayers, for building custom libs 21 OpenLayers allows users to build customized versions of their library 22 to save on size or not include unneccesary components. This package 23 contains the tools to install these utilities. 24 25 Package: openlayers-apache 26 Architecture: any 27 Depends: ${shlibs:Depends}, ${misc:Depends}, apache2, openlayers 28 Description: OpenLayers Apache server configuration 29 This package enables the OpenLayers library, installed in /usr/share/openlayers, 30 to be browsed at http://yourmachine.example.com/openlayers/OpenLayers.js, which 31 makes the examples included with the distribution functional and also makes the 32 code available for other applications. sandbox/crschmidt/debian/openlayers.7
r5577 r5580 14 14 software community. 15 15 16 OpenLayers on Debian is set up to be used via Apache: to enable the 17 use of OpenLayers, use: 18 19 .nf 20 # /usr/sbin/a2ensite openlayers 21 Site openlayers installed; run /etc/init.d/apache2 reload to enable. 22 # /etc/init.d/apache2 reload 23 .fi 24 25 This will make the OpenLayers library available from 16 If you use Apache, you likely want to install the openlayers-apache 17 package, which will make the OpenLayers library available from 26 18 .nh 27 19 http://localhost/openlayers/OpenLayers.js. 28 20 .hy 29 21 22 This 30 23 .SH SEE ALSO 31 24 .BR tilecache (8) sandbox/crschmidt/debian/openlayers.dirs
r5577 r5580 1 usr/bin2 usr/lib/openlayers3 1 usr/share/openlayers 4 usr/share/openlayers/build5 2 usr/share/openlayers/lib 6 3 usr/share/openlayers/img sandbox/crschmidt/debian/openlayers.manpages
r5577 r5580 1 1 debian/openlayers.7 2 debian/openlayers_build.1sandbox/crschmidt/debian/rules
r5578 r5580 7 7 8 8 # Uncomment this to turn on verbose mode. 9 #export DH_VERBOSE=19 export DH_VERBOSE=1 10 10 11 11 configure: configure-stamp … … 39 39 40 40 # apache site for allowing users to turn on OpenLayers easily 41 mkdir -p $(CURDIR)/debian/openlayers/etc/apache2/sites-available/ 42 cp $(CURDIR)/debian/openlayers-apache-conf $(CURDIR)/debian/openlayers/etc/apache2/sites-available/openlayers 41 cp $(CURDIR)/debian/openlayers-apache-conf $(CURDIR)/debian/openlayers-apache/etc/apache2/sites-available/openlayers 43 42 44 43 # The actual library + supporting files … … 51 50 52 51 # Needed for openlayers_build 53 cp $(CURDIR)/tools/jsmin.py $(CURDIR)/debian/openlayers /usr/lib/openlayers54 chmod -x $(CURDIR)/debian/openlayers /usr/lib/openlayers/jsmin.py55 sed -i -e 's?#!/usr/bin/python??' $(CURDIR)/debian/openlayers /usr/lib/openlayers/jsmin.py56 cp $(CURDIR)/tools/mergejs.py $(CURDIR)/debian/openlayers /usr/lib/openlayers57 chmod -x $(CURDIR)/debian/openlayers /usr/lib/openlayers/mergejs.py58 sed -i -e 's?#!/usr/bin/env python??' $(CURDIR)/debian/openlayers /usr/lib/openlayers/mergejs.py59 cp $(CURDIR)/tools/toposort.py $(CURDIR)/debian/openlayers /usr/lib/openlayers52 cp $(CURDIR)/tools/jsmin.py $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils 53 chmod -x $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils/jsmin.py 54 sed -i -e 's?#!/usr/bin/python??' $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils/jsmin.py 55 cp $(CURDIR)/tools/mergejs.py $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils 56 chmod -x $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils/mergejs.py 57 sed -i -e 's?#!/usr/bin/env python??' $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils/mergejs.py 58 cp $(CURDIR)/tools/toposort.py $(CURDIR)/debian/openlayers-utils/usr/lib/openlayers-utils 60 59 61 cp $(CURDIR)/build/license.txt $(CURDIR)/debian/openlayers /usr/share/openlayers/build62 cp $(CURDIR)/build/lite.cfg $(CURDIR)/debian/openlayers /usr/share/openlayers/build63 cp $(CURDIR)/build/build.py $(CURDIR)/debian/openlayers /usr/bin/openlayers_build64 sed -i -e 's!../lib!/usr/share/openlayers /lib!' \65 -e 's!../tools!/usr/lib/openlayers !' \66 -e 's!license.txt!/usr/share/openlayers /build/license.txt!' \67 -e 's!library.cfg!/usr/share/openlayers /build/lite.cfg!' \68 $(CURDIR)/debian/openlayers /usr/bin/openlayers_build60 cp $(CURDIR)/build/license.txt $(CURDIR)/debian/openlayers-utils/usr/share/openlayers-utils/build 61 cp $(CURDIR)/build/lite.cfg $(CURDIR)/debian/openlayers-utils/usr/share/openlayers-utils/build 62 cp $(CURDIR)/build/build.py $(CURDIR)/debian/openlayers-utils/usr/bin/openlayers_build 63 sed -i -e 's!../lib!/usr/share/openlayers-utils/lib!' \ 64 -e 's!../tools!/usr/lib/openlayers-utils!' \ 65 -e 's!license.txt!/usr/share/openlayers-utils/build/license.txt!' \ 66 -e 's!library.cfg!/usr/share/openlayers-utils/build/lite.cfg!' \ 67 $(CURDIR)/debian/openlayers-utils/usr/bin/openlayers_build 69 68 70 69 binary-indep: build install
