void-packages/srcpkgs/gdb/template

39 lines
1.3 KiB
Bash
Raw Normal View History

# Template file for 'gdb'
pkgname=gdb
2015-05-15 07:14:36 +02:00
version=7.9.1
revision=4
patch_args="-Np1"
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)
$(vopt_if static 'CFLAGS=-static') $(vopt_with python)"
2015-05-26 15:37:39 +02:00
hostmakedepends="perl $(vopt_if python python-devel)"
makedepends="ncurses-devel zlib-devel readline-devel $(vopt_if python python-devel)"
short_desc="The GNU Debugger"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2011-07-30 10:12:00 +02:00
homepage="http://www.gnu.org/software/gdb/"
license="GPL-3"
distfiles="${GNU_SITE}/$pkgname/$pkgname-$version.tar.xz"
2015-05-15 07:14:36 +02:00
checksum=cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40
if [ "${CROSS_BUILD}" ]; then
# Make python2.7 detection work in cross builds
CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/python2.7"
fi
# Package build options
build_options="gdbserver static python"
desc_option_gdbserver="Enable support for building GDB server"
# Enable gdbserver if !static.
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
2012-01-25 09:15:12 +01:00
post_install() {
# resolve conflicts with binutils
rm -rf ${DESTDIR}/usr/include ${DESTDIR}/usr/lib
[ -d ${DESTDIR}/usr/lib64 ] && rm -rf ${DESTDIR}/usr/lib64
for f in bfd configure standards; do
rm -f ${DESTDIR}/usr/share/info/${f}.info*
done
}