2009-05-16 00:14:59 +00:00
|
|
|
# Template file for 'gdb'
|
|
|
|
pkgname=gdb
|
2015-10-15 13:24:21 +00:00
|
|
|
version=7.10
|
2015-10-15 13:56:56 +00:00
|
|
|
revision=2
|
2014-01-07 20:09:41 +00:00
|
|
|
patch_args="-Np1"
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2014-10-30 06:16:41 +00:00
|
|
|
configure_args="--disable-werror --disable-nls --with-system-readline
|
|
|
|
--with-system-gdbinit=/etc/gdb/gdbinit $(vopt_enable gdbserver)
|
2014-11-04 08:48:01 +00:00
|
|
|
$(vopt_if static 'CFLAGS=-static') $(vopt_with python)"
|
2015-05-26 13:37:39 +00:00
|
|
|
hostmakedepends="perl $(vopt_if python python-devel)"
|
2015-10-15 13:56:56 +00:00
|
|
|
makedepends="ncurses-devel zlib-devel readline-devel expat-devel $(vopt_if python python-devel)"
|
2009-05-16 00:14:59 +00:00
|
|
|
short_desc="The GNU Debugger"
|
2015-04-10 07:16:30 +00:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2011-07-30 08:12:00 +00:00
|
|
|
homepage="http://www.gnu.org/software/gdb/"
|
|
|
|
license="GPL-3"
|
2015-05-22 09:47:56 +00:00
|
|
|
distfiles="${GNU_SITE}/$pkgname/$pkgname-$version.tar.xz"
|
2015-10-15 13:24:21 +00:00
|
|
|
checksum=7ebdaa44f9786ce0c142da4e36797d2020c55fa091905ac5af1846b5756208a8
|
2015-10-15 13:56:56 +00:00
|
|
|
# Else build on musl breaks...
|
|
|
|
# http://build.voidlinux.eu/builders/x86_64-musl_builder/builds/5766
|
|
|
|
disable_parallel_build=yes
|
2009-05-16 00:14:59 +00:00
|
|
|
|
2015-05-26 18:02:49 +00: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 09:25:10 +00:00
|
|
|
# Package build options
|
2014-11-04 08:48:01 +00:00
|
|
|
build_options="gdbserver static python"
|
2013-05-27 09:25:10 +00:00
|
|
|
desc_option_gdbserver="Enable support for building GDB server"
|
|
|
|
# Enable gdbserver if !static.
|
2015-05-26 13:33:50 +00:00
|
|
|
build_options_default="gdbserver python"
|
2014-10-30 06:16:41 +00:00
|
|
|
# Both options cannot be enabled at the same time
|
|
|
|
vopt_conflict gdbserver static
|
2013-05-27 09:25:10 +00:00
|
|
|
|
2012-01-25 08:15:12 +00:00
|
|
|
post_install() {
|
2009-05-16 00:14:59 +00:00
|
|
|
# resolve conflicts with binutils
|
|
|
|
rm -rf ${DESTDIR}/usr/include ${DESTDIR}/usr/lib
|
2009-12-28 17:47:44 +00:00
|
|
|
[ -d ${DESTDIR}/usr/lib64 ] && rm -rf ${DESTDIR}/usr/lib64
|
2009-05-16 00:14:59 +00:00
|
|
|
for f in bfd configure standards; do
|
|
|
|
rm -f ${DESTDIR}/usr/share/info/${f}.info*
|
2015-05-22 09:47:56 +00:00
|
|
|
done
|
2009-05-16 00:14:59 +00:00
|
|
|
}
|