development/monodevelop-debugger-gdb: Updated for version 4.2.1.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2013-12-05 02:18:28 +07:00 committed by Erik Hanson
parent 2ed3d5cb2a
commit 70c368081d
3 changed files with 16 additions and 13 deletions

View file

@ -1,10 +1,10 @@
GDB Debugger support for MonoDevelop
Mono comes with two Mono-specific debuggers: a hard debugger and a soft
debugger, additionally, you can use the Unix GDB debugger with Mono to
Mono comes with two Mono-specific debuggers: a hard debugger and a soft
debugger, additionally, you can use the Unix GDB debugger with Mono to
debug low level problems.
Until the Mono Debugger is ready for production, GDB can be used to
Until the Mono Debugger is ready for production, GDB can be used to
obtain some information about your application and debug some problems.
For more information:
http://www.mono-project.com/Debugging#Debugging_with_GDB

View file

@ -22,7 +22,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=monodevelop-debugger-gdb
VERSION=${VERSION:-4.0.10}
VERSION=${VERSION:-4.2.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -49,17 +49,20 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION-7.tar.bz2
tar xvf $CWD/$PRGNAM-$VERSION-1.tar.bz2
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
make -j1
make install DESTDIR=$PKG

View file

@ -1,8 +1,8 @@
PRGNAM="monodevelop-debugger-gdb"
VERSION="4.0.10"
VERSION="4.2.1"
HOMEPAGE="http://monodevelop.com/"
DOWNLOAD="http://download.mono-project.com/sources/monodevelop-debugger-gdb/monodevelop-debugger-gdb-4.0.10-7.tar.bz2"
MD5SUM="8e4c1014493db7e47d4ed28fbd610464"
DOWNLOAD="http://download.mono-project.com/sources/monodevelop-debugger-gdb/monodevelop-debugger-gdb-4.2.1-1.tar.bz2"
MD5SUM="cc1b6b98d8474d4d30f6e6ec3a7072fb"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="monodevelop"