2009-05-16 02:14:59 +02:00
|
|
|
# Template file for 'gdb'
|
|
|
|
pkgname=gdb
|
2013-04-27 10:12:03 +02:00
|
|
|
version=7.6
|
2013-05-27 11:25:10 +02:00
|
|
|
revision=2
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2012-11-30 05:44:13 +01:00
|
|
|
configure_args="--disable-nls --with-system-readline
|
|
|
|
--with-system-gdbinit=/etc/gdb/gdbinit"
|
2013-04-27 10:12:03 +02:00
|
|
|
makedepends="ncurses-devel zlib-devel readline-devel"
|
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"
|
2013-04-27 10:12:03 +02:00
|
|
|
checksum=a410e8f35ee70cce83dbbf1da9e2a8373f271ac0e4b71db4336ae293fc7bdf1b
|
2009-05-16 02:14:59 +02:00
|
|
|
long_desc="
|
|
|
|
The purpose of a debugger such as GDB is to allow you to see what
|
2011-07-14 01:21:02 +02:00
|
|
|
is going on inside another program while it executes--or what
|
2009-05-16 02:14:59 +02:00
|
|
|
another program was doing at the moment it crashed.
|
|
|
|
|
|
|
|
GDB can do four main kinds of things (plus other things in support
|
|
|
|
of these) to help you catch bugs in the act:
|
|
|
|
|
2013-03-13 21:31:55 +01:00
|
|
|
* Start your program, specifying anything that might affect its behavior.
|
2009-05-16 02:14:59 +02:00
|
|
|
* Make your program stop on specified conditions.
|
|
|
|
* Examine what has happened, when your program has stopped.
|
2013-03-13 21:31:55 +01:00
|
|
|
* Change things in your program, so you can experiment with correcting the
|
|
|
|
effects of one bug and go on to learn about another."
|
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
|
|
|
|
}
|
2013-04-12 13:13:49 +02:00
|
|
|
|
|
|
|
gdb_package() {
|
|
|
|
conf_files="/etc/gdb/gdbinit"
|
|
|
|
pycompile_dirs="usr/share/gdb/python/gdb"
|
|
|
|
pkg_install() {
|
2013-04-27 10:12:03 +02:00
|
|
|
vmove all
|
2013-04-12 13:13:49 +02:00
|
|
|
}
|
|
|
|
}
|