From: Victor Martinez Date: Thu, 23 Sep 2010 07:02:55 +0000 (+0000) Subject: gdb: initial import (verified compilation). X-Git-Url: http://gitweb/?a=commitdiff_plain;h=219a21c9b9910482fc9be2aa3eb9454c9b3ca12b;hp=40a26b078438dc295e52300af9936f5cc2ffc6be;p=attic%2Fports%2Fopt-cross.git gdb: initial import (verified compilation). --- diff --git a/gdb/.footprint b/gdb/.footprint new file mode 100644 index 0000000..4049fc6 --- /dev/null +++ b/gdb/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gdb +-rwxr-xr-x root/root usr/bin/gdbserver +-rwxr-xr-x root/root usr/bin/gdbtui +-rwxr-xr-x root/root usr/bin/run +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/gdb.1.gz +-rw-r--r-- root/root usr/man/man1/gdbserver.1.gz +-rw-r--r-- root/root usr/man/man1/gdbtui.1.gz +-rw-r--r-- root/root usr/man/man1/run.1.gz diff --git a/gdb/.md5sum b/gdb/.md5sum new file mode 100644 index 0000000..6c2d734 --- /dev/null +++ b/gdb/.md5sum @@ -0,0 +1 @@ +64260e6c56979ee750a01055f16091a5 gdb-7.2.tar.bz2 diff --git a/gdb/Pkgfile b/gdb/Pkgfile new file mode 100644 index 0000000..37992e6 --- /dev/null +++ b/gdb/Pkgfile @@ -0,0 +1,21 @@ +# Description: The GNU Debugger (GDB) +# URL: http://sources.redhat.com/gdb/ +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: ncurses + +name=gdb +version=7.2 +release=1 +source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2) + +build() { + cd $name-$version + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --mandir=/usr/man + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/{info,share,lib,include} +}