development/kdbg: Added to 12.0 repository

This commit is contained in:
Aleksandar Samardzic 2010-05-11 20:00:25 +02:00 committed by Robby Workman
parent 626a6ae87d
commit d48cff418f
4 changed files with 87 additions and 0 deletions

3
development/kdbg/README Normal file
View file

@ -0,0 +1,3 @@
KDbg is a graphical user interface to gdb, the GNU debugger. It
provides an intuitive interface for setting breakpoints, inspecting
variables, and stepping through code.

View file

@ -0,0 +1,57 @@
#!/bin/sh
# Slackware build script for KDbg
# Written by Aleksandar B. Samardzic (<asamardzic@matf.bg.ac.yu>)
set -e
PRGNAM=kdbg
VERSION=2.0.5
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
make
make install DESTDIR=$PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a BUGS COPYING ChangeLog README TODO $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View file

@ -0,0 +1,8 @@
PRGNAM="kdbg"
VERSION="2.0.5"
HOMEPAGE="http://www.kdbg.org/"
DOWNLOAD="http://downloads.sourceforge.net/kdbg/kdbg-2.0.5.tar.gz"
MD5SUM="1c0a90c82f27c0ddcdf0a4434d85119b"
MAINTAINER="Aleksandar B. Samardzic"
EMAIL="asamardzic@matf.bg.ac.yu"
APPROVED="rworkman"

View file

@ -0,0 +1,19 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
kdbg: KDbg (front-end for gdb)
kdbg:
kdbg: KDbg is a graphical user interface to gdb, the GNU debugger.
kdbg: It provides an intuitive interface for setting breakpoints,
kdbg: inspecting variables, and stepping through code.
kdbg:
kdbg: KDbg home page is: http://www.kdbg.org/
kdbg:
kdbg:
kdbg:
kdbg: