From d2ccefdfd7c2c454670b37581c88279d325eb70c Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Tue, 8 Mar 2016 11:52:23 +0700 Subject: development/latrace: Re-Added after current update. Revert "development/latrace: Removed (no longer build)." This reverts commit cf2b7d3ac0323cbed0a3fe04bcff6c206e3a96a3. Signed-off-by: Willy Sudiarto Raharjo --- development/latrace/README | 4 ++ development/latrace/doinst.sh | 15 ++++++ development/latrace/latrace.SlackBuild | 91 ++++++++++++++++++++++++++++++++++ development/latrace/latrace.info | 10 ++++ development/latrace/slack-desc | 19 +++++++ 5 files changed, 139 insertions(+) create mode 100644 development/latrace/README create mode 100644 development/latrace/doinst.sh create mode 100644 development/latrace/latrace.SlackBuild create mode 100644 development/latrace/latrace.info create mode 100644 development/latrace/slack-desc (limited to 'development/latrace') diff --git a/development/latrace/README b/development/latrace/README new file mode 100644 index 0000000000..8d6327770a --- /dev/null +++ b/development/latrace/README @@ -0,0 +1,4 @@ +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 new file mode 100644 index 0000000000..a7f4b1fde0 --- /dev/null +++ b/development/latrace/doinst.sh @@ -0,0 +1,15 @@ +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 new file mode 100644 index 0000000000..899601c4e5 --- /dev/null +++ b/development/latrace/latrace.SlackBuild @@ -0,0 +1,91 @@ +#!/bin/sh + +# Slackware build script for latrace + +# Written by Menno Duursma +# 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 + +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 new file mode 100644 index 0000000000..6ed617a672 --- /dev/null +++ b/development/latrace/latrace.info @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000000..9431388cf4 --- /dev/null +++ b/development/latrace/slack-desc @@ -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 ':' 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: -- cgit v1.2.3-65-gdbad