wok rev 21318

updated libtirpc and libtirpc-dev (0.2.1 -> 1.1.4)
author Hans-G?nter Theisgen
date Thu Apr 18 17:35:13 2019 +0100 (2019-04-18)
parents f503aa148b52
children 83774c8a65dc
files libtirpc-dev/receipt libtirpc/receipt
line diff
     1.1 --- a/libtirpc-dev/receipt	Thu Apr 18 17:11:52 2019 +0100
     1.2 +++ b/libtirpc-dev/receipt	Thu Apr 18 17:35:13 2019 +0100
     1.3 @@ -1,22 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libtirpc-dev"
     1.7 -VERSION="0.2.1"
     1.8 +VERSION="1.1.4"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Transport-Independent RPC library, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="BSD"
    1.13  WEB_SITE="https://sourceforge.net/projects/libtirpc/"
    1.14 +
    1.15  WANTED="libtirpc"
    1.16 +DEPENDS="libtirpc pkg-config"
    1.17 +
    1.18  HOST_ARCH="i486 arm"
    1.19  
    1.20 -DEPENDS="libtirpc pkg-config"
    1.21 -
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
    1.25  	mkdir -p $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.27 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.28 -	cp -a $install/usr/include $fs/usr
    1.29 +
    1.30 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.31 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.32 +	cp -a $install/usr/include		$fs/usr
    1.33  }
     2.1 --- a/libtirpc/receipt	Thu Apr 18 17:11:52 2019 +0100
     2.2 +++ b/libtirpc/receipt	Thu Apr 18 17:35:13 2019 +0100
     2.3 @@ -1,27 +1,34 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libtirpc"
     2.7 -VERSION="0.2.1"
     2.8 +VERSION="1.1.4"
     2.9  CATEGORY="system-tools"
    2.10  SHORT_DESC="Transport-Independent RPC library."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="BSD"
    2.13 +WEB_SITE="https://sourceforge.net/projects/libtirpc/"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.16 -WEB_SITE="https://sourceforge.net/projects/libtirpc/"
    2.17  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18 +
    2.19  HOST_ARCH="i486 arm"
    2.20  
    2.21  # Rules to configure and make the package.
    2.22  compile_rules()
    2.23  {
    2.24 -	./configure $CONFIGURE_ARGS &&
    2.25 -	make && make install
    2.26 +	./configure			\
    2.27 +		sysconfdir=/etc		\
    2.28 +		--disable-gssapi	\
    2.29 +		$CONFIGURE_ARGS &&
    2.30 +	make -j 1 &&
    2.31 +	make install
    2.32  }
    2.33  
    2.34  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.35  genpkg_rules()
    2.36  {
    2.37  	mkdir -p $fs/usr/lib
    2.38 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.39 -	cp -a $install/etc $fs
    2.40 +
    2.41 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.42 +	cp -a $install/etc		$fs
    2.43  }