diff options
author | Menno Duursma <druiloor@zonnet.nl> | 2010-05-12 23:31:35 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:31:35 +0200 |
commit | cf54f1f1ec8697c9dcfb097c556d053efc9efcdf (patch) | |
tree | dee336ec093cb4db5cbed1981882235867b20e79 /misc | |
parent | a1385ffc8244d8892f809c968b4385dad8179682 (diff) | |
download | slackbuilds-cf54f1f1ec8697c9dcfb097c556d053efc9efcdf.tar.gz |
misc/di: Added to 12.2 repository
Diffstat (limited to 'misc')
-rw-r--r-- | misc/di/README | 5 | ||||
-rw-r--r-- | misc/di/di.SlackBuild | 77 | ||||
-rw-r--r-- | misc/di/di.info | 8 | ||||
-rw-r--r-- | misc/di/slack-desc | 18 |
4 files changed, 108 insertions, 0 deletions
diff --git a/misc/di/README b/misc/di/README new file mode 100644 index 0000000000..78e0b4da29 --- /dev/null +++ b/misc/di/README @@ -0,0 +1,5 @@ +'di' is a disk information utility, it can display 'df' +output, and more. It features the ability to display +disk usage in whatever format desired. + +When called as 'mi' it displays info similar to 'mount -l' diff --git a/misc/di/di.SlackBuild b/misc/di/di.SlackBuild new file mode 100644 index 0000000000..1c1a489671 --- /dev/null +++ b/misc/di/di.SlackBuild @@ -0,0 +1,77 @@ +#!/bin/sh + +# Slackware build script for 'di' + +# Written by Menno Duursma <druiloor@zonnet.nl> + +PRGNAM=di +VERSION=${VERSION:-4.13} +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 # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +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 {} \; + +# Pre create man destdir +mkdir -p $PKG/usr/man + +# Set compile options, fix destdir; mandir +sed -i.orig -e "s|^\(CFLAGS = \).*|\1$SLKCFLAGS|" \ + -e "s|^\(prefix = \).*|\1$PKG/usr|" \ + -e "s|/share/man|/man|" Makefile + +make install + +# intl stuff +make install-po + +# Fix the 'mi' installation +( cd $PKG/usr/bin || exit 1 + rm -f mi + ln -sf di mi +) + +find $PKG | xargs file | grep -e "executable" -e "shared object" \ + | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +( cd $PKG/usr/man/man1 || exit 1 + gzip -9 di.1 + ln -sf di.gz mi.gz +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a [A-Z][A-Z]* $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README.$TAG + +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/misc/di/di.info b/misc/di/di.info new file mode 100644 index 0000000000..31a291f5b1 --- /dev/null +++ b/misc/di/di.info @@ -0,0 +1,8 @@ +PRGNAM="di" +VERSION="4.13" +HOMEPAGE="http://www.gentoo.com/di/" +DOWNLOAD="http://www.gentoo.com/di/di-4.13.tar.gz" +MD5SUM="7f774bf1d044c28136373fdd06489cb1" +MAINTAINER="Menno Duursma" +EMAIL="druiloor@zonnet.nl" +APPROVED="dsomero" diff --git a/misc/di/slack-desc b/misc/di/slack-desc new file mode 100644 index 0000000000..e4dc601c42 --- /dev/null +++ b/misc/di/slack-desc @@ -0,0 +1,18 @@ +# 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------------------------------------------------------| +di: di (disk info) +di: +di: a CLI utility similar to 'df' with user formatted output. +di: +di: di was written by Brad Lanam +di: +di: +di: +di: +di: +di: |