2009-05-16 02:14:59 +02:00
|
|
|
# Template file for 'gdb'
|
|
|
|
pkgname=gdb
|
2014-05-06 22:18:30 +02:00
|
|
|
version=7.7.1
|
|
|
|
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-01-07 21:09:41 +01:00
|
|
|
configure_args="--disable-werror --disable-nls --with-system-readline --with-system-gdbinit=/etc/gdb/gdbinit"
|
2014-02-27 14:54:19 +01:00
|
|
|
makedepends="ncurses-devel zlib-devel readline-devel>=6.3"
|
2014-01-01 16:10:11 +01:00
|
|
|
conf_files="/etc/gdb/gdbinit"
|
|
|
|
pycompile_dirs="usr/share/gdb/python/gdb"
|
2009-05-16 02:14:59 +02:00
|
|
|
short_desc="The GNU Debugger"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-07-30 10:12:00 +02:00
|
|
|
homepage="http://www.gnu.org/software/gdb/"
|
|
|
|
license="GPL-3"
|
2012-08-20 11:28:19 +02:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/gdb/gdb-$version.tar.bz2"
|
2014-05-06 22:18:30 +02:00
|
|
|
checksum=0dbd5260406f1b0c70fcf027c6488527fadde0cd9bb574593491fe076eb03aa5
|
2009-05-16 02:14:59 +02:00
|
|
|
|
2013-05-27 11:25:10 +02:00
|
|
|
# Package build options
|
|
|
|
build_options="gdbserver static"
|
|
|
|
desc_option_gdbserver="Enable support for building GDB server"
|
|
|
|
desc_option_static="Enable support for building GDB statically"
|
|
|
|
|
|
|
|
# Enable gdbserver if !static.
|
|
|
|
build_options_default="gdbserver"
|
|
|
|
|
|
|
|
if [ "$build_option_gdbserver" ]; then
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
}
|