pgRouting

Changeset 190

Show
Ignore:
Timestamp:
07/29/08 09:27:38 (4 months ago)
Author:
takubo
Message:

Update debian scripts for postgresql8.3

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/debian/changelog

    r88 r190  
     1pgrouting (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 
    17pgrouting (1.01svn20080113-1) unstable; urgency=low 
    28 
  • trunk/debian/control

    r88 r190  
    11Source: pgrouting 
    2 Section: misc 
     2Section: libs 
    33Priority: optional 
    44Maintainer: Akio Takubo <takubo@saruga-tondara.net> 
    5 Build-Depends: debhelper (>= 5), postgresql-server-dev-8.2, cmake, libboost-graph-dev 
     5Build-Depends: debhelper (>= 5), postgresql-server-dev-8.3, cmake, libboost-graph-dev | libboost-graph1.35-dev  
    66Standards-Version: 3.7.2 
    7 Section: libs 
    87Homepage: http://pgrouting.postlbs.net/ 
    98 
    10 Package: postgresql-8.2-pgrouting 
     9Package: postgresql-8.3-pgrouting 
    1110Section: libs 
    1211Architecture: any 
    13 Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-8.2-postgis 
    14 Description: routing functionality support for PostgreSQL 8.2 
     12Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-8.3-postgis 
     13Description: routing functionality support for PostgreSQL 8.3 
    1514 pgRouting is part of PostLBS, which provides core tools for Location Based Services (LBS)  
    1615 as Open Source Software (OSS). Its tools are similar to those found on proprietary software. 
     
    2019 PostGIS provides more useful functionnality.  
    2120 . 
    22  This package supports PostgreSQL 8.2
     21 This package supports PostgreSQL 8.3
    2322 
  • trunk/debian/rules

    r88 r190  
    3434        dh_testdir 
    3535        # 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 ../.. 
    3739 
    3840        touch configure-stamp 
     
    4446 
    4547        # Add here commands to compile the package. 
    46         $(MAKE) 
     48        $(MAKE) -C debian/build 
    4749 
    4850        touch $@ 
     
    5456 
    5557        # Add here commands to clean up after the build process. 
    56         -$(MAKE) clean 
     58        rm -rf debian/build 
    5759 
    5860        dh_clean  
     
    6567 
    6668        # Add here commands to install the package into debian/tmp 
    67         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install 
     69        $(MAKE) -C debian/build DESTDIR=$(CURDIR)/debian/tmp install 
    6870 
    6971