wok rev 11646

gdal: bump
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Feb 04 01:52:55 2012 +0100 (2012-02-04)
parents c86c7f342e30
children 9b6a925948ff
files gdal/receipt
line diff
     1.1 --- a/gdal/receipt	Fri Feb 03 12:52:00 2012 -0500
     1.2 +++ b/gdal/receipt	Sat Feb 04 01:52:55 2012 +0100
     1.3 @@ -2,24 +2,34 @@
     1.4  
     1.5  PACKAGE="gdal"
     1.6  VERSION="1.9.0"
     1.7 -CATEGORY="misc"
     1.8 +CATEGORY="meta"
     1.9  SHORT_DESC="Geospatial Data Abstraction Library."
    1.10  MAINTAINER="erjo@slitaz.org"
    1.11  WEB_SITE="http://www.gdal.org/"
    1.12  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13  WGET_URL="http://download.osgeo.org/gdal/$TARBALL"
    1.14  
    1.15 -DEPENDS=""
    1.16 -BUILD_DEPENDS="geos-dev proj-dev curl-dev"
    1.17 +DEPENDS="libgdal gdal-bin gdal-datas"
    1.18 +BUILD_DEPENDS="python-dev postgresql-dev geos-dev proj-dev curl-dev \
    1.19 +swig "
    1.20  
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24 -	./configure $CONFIGURE_ARGS && make && make install
    1.25 +	./configure --sysconfdir=/etc \
    1.26 +		--localstatedir=/var \
    1.27 +		--datadir=/usr/share/gdal \
    1.28 +		--with-threads \
    1.29 +		--with-perl \
    1.30 +		--with-python \
    1.31 +		--with-geos \
    1.32 +		--with-sqlite3=no \
    1.33 +		--with-ogr && make && make install BINDINGS="perl python"
    1.34  }
    1.35  
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37  genpkg_rules()
    1.38  {
    1.39 -	cp -a $install/* $fs
    1.40 +	mkdir $fs/usr
    1.41 +	
    1.42  }