# HG changeset patch # User Eric Joseph-Alexandre # Date 1328316775 -3600 # Node ID 9c29a6103d36b1621e66f01dd1b19fd4435a0861 # Parent c86c7f342e3060795292af819c902a8de75a896e gdal: bump diff -r c86c7f342e30 -r 9c29a6103d36 gdal/receipt --- a/gdal/receipt Fri Feb 03 12:52:00 2012 -0500 +++ b/gdal/receipt Sat Feb 04 01:52:55 2012 +0100 @@ -2,24 +2,34 @@ PACKAGE="gdal" VERSION="1.9.0" -CATEGORY="misc" +CATEGORY="meta" SHORT_DESC="Geospatial Data Abstraction Library." MAINTAINER="erjo@slitaz.org" WEB_SITE="http://www.gdal.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="http://download.osgeo.org/gdal/$TARBALL" -DEPENDS="" -BUILD_DEPENDS="geos-dev proj-dev curl-dev" +DEPENDS="libgdal gdal-bin gdal-datas" +BUILD_DEPENDS="python-dev postgresql-dev geos-dev proj-dev curl-dev \ +swig " # Rules to configure and make the package. compile_rules() { - ./configure $CONFIGURE_ARGS && make && make install + ./configure --sysconfdir=/etc \ + --localstatedir=/var \ + --datadir=/usr/share/gdal \ + --with-threads \ + --with-perl \ + --with-python \ + --with-geos \ + --with-sqlite3=no \ + --with-ogr && make && make install BINDINGS="perl python" } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs + mkdir $fs/usr + }