wok diff tk/receipt @ rev 22639

dd_rescue: update $TARBALL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 13 21:10:17 2020 +0100 (2020-01-13)
parents d1139a9dbf88
children a990d22836c7
line diff
     1.1 --- a/tk/receipt	Sat May 07 15:28:14 2016 +0200
     1.2 +++ b/tk/receipt	Mon Jan 13 21:10:17 2020 +0100
     1.3 @@ -1,21 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tk"
     1.7 -VERSION="8.6.3"
     1.8 +VERSION="8.6.9.1"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="The TCL gui toolkit"
    1.11 +TAGS="programming language"
    1.12 +SHORT_DESC="The TCL gui toolkit."
    1.13  MAINTAINER="erjo@slitaz.org"
    1.14  LICENSE="BSD"
    1.15 +WEB_SITE="http://www.tcl.tk/"
    1.16 +
    1.17  TARBALL="${PACKAGE}${VERSION}-src.tar.gz"
    1.18 -WEB_SITE="http://tcl.sourceforge.net/"
    1.19  WGET_URL="$SF_MIRROR/tcl/$TARBALL"
    1.20 -TAGS="programming language"
    1.21 +
    1.22 +DEPENDS="expat fontconfig freetype tcl xorg-libX11 xorg-libXau xorg-libXdmcp \
    1.23 +	xorg-libXft xorg-libXrender xorg-libXss zlib"
    1.24 +BUILD_DEPENDS="tcl-dev xorg-libX11-dev"
    1.25 +
    1.26  HOST_ARCH="i486 arm"
    1.27  
    1.28 -DEPENDS="tcl expat fontconfig freetype xorg-libX11 xorg-libXau xorg-libXdmcp \
    1.29 -xorg-libXft xorg-libXrender zlib xorg-libXss"
    1.30 -BUILD_DEPENDS="tcl-dev xorg-libX11-dev"
    1.31 -
    1.32  # Rules to configure and make the package.
    1.33  compile_rules()
    1.34  {
    1.35 @@ -25,11 +27,12 @@
    1.36  			export tcl_cv_strtod_buggy=1
    1.37  			export ac_cv_func_strtod=yes ;;
    1.38  	esac
    1.39 +
    1.40  	cd $src/unix
    1.41 -	./configure \
    1.42 -		--prefix=/usr \
    1.43 -		--enable-threads \
    1.44 -		--enable-shared \
    1.45 +	./configure			\
    1.46 +		--prefix=/usr		\
    1.47 +		--enable-threads	\
    1.48 +		--enable-shared		\
    1.49  		$ARCH_ARGS ${CONFIGURE_ARGS} &&
    1.50  	make &&
    1.51  	make DESTDIR=$DESTDIR install
    1.52 @@ -39,10 +42,11 @@
    1.53  genpkg_rules()
    1.54  {
    1.55  	mkdir -p $fs/usr/lib
    1.56 -	cp -a $install/usr/bin $fs/usr
    1.57 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.58 +
    1.59 +	cp -a $install/usr/bin		$fs/usr
    1.60 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.61  	cp -a $install/usr/lib/tk${VERSION:0:3} $fs/usr/lib
    1.62 -	
    1.63 +
    1.64  	cd $fs/usr/bin
    1.65  	ln -s wish${VERSION:0:3} wish
    1.66  }