summaryrefslogtreecommitdiff
path: root/development
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:58 +0200
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:58 +0200
commit42868e44d8a9ccbba30f844c06edbfef5d69fdcc (patch)
treeeafb002bada93058f37def23211b5b3e2a9a0c6f /development
parent7f08d642b8f36acdf3b0490db7f7f411131abe76 (diff)
downloadslackbuilds-42868e44d8a9ccbba30f844c06edbfef5d69fdcc.tar.gz
development/bugle: Removed from 13.0 repository
Diffstat (limited to 'development')
-rw-r--r--development/bugle/README21
-rw-r--r--development/bugle/bugle.SlackBuild77
-rw-r--r--development/bugle/bugle.info8
-rw-r--r--development/bugle/slack-desc19
4 files changed, 0 insertions, 125 deletions
diff --git a/development/bugle/README b/development/bugle/README
deleted file mode 100644
index 3e5409a063..0000000000
--- a/development/bugle/README
+++ /dev/null
@@ -1,21 +0,0 @@
-BuGLe is a tool for OpenGL debugging, implemented as a wrapper library
-that sits between your program and OpenGL. While still in development,
-it can already do the following:
- * Dump a textual log of all GL calls made.
- * Take a screenshot or capture a video.
- * Call glGetError after each call to check for errors, and wrap
- glGetError so that this checking is transparent to your program.
- * Capture and display statistics (such as frame rate)
- * Force a wireframe mode
- * Recover a backtrace from segmentation faults inside the driver,
- even if the driver is compiled without symbols.
-
-In addition, there is a debugger (gldb) that lets you set breakpoints
-and examine backtraces. It also lets you examine OpenGL state, enable
-and disable filters, and drop into gdb to see what is going wrong. A
-GUI version of the debugger (gldb-gui) is currently in development,
-and a preliminary version is available with the latest releases. It
-features a texture viewer and a shader viewer.
-
-The package is dependent upon glew package, also available here at
-SlackBuilds.org.
diff --git a/development/bugle/bugle.SlackBuild b/development/bugle/bugle.SlackBuild
deleted file mode 100644
index 37fcaaa15b..0000000000
--- a/development/bugle/bugle.SlackBuild
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for BuGLe
-
-# Written by Aleksandar Samardzic <asamardzic@gmail.com>
-
-# Modified by the SlackBuilds.org project
-# (assumed to be public domain per our submission policy)
-
-PRGNAM=bugle
-VERSION=${VERSION:-0.0.20080824}
-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"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --enable-static=no
-
-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 || true
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-)
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS README TODO \
- doc/examples doc/extensions.txt doc/filters.html doc/html doc/locks.txt \
- doc/protocol.txt $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
diff --git a/development/bugle/bugle.info b/development/bugle/bugle.info
deleted file mode 100644
index 6084d0c0d7..0000000000
--- a/development/bugle/bugle.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="bugle"
-VERSION="0.0.20080123"
-HOMEPAGE="http://www.opengl.org/sdk/tools/BuGLe/"
-DOWNLOAD="http://downloads.sourceforge.net/bugle/bugle-0.0.20080824.tar.bz2"
-MD5SUM="ba640a340e56a8ed0e5ffc96853c0e0f"
-MAINTAINER="Aleksandar Samardzic"
-EMAIL="asamardzic@gmail.com"
-APPROVED="dsomero"
diff --git a/development/bugle/slack-desc b/development/bugle/slack-desc
deleted file mode 100644
index 1ab9c53e35..0000000000
--- a/development/bugle/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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-------------------------------------------------------|
-bugle: BuGLe (a tool for OpenGL debugging)
-bugle:
-bugle: BuGLe combines a graphical OpenGL debugger with a selection of
-bugle: filters on the OpenGL command stream. The debugger allows
-bugle: viewing of state, textures, framebuffers and shaders, while the
-bugle: filters allow for logging, error checking, video capture and more.
-bugle:
-bugle: Homepage: http://www.opengl.org/sdk/tools/BuGLe/
-bugle:
-bugle:
-bugle: