diff options
Diffstat (limited to 'development')
3 files changed, 16 insertions, 13 deletions
diff --git a/development/monodevelop-debugger-gdb/README b/development/monodevelop-debugger-gdb/README index e7b89e2c4c..2b4fcd1ee3 100644 --- a/development/monodevelop-debugger-gdb/README +++ b/development/monodevelop-debugger-gdb/README @@ -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 diff --git a/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.SlackBuild b/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.SlackBuild index b99081310b..63b86957da 100644 --- a/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.SlackBuild +++ b/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.SlackBuild @@ -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 diff --git a/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.info b/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.info index 5c4a2450d8..8e54a986c5 100644 --- a/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.info +++ b/development/monodevelop-debugger-gdb/monodevelop-debugger-gdb.info @@ -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" |