wok diff gdb-python/receipt @ rev 24736
updated libev and libev-dev (4.31 -> 4.33)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 16 09:25:45 2022 +0100 (2022-03-16) |
parents | 71360a13cd94 |
children | d79ed38ace18 |
line diff
1.1 --- a/gdb-python/receipt Fri Jan 28 18:19:21 2022 +0000 1.2 +++ b/gdb-python/receipt Wed Mar 16 09:25:45 2022 +0100 1.3 @@ -1,19 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gdb-python" 1.7 -VERSION="7.7" 1.8 +VERSION="11.2" 1.9 CATEGORY="development" 1.10 SHORT_DESC="The GNU Project Debugger with Python support." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 -LICENSE="GPL2" 1.13 +LICENSE="GPL3" 1.14 +WEB_SITE="https://www.gnu.org/software/gdb/" 1.15 + 1.16 SOURCE="gdb" 1.17 -TARBALL="$SOURCE-$VERSION.tar.bz2" 1.18 -WEB_SITE="http://www.gnu.org/software/gdb/" 1.19 +TARBALL="$SOURCE-$VERSION.tar.xz" 1.20 WGET_URL="$GNU_MIRROR/$SOURCE/$TARBALL" 1.21 PROVIDE="gdb" 1.22 - 1.23 -DEPENDS="ncurses expat glibc-dev python" 1.24 -BUILD_DEPENDS="ncurses-dev python-dev" 1.25 +SUGGESTED="gdb-lang" 1.26 +DEPENDS="expat gcc83-lib-base glibc-dev gmp ncurses python" 1.27 +BUILD_DEPENDS="gcc83 gmp-dev ncurses-dev python-dev" 1.28 1.29 # What is the latest version available today? 1.30 current_version() 1.31 @@ -25,17 +26,21 @@ 1.32 # Rules to configure and make the package. 1.33 compile_rules() 1.34 { 1.35 - ./configure \ 1.36 - --disable-werror \ 1.37 + ./configure \ 1.38 + CC=gcc-83 \ 1.39 + CXX=g++-83 \ 1.40 + --disable-werror \ 1.41 $CONFIGURE_ARGS && 1.42 - make $MAKEFLAGS && make install 1.43 + make $MAKEFLAGS && 1.44 + make install 1.45 } 1.46 1.47 # Rules to gen a SliTaz package suitable for Tazpkg. 1.48 genpkg_rules() 1.49 { 1.50 mkdir -p $fs/usr/share 1.51 - cp -a $install/usr/bin $fs/usr 1.52 - cp -a $install/usr/lib $fs/usr 1.53 + 1.54 + cook_copy_folders bin 1.55 + cook_copy_folders lib 1.56 cp -a $install/usr/share/gdb $fs/usr/share 1.57 }