#!/bin/sh # Slackware build script for wgetpaste # Written by B. Watson (yalhcru@gmail.com) # Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details. # 20140818 bkw: # - Updated to 2.25. # - Rewrote man page in pod. # 20150124 bkw: # - Changed the default service from bpaste to dpaste, since bpaste # seems to have stopped working. # - Get rid of zlin.dk service, as it's gone away. # - Tested all services. As of this writing, these services work: # dpaste codepad gists poundpython # These do NOT work: # bpaste ca # I haven't tried very hard to get the non-working ones to work, let me know # if you manage it. I notice ca has captchas now, so it'll likely never # work with a script. # - Documented non-working services in man page. # - Replaced no_gentooisms.diff with some sed stuff. # - Bumped BUILD to 2. PRGNAM=wgetpaste VERSION=${VERSION:-2.25} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} ARCH=noarch ZSHDIR=/usr/share/zsh/site-functions CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} set -e rm -rf $PKG mkdir -p $TMP $OUTPUT $PKG/usr/bin $PKG/etc/$PRGNAM.d $PKG/usr/man/man1 $PKG/$ZSHDIR cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; # Un-gentoo-ize the help and error messages, use wgetpaste_info for the # -i and -I options. Set default paste service to something that works, # since bpaste has stopped working. sed -i \ -e '/^DEFAULT_SERVICE/s,bpaste,dpaste,' \ -e 's,emerge --info,wgetpaste_info,g' \ -e 's,emerge x11-misc/,install ,g' \ -e 's,x11-misc/,,g' \ -e '/^INFO_ARGS/s,"[^"]*","",' \ $PRGNAM install -groot -oroot -m0755 $PRGNAM $PKG/usr/bin install -groot -oroot -m0644 _$PRGNAM $PKG/$ZSHDIR install -groot -oroot -m0644 $CWD/$PRGNAM.example $PKG/etc/$PRGNAM.conf.sample install -groot -oroot -m0755 $CWD/${PRGNAM}_info $PKG/usr/bin # Man page made from --help output, by way of POD. gzip -9c $CWD/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz 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.${PKGTYPE:-tgz}