wok-next rev 16316

Up: gdb (7.7) and add to ARM (we need debugging now!)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 15:22:40 2014 +0200 (2014-04-09)
parents c46591bcff38
children c3c55061e3e4
files gdb-dev/receipt gdb-python/receipt gdb/receipt
line diff
     1.1 --- a/gdb-dev/receipt	Wed Apr 09 14:57:01 2014 +0200
     1.2 +++ b/gdb-dev/receipt	Wed Apr 09 15:22:40 2014 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt."
     1.5  
     1.6  PACKAGE="gdb-dev"
     1.7 -VERSION="7.4.1"
     1.8 +VERSION="7.7"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="The GNU Project Debugger dev files."
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12 @@ -9,6 +9,7 @@
    1.13  DEPENDS="gdb"
    1.14  WANTED="gdb"
    1.15  WEB_SITE="http://www.gnu.org/software/gdb/"
    1.16 +HOST_ARCH="i486 arm"
    1.17  
    1.18  genpkg_rules()
    1.19  {
     2.1 --- a/gdb-python/receipt	Wed Apr 09 14:57:01 2014 +0200
     2.2 +++ b/gdb-python/receipt	Wed Apr 09 15:22:40 2014 +0200
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="gdb-python"
     2.7 -VERSION="7.4.1"
     2.8 +VERSION="7.7"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="The GNU Project Debugger with Python support."
    2.11  MAINTAINER="erjo@slitaz.org"
    2.12 @@ -18,11 +18,10 @@
    2.13  # Rules to configure and make the package.
    2.14  compile_rules()
    2.15  {
    2.16 -	cd $src
    2.17 -	./configure --prefix=/usr \
    2.18 -		--disable-werror $CONFIGURE_ARGS && \
    2.19 -	make $MAKEFLAGS &&
    2.20 -	make DESTDIR=$DESTDIR install
    2.21 +	./configure \
    2.22 +		--disable-werror \
    2.23 +		$CONFIGURE_ARGS &&
    2.24 +	make $MAKEFLAGS && make install
    2.25  }
    2.26  
    2.27  # Rules to gen a SliTaz package suitable for Tazpkg.
     3.1 --- a/gdb/receipt	Wed Apr 09 14:57:01 2014 +0200
     3.2 +++ b/gdb/receipt	Wed Apr 09 15:22:40 2014 +0200
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="gdb"
     3.7 -VERSION="7.4.1"
     3.8 +VERSION="7.7"
     3.9  CATEGORY="development"
    3.10  SHORT_DESC="The GNU Project Debugger."
    3.11  MAINTAINER="erjo@slitaz.org"
    3.12 @@ -9,6 +9,7 @@
    3.13  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.14  WEB_SITE="http://www.gnu.org/software/gdb/"
    3.15  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    3.16 +HOST_ARCH="i486 arm"
    3.17  
    3.18  DEPENDS="ncurses expat glibc-dev"
    3.19  BUILD_DEPENDS="ncurses-dev readline-dev"
    3.20 @@ -16,12 +17,11 @@
    3.21  # Rules to configure and make the package.
    3.22  compile_rules()
    3.23  {
    3.24 -	cd $src
    3.25 -	./configure --prefix=/usr \
    3.26 +	./configure \
    3.27  		--with-python=no \
    3.28 -		--disable-werror $CONFIGURE_ARGS && \
    3.29 -	make &&
    3.30 -	make DESTDIR=$DESTDIR install
    3.31 +		--disable-werror \
    3.32 +		$CONFIGURE_ARGS && \
    3.33 +	make && make install
    3.34  }
    3.35  
    3.36  # Rules to gen a SliTaz package suitable for Tazpkg.