diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-07 08:59:49 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-03-06 09:30:22 +0700 |
commit | cf2b7d3ac0323cbed0a3fe04bcff6c206e3a96a3 (patch) | |
tree | b053d266acbcc17f33a564431224dc50c69032ae /development/latrace | |
parent | 1fa99ebc11c25fcacf7cfb288126bfc1fa18df3b (diff) | |
download | slackbuilds-cf2b7d3ac0323cbed0a3fe04bcff6c206e3a96a3.tar.gz |
development/latrace: Removed (no longer build).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/latrace')
-rw-r--r-- | development/latrace/README | 4 | ||||
-rw-r--r-- | development/latrace/doinst.sh | 15 | ||||
-rw-r--r-- | development/latrace/latrace.SlackBuild | 91 | ||||
-rw-r--r-- | development/latrace/latrace.info | 10 | ||||
-rw-r--r-- | development/latrace/slack-desc | 19 |
5 files changed, 0 insertions, 139 deletions
diff --git a/development/latrace/README b/development/latrace/README deleted file mode 100644 index 8d6327770a..0000000000 --- a/development/latrace/README +++ /dev/null @@ -1,4 +0,0 @@ -latrace - glibc 2.4+ LD_AUDIT feature frontend - -latrace allows you to trace library calls and get their statistics -in a manner similar to the strace utility (syscall tracing). diff --git a/development/latrace/doinst.sh b/development/latrace/doinst.sh deleted file mode 100644 index a7f4b1fde0..0000000000 --- a/development/latrace/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -config etc/latrace.d/latrace.conf.new - diff --git a/development/latrace/latrace.SlackBuild b/development/latrace/latrace.SlackBuild deleted file mode 100644 index 899601c4e5..0000000000 --- a/development/latrace/latrace.SlackBuild +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/sh - -# Slackware build script for latrace - -# Written by Menno Duursma <druiloor@zonnet.nl> -# This program is free software. It comes without any warranty. -# Granted WTFPLv2, as published by Sam Hocevar dec'04. -# For details see http://sam.zoy.org/wtfpl/COPYING - -# Updated by Peter Wang <novalazy@gmail.com> - -PRGNAM=latrace -VERSION=${VERSION:-0.5.11} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -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 -L . \ - -type d -exec chmod 0755 {} \; -o \ - -type f -exec chmod u+rw,go+r-w,a-s {} \; - -autoconf - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib$LIBDIRSUFFIX \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install ROOTDIR=$PKG - -# Let's not clobber the main config file, but the headers in -# /etc/latrace.d/headers should be okay to clobber. -mv $PKG/etc/latrace.d/latrace.conf $PKG/etc/latrace.d/latrace.conf.new - -find $PKG -type f | xargs file | grep -e "executable" -e "shared object" \ - | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING README TODO ChangeLog ReleaseNotes $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 -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/latrace/latrace.info b/development/latrace/latrace.info deleted file mode 100644 index 6ed617a672..0000000000 --- a/development/latrace/latrace.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="latrace" -VERSION="0.5.11" -HOMEPAGE="http://people.redhat.com/jolsa/latrace/" -DOWNLOAD="http://people.redhat.com/jolsa/latrace/dl/latrace-0.5.11.tar.bz2" -MD5SUM="138457c7b9eaf3246eddb7856702cddf" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Peter Wang" -EMAIL="novalazy@gmail.com" diff --git a/development/latrace/slack-desc b/development/latrace/slack-desc deleted file mode 100644 index 9431388cf4..0000000000 --- a/development/latrace/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -latrace: latrace (library call trace) -latrace: -latrace: latrace allows you to trace library calls and get their statistics -latrace: in a manner similar to the strace utility (syscall tracing). -latrace: -latrace: latrace was written by Jiri Olsa -latrace: -latrace: -latrace: -latrace: -latrace: |