#!/bin/sh # Heavily based on the Slackware 12.0 SlackBuild # http://ed2k-gtk-gui.sourceforge.net/index.shtml # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package NAME=ed2k-gtk-gui VERSION=0.6.4 CHOST=i486 ARCH=${ARCH:-i486} BUILD=1sl if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xjvf $CWD/$NAME-$VERSION.tar.bz2 cd $NAME-$VERSION find . \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) -exec chmod 755 {} \; find . \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; chown -R root:root . CFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --program-prefix= \ --program-suffix= \ --build=$CHOST-slackware-linux make -j4 || exit 1 make install DESTDIR=$PKG || exit 1 mv -f $PKG/usr/share/doc $PKG/usr/ mv -f $PKG/usr/doc/ed2k_gui $PKG/usr/doc/$NAME-$VERSION cp -a ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL README TODO $PKG/usr/doc/$NAME-$VERSION find $PKG/usr/man -type f -exec gzip -9 {} \; cd $PKG tar xzvf $CWD/overnetclc-1.0.1_i386.tgz mv -f $PKG/usr/share/doc/overnetclc $PKG/usr/doc/overnetclc-1.0.1 rm $PKG/usr/doc/overnetclc-1.0.1/changelog.Debian.gz tar xzvf $CWD/edonkeyclc-1.0.2_i386.tgz mv -f $PKG/usr/share/doc/edonkeyclc $PKG/usr/doc/edonkeyclc-1.0.2 rm $PKG/usr/doc/edonkeyclc-1.0.2/changelog.Debian.gz rm -rf $PKG/usr/share/doc find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/*.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi