From effa2deca691c0dcd94a758787faa0d8bc6a1dd4 Mon Sep 17 00:00:00 2001 From: slakmagik Date: Fri, 28 Jan 2011 23:29:08 -0500 Subject: misc/par: Miscellaneous cleanups Remove a bashism (pattern substitution in parameter expansion) and use SRCNAM, instead. Remove unneeded comments. Tweak strip boilerplate. Incoporate gzip in the sed of the man page and remove useless old-style man page boilerplate. Make comments clearer. Fix a misaligned ruler in the slack-desc. Signed-off-by: Robby Workman --- misc/par/par.SlackBuild | 23 +++++++++-------------- misc/par/slack-desc | 2 +- 2 files changed, 10 insertions(+), 15 deletions(-) (limited to 'misc') diff --git a/misc/par/par.SlackBuild b/misc/par/par.SlackBuild index 36ceba50b9..e8010bf4a4 100644 --- a/misc/par/par.SlackBuild +++ b/misc/par/par.SlackBuild @@ -6,15 +6,14 @@ PRGNAM=par VERSION=${VERSION:-1.52} +SRCNAM=Par152 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -44,8 +43,8 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/Par${VERSION/./}.tar.gz -cd Par${VERSION/./} +tar xvf $CWD/$SRCNAM.tar.gz +cd $SRCNAM chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -57,20 +56,16 @@ make -f protoMakefile CC="cc -c" LINK1="cc" LINK2="-o" RM="rm" JUNK="" mkdir -p $PKG/usr/bin install par $PKG/usr/bin -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | + cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/man/man1 -# avoid tripping up extension sniffers -sed 's/par\.doc/par.txt/g' par.1 > $PKG/usr/man/man1/par.1 - -( 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 -) +# make the manual reflect a filename change which will be made below +sed 's/par\.doc/par.txt/g' par.1 | gzip -c > $PKG/usr/man/man1/par.1.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -# as above +# change the filename (and its references to itself) to avoid tripping up +# extension sniffers sed 's/par\.doc/par.txt/g' par.doc > $PKG/usr/doc/$PRGNAM-$VERSION/par.txt cat releasenotes > $PKG/usr/doc/$PRGNAM-$VERSION/releasenotes cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild diff --git a/misc/par/slack-desc b/misc/par/slack-desc index 5f02ed9dcd..c0eabd6fc0 100644 --- a/misc/par/slack-desc +++ b/misc/par/slack-desc @@ -5,7 +5,7 @@ # make exactly 11 lines for the formatting to be correct. It's also # customary to leave one space after the ':'. - |-----handy-ruler------------------------------------------------------| + |-----handy-ruler------------------------------------------------------| par: par (paragraph reformatter) par: par: par is a paragraph reformatter, vaguely similar to fmt, but better. -- cgit v1.2.3