wok rev 21374

updated log4c and log4c-dev (1.2.1 -> 1.2.4)
author Hans-G?nter Theisgen
date Mon Apr 22 09:12:02 2019 +0100 (2019-04-22)
parents 9583b2208286
children 65377becef99
files log4c-dev/receipt log4c/receipt
line diff
     1.1 --- a/log4c-dev/receipt	Mon Apr 22 08:57:09 2019 +0100
     1.2 +++ b/log4c-dev/receipt	Mon Apr 22 09:12:02 2019 +0100
     1.3 @@ -1,22 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="log4c-dev"
     1.7 -VERSION="1.2.1"
     1.8 +VERSION="1.2.4"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Log4c development files"
    1.11 +SHORT_DESC="Log4c - development files"
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="LGPL2.1"
    1.14 -WEB_SITE="http://log4c.sourceforge.net"
    1.15 -WANTED="log4c"
    1.16 +WEB_SITE="https://log4c.sourceforge.io"
    1.17  
    1.18  DEPENDS="log4c"
    1.19 +WANTED="log4c"
    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/bin $fs/usr
    1.26 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.27 -	cp -a $install/usr/include $fs/usr
    1.28 -	cp -a $install/usr/share $fs/usr
    1.29 +
    1.30 +	cp -a $install/usr/bin		$fs/usr
    1.31 +	cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.32 +	cp -a $install/usr/include	$fs/usr
    1.33 +	cp -a $install/usr/share	$fs/usr
    1.34  }
     2.1 --- a/log4c/receipt	Mon Apr 22 08:57:09 2019 +0100
     2.2 +++ b/log4c/receipt	Mon Apr 22 09:12:02 2019 +0100
     2.3 @@ -1,14 +1,15 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="log4c"
     2.7 -VERSION="1.2.1"
     2.8 +VERSION="1.2.4"
     2.9  CATEGORY="system-tools"
    2.10 -SHORT_DESC="Logging for C Library"
    2.11 +SHORT_DESC="Logging for C Library."
    2.12  MAINTAINER="erjo@slitaz.org"
    2.13  LICENSE="LGPL2.1"
    2.14 -WEB_SITE="http://log4c.sourceforge.net"
    2.15 +WEB_SITE="https://log4c.sourceforge.io"
    2.16 +
    2.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.18 -WGET_URL="http://prdownloads.sourceforge.net/log4c/$TARBALL"
    2.19 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.20  
    2.21  DEPENDS=""
    2.22  BUILD_DEPENDS=""
    2.23 @@ -16,14 +17,18 @@
    2.24  # Rules to configure and make the package.
    2.25  compile_rules()
    2.26  {
    2.27 -	./configure $CONFIGURE_ARGS \
    2.28 -		--sysconfdir=/etc && make && make install
    2.29 +	./configure			\
    2.30 +		--sysconfdir=/etc	\
    2.31 +		$CONFIGURE_ARGS &&
    2.32 +	make -j 1 &&
    2.33 +	make install
    2.34  }
    2.35  
    2.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.37  genpkg_rules()
    2.38  {
    2.39  	mkdir -p $fs/usr/lib $fs/etc
    2.40 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.41 -	cp -a $install/etc/log4crc.sample $fs/etc/log4crc
    2.42 +
    2.43 +	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    2.44 +	cp -a $install/etc/log4crc.sample	$fs/etc/log4crc
    2.45  }