wok diff beecrypt/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 0169e132cc40
children 5f6c5106b1f5
line diff
     1.1 --- a/beecrypt/receipt	Sat Oct 02 15:07:17 2010 +0000
     1.2 +++ b/beecrypt/receipt	Tue Oct 22 12:55:54 2019 +0300
     1.3 @@ -5,27 +5,29 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="Cryptography Library"
     1.6  MAINTAINER="erjo@slitaz.org"
     1.7 -DEPENDS="gcc-lib-base"
     1.8 -BUILD_DEPENDS="python-dev"
     1.9 +LICENSE="GPL2 LGPL2.1"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://beecrypt.sourceforge.net/"
    1.12  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.13  TAGS="cryptography toolkit"
    1.14  
    1.15 +DEPENDS="gcc-lib-base"
    1.16 +BUILD_DEPENDS="python-dev"
    1.17 +
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()
    1.20  {
    1.21  	cd $src
    1.22  	./configure --prefix=/usr --without-cplusplus $CONFIGURE_ARGS &&
    1.23  	make &&
    1.24 -	make DESTDIR=$PWD/_pkg install
    1.25 +	make DESTDIR=$DESTDIR install
    1.26  }
    1.27  
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29  genpkg_rules()
    1.30  {
    1.31  	mkdir -p $fs/usr/lib
    1.32 -	cp -a $_pkg/usr/lib $fs/usr
    1.33 +	cp -a $install/usr/lib $fs/usr
    1.34  	# Deleting unnecessary file
    1.35  	find $fs/ -name "*.*a" -exec rm -f {} \;
    1.36  }