CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gdb: initial import (verified compilation).
authorVictor Martinez <pitillo@ono.com>
Thu, 23 Sep 2010 07:02:55 +0000 (07:02 +0000)
committerVictor Martinez <pitillo@ono.com>
Thu, 23 Sep 2010 07:02:55 +0000 (07:02 +0000)
gdb/.footprint [new file with mode: 0644]
gdb/.md5sum [new file with mode: 0644]
gdb/Pkgfile [new file with mode: 0644]

diff --git a/gdb/.footprint b/gdb/.footprint
new file mode 100644 (file)
index 0000000..4049fc6
--- /dev/null
@@ -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 (file)
index 0000000..6c2d734
--- /dev/null
@@ -0,0 +1 @@
+64260e6c56979ee750a01055f16091a5  gdb-7.2.tar.bz2
diff --git a/gdb/Pkgfile b/gdb/Pkgfile
new file mode 100644 (file)
index 0000000..37992e6
--- /dev/null
@@ -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}
+}