wok diff osm2pgrouting/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 4a1336eda4f9
children 3fe0ed7c1aac
line diff
     1.1 --- a/osm2pgrouting/receipt	Sat Feb 24 22:10:29 2018 +0100
     1.2 +++ b/osm2pgrouting/receipt	Tue Oct 22 12:55:54 2019 +0300
     1.3 @@ -1,23 +1,25 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="osm2pgrouting"
     1.7 -VERSION="2.3.3"
     1.8 +VERSION="2.3.6"
     1.9  CATEGORY="misc"
    1.10 -SHORT_DESC="Import tool for OpenStreetMap data to pgRouting database"
    1.11 +SHORT_DESC="Import tool for OpenStreetMap data to pgRouting database."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="https://github.com/pgRouting/osm2pgrouting"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://github.com/pgRouting/osm2pgrouting"
    1.18  WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
    1.19  
    1.20 -DEPENDS="libpostgresqlclient libboost-program-options expat gcc49-lib-base"
    1.21 -BUILD_DEPENDS="postgresql-dev postgis pgrouting libboost-program-options-dev \
    1.22 -expat-dev libpqxx cmake gcc49"
    1.23 +DEPENDS="expat gcc49-lib-base libboost-program-options libpostgresqlclient"
    1.24 +BUILD_DEPENDS="cmake expat-dev gcc49 libpqxx libboost-program-options-dev \
    1.25 +	pgrouting postgis postgresql-dev"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	export CXX=/usr/bin/i486-slitaz-linux-g++-49
    1.31 +	export CXX=g++-49
    1.32 +
    1.33  	cmake -DCMAKE_INSTALL_PREFIX=/usr -H. -Bbuild
    1.34  	cd build/
    1.35  	make &&