wok rev 21171

updated libdvdread and libdvdread-dev (4.1.3 -> 6.0.1)
author Hans-G?nter Theisgen
date Mon Apr 01 15:40:03 2019 +0100 (2019-04-01)
parents c5acfdf7d5ad
children 80675e0f496c
files libdvdread-dev/receipt libdvdread/receipt
line diff
     1.1 --- a/libdvdread-dev/receipt	Mon Apr 01 15:12:18 2019 +0100
     1.2 +++ b/libdvdread-dev/receipt	Mon Apr 01 15:40:03 2019 +0100
     1.3 @@ -1,39 +1,39 @@
     1.4  # SliTaz package receipt."
     1.5  
     1.6  PACKAGE="libdvdread-dev"
     1.7 -VERSION="4.1.3"
     1.8 +VERSION="6.0.1"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Librairy for reading DVDs dev files."
    1.11 +SHORT_DESC="Library for reading DVDs - development files."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WANTED="libdvdread"
    1.15  WEB_SITE="http://dvdnav.mplayerhq.hu/"
    1.16  
    1.17 +WANTED="libdvdread"
    1.18  DEPENDS="libdvdread pkg-config"
    1.19  
    1.20  genpkg_rules()
    1.21  {
    1.22  	mkdir -p $fs/usr
    1.23  	
    1.24 -	# Copying include dir if existes
    1.25 +	# Copying include directory, if exists
    1.26  	if [ -d "$install/usr/include" ]; then
    1.27 -		cp -a $install/usr/include $fs/usr
    1.28 +		cp -a $install/usr/include	$fs/usr
    1.29  	fi
    1.30  
    1.31 -	# Copying bin dir if existes
    1.32 +	# Copying bin directory, if exists
    1.33  	if [ -d "$install/usr/bin" ]; then
    1.34 -		cp -a $install/usr/bin $fs/usr
    1.35 +		cp -a $install/usr/bin		$fs/usr
    1.36  	fi
    1.37  
    1.38 -	# Copying pkgconfig dir if existes
    1.39 +	# Copying pkgconfig directory, if exists
    1.40  	if [ -d "$install/usr/lib/pkgconfig" ]; then
    1.41  		test -d $install/usr/lib/ || mkdir -p $install/usr/lib/
    1.42  		cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.43  	fi
    1.44  	
    1.45 -	# Copying static libs if existes
    1.46 +	# Copying static libraries, if exist
    1.47  	if ( find $install/usr/lib -name "*.*a" > /dev/null ); then
    1.48  		test -d $fs/usr/lib || mkdir -p $fs/usr/lib
    1.49 -		cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.50 +		cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.51  	fi
    1.52  }
     2.1 --- a/libdvdread/receipt	Mon Apr 01 15:12:18 2019 +0100
     2.2 +++ b/libdvdread/receipt	Mon Apr 01 15:40:03 2019 +0100
     2.3 @@ -1,24 +1,25 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libdvdread"
     2.7 -VERSION="4.1.3"
     2.8 +VERSION="6.0.1"
     2.9  CATEGORY="system-tools"
    2.10 -SHORT_DESC="Librairy for reading DVDs"
    2.11 +SHORT_DESC="Library for reading DVDs."
    2.12  MAINTAINER="erjo@slitaz.org"
    2.13  LICENSE="GPL2"
    2.14 +WEB_SITE="http://dvdnav.mplayerhq.hu/"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.17 -WEB_SITE="http://dvdnav.mplayerhq.hu/"
    2.18 -WGET_URL="${WEB_SITE}${TARBALL}"
    2.19 +WGET_URL="https://downloads.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
    2.20  
    2.21 -BUILD_DEPENDS="libdvdcss-dev autoconf automake libtool"
    2.22 +BUILD_DEPENDS="libdvdcss-dev libtool"
    2.23  
    2.24  # Rules to configure and make the package.
    2.25  compile_rules()
    2.26  {
    2.27 -	cd $src
    2.28 -	patch -Np1 -i $stuff/DVDFileStat.patch
    2.29 -	./autogen.sh $CONFIGURE_ARGS 2>&1 | grep -v /libtool &&
    2.30 -	make && make install
    2.31 +#	patch -Np1 -i $stuff/DVDFileStat.patch
    2.32 +	./configure $CONFIGURE_ARGS &&
    2.33 +	make -j 1 &&
    2.34 +	make install
    2.35  }
    2.36  
    2.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.38 @@ -27,4 +28,3 @@
    2.39  	mkdir -p $fs/usr/lib
    2.40  	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.41  }
    2.42 -