wok-next rev 21517

updated binutils (2.31.1 -> 2.34)
author Hans-G?nter Theisgen
date Fri Jun 19 10:47:47 2020 +0100 (2020-06-19)
parents b879ee306383
children b74b15c5431e
files binutils/receipt
line diff
     1.1 --- a/binutils/receipt	Fri Jun 19 10:42:56 2020 +0100
     1.2 +++ b/binutils/receipt	Fri Jun 19 10:47:47 2020 +0100
     1.3 @@ -1,50 +1,52 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="binutils"
     1.7 -VERSION="2.31.1"
     1.8 +VERSION="2.34"
     1.9  CATEGORY="development"
    1.10 +TAGS_std="LFS assembler linker"
    1.11  SHORT_DESC="GNU assembler, linker and binary utilities"
    1.12 -MAINTAINER="devel@slitaz.org"
    1.13 +MAINTAINER="maintainer@slitaz.org"
    1.14  LICENSE="GPL2 LGPL2 GPL3 LGPL3"
    1.15  WEB_SITE="https://www.gnu.org/software/binutils/"
    1.16  LFS="http://www.linuxfromscratch.org/lfs/view/development/chapter06/binutils.html"
    1.17  
    1.18  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.19  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.20 -TARBALL_SHA1="1c5b0801b4857031d5626d917808cbd5c6401a4b"
    1.21 +# 2.31.1 TARBALL_SHA1="1c5b0801b4857031d5626d917808cbd5c6401a4b"
    1.22  
    1.23 -BUILD_DEPENDS="glibc-dev zlib-dev texinfo bison flex gettext"
    1.24 +BUILD_DEPENDS="bison flex gettext glibc-dev texinfo zlib-dev"
    1.25  SPLIT="libbfd $PACKAGE"
    1.26  
    1.27  COPY_libbfd="libbfd*.so"
    1.28  COPY_std="@std @dev @rm"
    1.29  
    1.30  CAT_libbfd="system-tools|Binary File Descriptor library"
    1.31 -TAGS_std="LFS assembler linker"
    1.32  
    1.33  DEPENDS_libbfd="zlib"
    1.34 -DEPENDS_std="libbfd zlib   flex glibc"
    1.35 +DEPENDS_std="flex glibc libbfd zlib"
    1.36  
    1.37 -compile_rules() {
    1.38 -	./configure \
    1.39 -		--enable-gold \
    1.40 -		--enable-ld=default \
    1.41 -		--enable-plugins \
    1.42 -		--enable-shared \
    1.43 -		--disable-werror \
    1.44 -		--with-system-zlib \
    1.45 +compile_rules()
    1.46 +{
    1.47 +	./configure			\
    1.48 +		 --enable-gold		\
    1.49 +		 --enable-ld=default	\
    1.50 +		 --enable-plugins	\
    1.51 +		 --enable-shared	\
    1.52 +		--disable-werror	\
    1.53 +		--with-system-zlib	\
    1.54  		$CONFIGURE_ARGS &&
    1.55  	make tooldir=/usr &&
    1.56  	make tooldir=/usr install || return 1
    1.57  
    1.58  	# Create prefixed version of the tools.
    1.59  	cd $install/usr/bin
    1.60 -	for i in $(ls); do
    1.61 +	for i in $(ls)
    1.62 +	  do
    1.63  		mv $i $TOOLPREFIX$i
    1.64  		[ $i == 'strings' ] && continue # skip: Busybox intercept
    1.65  		ln -s $TOOLPREFIX$i $i
    1.66 -	done
    1.67 +	  done
    1.68  
    1.69  	# Install libiberty (-liberty flag): dependency described in *.la files
    1.70 -	install -m644 $src/include/libiberty.h $install/usr/include
    1.71 +	install -m644 $src/include/libiberty.h	$install/usr/include
    1.72  }