Changeset 190
- Timestamp:
- 07/29/08 09:27:38 (4 months ago)
- Files:
-
- trunk/debian/changelog (modified) (1 diff)
- trunk/debian/control (modified) (2 diffs)
- trunk/debian/postgresql-8.2-pgrouting.dirs (deleted)
- trunk/debian/postgresql-8.2-pgrouting.install (deleted)
- trunk/debian/postgresql-8.3-pgrouting.dirs (added)
- trunk/debian/postgresql-8.3-pgrouting.install (added)
- trunk/debian/rules (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/debian/changelog
r88 r190 1 pgrouting (1.02-1) intrepid; urgency=low 2 3 * Update to Postgresql 8.3 based package 4 5 -- takubo <takubo@saruga-tondara.net> Mon, 28 Jul 2008 11:36:55 +0900 6 1 7 pgrouting (1.01svn20080113-1) unstable; urgency=low 2 8 trunk/debian/control
r88 r190 1 1 Source: pgrouting 2 Section: misc2 Section: libs 3 3 Priority: optional 4 4 Maintainer: Akio Takubo <takubo@saruga-tondara.net> 5 Build-Depends: debhelper (>= 5), postgresql-server-dev-8. 2, cmake, libboost-graph-dev5 Build-Depends: debhelper (>= 5), postgresql-server-dev-8.3, cmake, libboost-graph-dev | libboost-graph1.35-dev 6 6 Standards-Version: 3.7.2 7 Section: libs8 7 Homepage: http://pgrouting.postlbs.net/ 9 8 10 Package: postgresql-8. 2-pgrouting9 Package: postgresql-8.3-pgrouting 11 10 Section: libs 12 11 Architecture: any 13 Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-8. 2-postgis14 Description: routing functionality support for PostgreSQL 8. 212 Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-8.3-postgis 13 Description: routing functionality support for PostgreSQL 8.3 15 14 pgRouting is part of PostLBS, which provides core tools for Location Based Services (LBS) 16 15 as Open Source Software (OSS). Its tools are similar to those found on proprietary software. … … 20 19 PostGIS provides more useful functionnality. 21 20 . 22 This package supports PostgreSQL 8. 2.21 This package supports PostgreSQL 8.3. 23 22 trunk/debian/rules
r88 r190 34 34 dh_testdir 35 35 # Add here commands to configure the package. 36 cmake . 36 [ -d debian/build ] || mkdir debian/build 37 [ ! -e CMakeCache.txt ] || rm CMakeCache.txt 38 cd debian/build; cmake ../.. 37 39 38 40 touch configure-stamp … … 44 46 45 47 # Add here commands to compile the package. 46 $(MAKE) 48 $(MAKE) -C debian/build 47 49 48 50 touch $@ … … 54 56 55 57 # Add here commands to clean up after the build process. 56 -$(MAKE) clean58 rm -rf debian/build 57 59 58 60 dh_clean … … 65 67 66 68 # Add here commands to install the package into debian/tmp 67 $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install69 $(MAKE) -C debian/build DESTDIR=$(CURDIR)/debian/tmp install 68 70 69 71

