mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-01 18:32:58 +02:00
gdb: update to 7.8.1.
This commit is contained in:
parent
cc45da3f6d
commit
39c6597492
1 changed files with 8 additions and 20 deletions
|
@ -1,41 +1,29 @@
|
||||||
# Template file for 'gdb'
|
# Template file for 'gdb'
|
||||||
pkgname=gdb
|
pkgname=gdb
|
||||||
version=7.8
|
version=7.8.1
|
||||||
revision=2
|
revision=1
|
||||||
patch_args="-Np1"
|
patch_args="-Np1"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-werror --disable-nls --with-system-readline --with-system-gdbinit=/etc/gdb/gdbinit"
|
configure_args="--disable-werror --disable-nls --with-system-readline
|
||||||
|
--with-system-gdbinit=/etc/gdb/gdbinit $(vopt_enable gdbserver)
|
||||||
|
$(vopt_if static 'CFLAGS=-static')"
|
||||||
hostmakedepends="perl"
|
hostmakedepends="perl"
|
||||||
makedepends="ncurses-devel zlib-devel readline-devel>=6.3"
|
makedepends="ncurses-devel zlib-devel readline-devel>=6.3"
|
||||||
conf_files="/etc/gdb/gdbinit"
|
conf_files="/etc/gdb/gdbinit"
|
||||||
pycompile_dirs="usr/share/gdb/python/gdb"
|
|
||||||
short_desc="The GNU Debugger"
|
short_desc="The GNU Debugger"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.gnu.org/software/gdb/"
|
homepage="http://www.gnu.org/software/gdb/"
|
||||||
license="GPL-3"
|
license="GPL-3"
|
||||||
distfiles="http://ftp.gnu.org/gnu/gdb/gdb-$version.tar.xz"
|
distfiles="http://ftp.gnu.org/gnu/gdb/gdb-$version.tar.xz"
|
||||||
checksum=49c4abe174f79f54e1f9e75210ffb590d9b497d5b5200b5398c0e073a4ecb875
|
checksum=497722b58386f4428c3474281eb3ef1c872404998b6ace907edb3bba1fabdc35
|
||||||
|
|
||||||
# Package build options
|
# Package build options
|
||||||
build_options="gdbserver static"
|
build_options="gdbserver static"
|
||||||
desc_option_gdbserver="Enable support for building GDB server"
|
desc_option_gdbserver="Enable support for building GDB server"
|
||||||
|
|
||||||
# Enable gdbserver if !static.
|
# Enable gdbserver if !static.
|
||||||
build_options_default="gdbserver"
|
build_options_default="gdbserver"
|
||||||
|
# Both options cannot be enabled at the same time
|
||||||
if [ "$build_option_gdbserver" ]; then
|
vopt_conflict gdbserver static
|
||||||
configure_args+=" --enable-gdbserver=yes"
|
|
||||||
else
|
|
||||||
configure_args+=" --enable-gdbserver=no"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$build_option_static" ]; then
|
|
||||||
configure_args+=" CFLAGS=-static"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$build_option_gdbserver" -a "$build_option_static" ]; then
|
|
||||||
msg_error "$pkgver: gdbserver and static options cannot be enabled at the same time!\n"
|
|
||||||
fi
|
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
# resolve conflicts with binutils
|
# resolve conflicts with binutils
|
||||||
|
|
Loading…
Add table
Reference in a new issue