# HG changeset patch # User Hans-G?nter Theisgen # Date 1580985074 -3600 # Node ID bc9b397dec56ca739b5fdd66e8acf875848bbc7c # Parent d231f44f9f0a3d320a197f8692dbd91566d2714d updated geos and geos-dev (3.5.0 -> 3.8.0) diff -r d231f44f9f0a -r bc9b397dec56 geos-dev/receipt --- a/geos-dev/receipt Wed Feb 05 15:08:31 2020 +0100 +++ b/geos-dev/receipt Thu Feb 06 11:31:14 2020 +0100 @@ -1,24 +1,23 @@ # SliTaz package receipt. PACKAGE="geos-dev" -VERSION="3.5.0" +VERSION="3.8.0" CATEGORY="development" -SHORT_DESC="Geos dev files." +SHORT_DESC="Geos development files." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="https://trac.osgeo.org/geos/" -WANTED="geos" DEPENDS="geos" -BUILD_DEPENDS="" - +WANTED="geos" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib } diff -r d231f44f9f0a -r bc9b397dec56 geos/receipt --- a/geos/receipt Wed Feb 05 15:08:31 2020 +0100 +++ b/geos/receipt Thu Feb 06 11:31:14 2020 +0100 @@ -1,27 +1,33 @@ # SliTaz package receipt. PACKAGE="geos" -VERSION="3.5.0" +VERSION="3.8.0" CATEGORY="misc" SHORT_DESC="Geometry Engine, Open Source." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2.1" WEB_SITE="https://trac.osgeo.org/geos/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" WGET_URL="http://download.osgeo.org/geos/$TARBALL" -DEPENDS="gcc-lib-base" -BUILD_DEPENDS="" +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="gcc83" # Rules to configure and make the package. compile_rules() { - ./configure $CONFIGURE_ARGS && make && make install + ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib }