35 lines
1.2 KiB
Text
35 lines
1.2 KiB
Text
# Template file for 'gdb'
|
|
pkgname=gdb
|
|
version=7.8.2
|
|
revision=1
|
|
patch_args="-Np1"
|
|
build_style=gnu-configure
|
|
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)"
|
|
hostmakedepends="perl"
|
|
makedepends="ncurses-devel zlib-devel readline-devel>=6.3 $(vopt_if python python-devel)"
|
|
conf_files="/etc/gdb/gdbinit"
|
|
short_desc="The GNU Debugger"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.gnu.org/software/gdb/"
|
|
license="GPL-3"
|
|
distfiles="http://ftp.gnu.org/gnu/gdb/gdb-$version.tar.xz"
|
|
checksum=605954d5747d5f08ea4b7f48e958d1ebbf39265e18f7f36738deeabb83744485
|
|
|
|
# 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"
|
|
# Both options cannot be enabled at the same time
|
|
vopt_conflict gdbserver static
|
|
|
|
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
|
|
}
|