2009-05-16 02:14:59 +02:00
|
|
|
# Template file for 'gdb'
|
|
|
|
pkgname=gdb
|
2015-02-20 21:49:43 +01:00
|
|
|
version=7.9
|
2015-01-15 23:12:36 +01:00
|
|
|
revision=1
|
2014-01-07 21:09:41 +01:00
|
|
|
patch_args="-Np1"
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2014-10-30 07:16:41 +01:00
|
|
|
configure_args="--disable-werror --disable-nls --with-system-readline
|
|
|
|
--with-system-gdbinit=/etc/gdb/gdbinit $(vopt_enable gdbserver)
|
2014-11-04 09:48:01 +01:00
|
|
|
$(vopt_if static 'CFLAGS=-static') $(vopt_with python)"
|
2014-09-29 21:19:44 +02:00
|
|
|
hostmakedepends="perl"
|
2015-03-27 10:50:40 +01:00
|
|
|
makedepends="ncurses-devel zlib-devel readline-devel $(vopt_if python python-devel)"
|
2014-01-01 16:10:11 +01:00
|
|
|
conf_files="/etc/gdb/gdbinit"
|
2009-05-16 02:14:59 +02:00
|
|
|
short_desc="The GNU Debugger"
|
2015-04-10 09:16:30 +02:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2011-07-30 10:12:00 +02:00
|
|
|
homepage="http://www.gnu.org/software/gdb/"
|
|
|
|
license="GPL-3"
|
2014-07-30 09:24:26 +02:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/gdb/gdb-$version.tar.xz"
|
2015-02-20 21:49:43 +01:00
|
|
|
checksum=9b315651a16528f7af8c7d8284699fb0c965df316cc7339bb0b7bae335848392
|
2009-05-16 02:14:59 +02:00
|
|
|
|
2013-05-27 11:25:10 +02:00
|
|
|
# Package build options
|
2014-11-04 09:48:01 +01:00
|
|
|
build_options="gdbserver static python"
|
2013-05-27 11:25:10 +02:00
|
|
|
desc_option_gdbserver="Enable support for building GDB server"
|
|
|
|
# Enable gdbserver if !static.
|
|
|
|
build_options_default="gdbserver"
|
2014-10-30 07:16:41 +01:00
|
|
|
# Both options cannot be enabled at the same time
|
|
|
|
vopt_conflict gdbserver static
|
2013-05-27 11:25:10 +02:00
|
|
|
|
2012-01-25 09:15:12 +01:00
|
|
|
post_install() {
|
2009-05-16 02:14:59 +02:00
|
|
|
# resolve conflicts with binutils
|
|
|
|
rm -rf ${DESTDIR}/usr/include ${DESTDIR}/usr/lib
|
2009-12-28 18:47:44 +01:00
|
|
|
[ -d ${DESTDIR}/usr/lib64 ] && rm -rf ${DESTDIR}/usr/lib64
|
2009-05-16 02:14:59 +02:00
|
|
|
for f in bfd configure standards; do
|
|
|
|
rm -f ${DESTDIR}/usr/share/info/${f}.info*
|
|
|
|
done
|
|
|
|
}
|