wok rev 21537

updated neon and neon-dev (0.29.3 -> 0.30.2)
author Hans-G?nter Theisgen
date Sun May 05 14:32:35 2019 +0100 (2019-05-05)
parents f261fa1783f9
children b8d097791146
files neon-dev/receipt neon/receipt
line diff
     1.1 --- a/neon-dev/receipt	Sun May 05 14:20:50 2019 +0100
     1.2 +++ b/neon-dev/receipt	Sun May 05 14:32:35 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="neon-dev"
     1.7 -VERSION="0.29.3"
     1.8 +VERSION="0.30.2"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Neon HTTP and WebDAV client library"
    1.11 +SHORT_DESC="Neon HTTP and WebDAV client library - development files."
    1.12  MAINTAINER="lehswe@gmail.com"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="http://www.webdav.org/neon"
    1.15 -WANTED="neon"
    1.16  
    1.17  DEPENDS="pkg-config"
    1.18 +WANTED="neon"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23  	mkdir -p $fs/usr/lib
    1.24 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 +
    1.28 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.29 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.30 +	cp -a $install/usr/include		$fs/usr
    1.31  }
     2.1 --- a/neon/receipt	Sun May 05 14:20:50 2019 +0100
     2.2 +++ b/neon/receipt	Sun May 05 14:32:35 2019 +0100
     2.3 @@ -1,29 +1,31 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="neon"
     2.7 -VERSION="0.29.3"
     2.8 +VERSION="0.30.2"
     2.9  CATEGORY="development"
    2.10 -SHORT_DESC="Neon HTTP and WebDAV client library"
    2.11 +TAGS="http webdav"
    2.12 +SHORT_DESC="Neon HTTP and WebDAV client library."
    2.13  MAINTAINER="lehswe@gmail.com"
    2.14  LICENSE="GPL2"
    2.15 +WEB_SITE="http://www.webdav.org/neon"
    2.16 +
    2.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.18 -WEB_SITE="http://www.webdav.org/neon"
    2.19  WGET_URL="http://www.webdav.org/neon/$TARBALL"
    2.20 -TAGS="http webdav"
    2.21  
    2.22 -DEPENDS="libssl zlib libkrb5 libcomerr3 expat"
    2.23 -BUILD_DEPENDS="zlib-dev libxml2-dev expat-dev openssl-dev"
    2.24 +DEPENDS="expat libcomerr3 libkrb5 libssl zlib"
    2.25 +BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev zlib-dev"
    2.26  
    2.27  # Rules to configure and make the package.
    2.28  compile_rules()
    2.29  {
    2.30 -	cd $src
    2.31 -	# SOCK_CLOEXEC needs linux 2.6.27+
    2.32 -	#sed -i 's/| SOCK_CLOEXEC//' src/ne_socket.c
    2.33 -	./configure --prefix=/usr --infodir=/usr/share/info \
    2.34 -	--with-ssl=openssl --mandir=/usr/share/man \
    2.35 -	--enable-shared --disable-static \
    2.36 -	$CONFIGURE_ARGS &&
    2.37 +	./configure				\
    2.38 +		--prefix=/usr			\
    2.39 +		--infodir=/usr/share/info	\
    2.40 +		--with-ssl=openssl		\
    2.41 +		--mandir=/usr/share/man		\
    2.42 +		--enable-shared			\
    2.43 +		--disable-static		\
    2.44 +		$CONFIGURE_ARGS &&
    2.45  	make &&
    2.46  	make DESTDIR=$DESTDIR install
    2.47  }
    2.48 @@ -32,8 +34,7 @@
    2.49  genpkg_rules()
    2.50  {
    2.51  	mkdir -p $fs/usr/lib
    2.52 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.53 -	cp -a $install/usr/bin $fs/usr
    2.54 +
    2.55 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.56 +	cp -a $install/usr/bin		$fs/usr
    2.57  }
    2.58 -
    2.59 -