wok rev 23108

updated libtdb and libtdb-dev (1.2.9 -> 1.4.3)
author Hans-G?nter Theisgen
date Thu Mar 12 13:59:33 2020 +0100 (2020-03-12)
parents b2440f3942f7
children ce958cbd9cf3
files libtdb-dev/receipt libtdb/receipt
line diff
     1.1 --- a/libtdb-dev/receipt	Thu Mar 12 13:38:17 2020 +0100
     1.2 +++ b/libtdb-dev/receipt	Thu Mar 12 13:59:33 2020 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libtdb-dev"
     1.7 -VERSION="1.2.9"
     1.8 +VERSION="1.4.3"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="devlopment files for libtdb"
    1.11 +SHORT_DESC="Development files for libtdb."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="LGPL3"
    1.14 -WEB_SITE="http://tdb.samba.org/"
    1.15 -WANTED="libtdb"
    1.16 +WEB_SITE="https://tdb.samba.org/"
    1.17  
    1.18  DEPENDS="libtdb pkg-config"
    1.19 +WANTED="libtdb"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/local/include $fs/usr
    1.26 -	cp -a $install/usr/local/lib/pkgconfig $fs/usr/lib
    1.27 +
    1.28 +	cp -a $install/usr/local/include	$fs/usr
    1.29 +	cp -a $install/usr/local/lib/pkgconfig	$fs/usr/lib
    1.30  }
    1.31  
     2.1 --- a/libtdb/receipt	Thu Mar 12 13:38:17 2020 +0100
     2.2 +++ b/libtdb/receipt	Thu Mar 12 13:59:33 2020 +0100
     2.3 @@ -1,34 +1,38 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libtdb"
     2.7 -VERSION="1.2.9"
     2.8 +VERSION="1.4.3"
     2.9  CATEGORY="misc"
    2.10 -SHORT_DESC="A Trivia Database similar to GDBM but allows simultaneous commits"
    2.11 +SHORT_DESC="A Trivia Database similar to GDBM but allows simultaneous commits."
    2.12  MAINTAINER="slaxemulator@gmail.com"
    2.13  LICENSE="LGPL3"
    2.14 +WEB_SITE="https://tdb.samba.org/"
    2.15 +
    2.16  SOURCE="tdb"
    2.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.18 -WEB_SITE="http://tdb.samba.org/"
    2.19 -WGET_URL="http://samba.org/ftp/$SOURCE/$TARBALL"
    2.20 +WGET_URL="https://www.samba.org/ftp/$SOURCE/$TARBALL"
    2.21  
    2.22  DEPENDS=""
    2.23 -BUILD_DEPENDS="python-dev libxslt-dev docbook-xsl"
    2.24 +BUILD_DEPENDS="docbook-xsl libxslt-dev py3k-dev"
    2.25  
    2.26  # Rules to configure and make the package.
    2.27  compile_rules()
    2.28  {
    2.29 -	cd $src
    2.30 -	sed -i 's#python2\.6\([^ ]*\)#python2.7\1 python2.6\1#' configure
    2.31 +	# 1.4.3 uses python3
    2.32 +#	sed -i 's#python2\.6\([^ ]*\)#python2.7\1 python2.6\1#' configure
    2.33  	# Use system docbook.xsl
    2.34  	_manstyle="/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl"
    2.35  	#sed -i "s#http.*xsl#$_manstyle#" tdb.mk
    2.36 -	./configure && make && make install
    2.37 +
    2.38 +	./configure &&
    2.39 +	make &&
    2.40 +	make install
    2.41  }
    2.42  
    2.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.44  genpkg_rules()
    2.45  {
    2.46  	mkdir -p $fs/usr/lib
    2.47 -	cp -a $install/usr/local/lib/*.so* $fs/usr/lib
    2.48 +	cp -a $install/usr/local/lib/*.so*	$fs/usr/lib
    2.49  }
    2.50