2009-05-16 02:14:59 +02:00
|
|
|
# Template file for 'gdb'
|
|
|
|
pkgname=gdb
|
2015-05-15 07:14:36 +02:00
|
|
|
version=7.9.1
|
2015-05-26 20:02:49 +02:00
|
|
|
revision=4
|
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)"
|
2015-05-26 15:37:39 +02:00
|
|
|
hostmakedepends="perl $(vopt_if python python-devel)"
|
2015-03-27 10:50:40 +01:00
|
|
|
makedepends="ncurses-devel zlib-devel readline-devel $(vopt_if python python-devel)"
|
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"
|
2015-05-22 11:47:56 +02:00
|
|
|
distfiles="${GNU_SITE}/$pkgname/$pkgname-$version.tar.xz"
|
2015-05-15 07:14:36 +02:00
|
|
|
checksum=cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40
|
2009-05-16 02:14:59 +02:00
|
|
|
|
2015-05-26 20:02:49 +02:00
|
|
|
if [ "${CROSS_BUILD}" ]; then
|
|
|
|
# Make python2.7 detection work in cross builds
|
|
|
|
CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
|
|
fi
|
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.
|
2015-05-26 15:33:50 +02:00
|
|
|
build_options_default="gdbserver python"
|
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*
|
2015-05-22 11:47:56 +02:00
|
|
|
done
|
2009-05-16 02:14:59 +02:00
|
|
|
}
|