diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2009-04-29 12:56:37 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2009-04-29 12:56:37 +0000 |
commit | 1e8b3a8695394d8201a282c97ee70297e3c13e3d (patch) | |
tree | 847578c924f2d480503d7a5f47d2de9b322e0b06 /patches/fetchmail/fetchmail.SlackBuild | |
parent | 1d3107c4da15be40c7a4d08cfa744df8e736fdb2 (diff) | |
download | slackbuilds-1e8b3a8695394d8201a282c97ee70297e3c13e3d.tar.gz slackbuilds-1e8b3a8695394d8201a282c97ee70297e3c13e3d.tar.bz2 |
EOLing old patches
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@2176 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'patches/fetchmail/fetchmail.SlackBuild')
-rwxr-xr-x | patches/fetchmail/fetchmail.SlackBuild | 108 |
1 files changed, 0 insertions, 108 deletions
diff --git a/patches/fetchmail/fetchmail.SlackBuild b/patches/fetchmail/fetchmail.SlackBuild deleted file mode 100755 index 37d31d67..00000000 --- a/patches/fetchmail/fetchmail.SlackBuild +++ /dev/null @@ -1,108 +0,0 @@ -#!/bin/bash -# -# got it from ftp://ftp.slackware.com/pub/slackware/slackware-10.2/patches/source/fetchmail/fetchmail.SlackBuild -# small changes by rhatto -# - -# Set initial variables: - -CWD="`pwd`" - -if [ -f ~/.slackbuildrc ]; then - source ~/.slackbuildrc -elif [ -f /etc/slackbuildrc ]; then - source /etc/slackbuildrc -fi - -PACKAGE="fetchmail" -VERSION=${VERSION:=6.3.4} -ARCH=${ARCH:=i486} -BUILD=${BUILD:=1rha} -TMP=${TMP:=/tmp} -SRC_DIR=${SRC:=$CWD} - -RTOOL="wget" -PACKAGE_EXT="bz2" -SRC="$PACKAGE-$VERSION.tar.$PACKAGE_EXT" -URL="http://download.berlios.de/fetchmail/$SRC" - -if [ "$PACKAGE_EXT" == "bz2" ]; then - tarflag="j" -else - tarflag="z" -fi - -if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then - wget "$URL" -O "$SRC_DIR/$SRC" -fi - -PKG=$TMP/package-fetchmail - -LIBDIR="/usr/lib" -if [ "$ARCH" = "i386" ]; then - SLKCFLAGS="-O2 -march=i386 -mcpu=i686" -elif [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mcpu=i686" -elif [ "$ARCH" = "s390" ]; then - SLKCFLAGS="-O2" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIR="/usr/lib64" -fi - -rm -rf $PKG -mkdir -p $PKG - -cd $TMP -rm -rf fetchmail-$VERSION -tar xvf$tarflag $SRC_DIR/$SRC -cd fetchmail-$VERSION - -# this is the sloppiest source tarball ever -chown -R root.root . -find . -perm 664 -exec chmod 644 {} \; -find . -perm 600 -exec chmod 644 {} \; -find . -perm 444 -exec chmod 644 {} \; -find . -perm 400 -exec chmod 644 {} \; -find . -perm 440 -exec chmod 644 {} \; -find . -perm 777 -exec chmod 755 {} \; -find . -perm 775 -exec chmod 755 {} \; -find . -perm 511 -exec chmod 755 {} \; -find . -perm 711 -exec chmod 755 {} \; -find . -perm 555 -exec chmod 755 {} \; - -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --enable-nls \ - --with-ssl \ - --program-prefix="" \ - --program-suffix="" \ - $ARCH-slackware-linux -make || exit 32 -make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) -chown -R root.bin $PKG/usr/bin -( cd $PKG/usr/man/man1 - rm fetchmailconf.1 - gzip -9 * - ln -sf fetchmail.1.gz fetchmailconf.1.gz -) -mkdir -p $PKG/usr/doc/fetchmail-$VERSION -cp -a \ - ABOUT-NLS COPYING FAQ FEATURES INSTALL NEWS NOTES README README.NTLM README.SSL TODO \ - *.html contrib *.lsm \ - $PKG/usr/doc/fetchmail-$VERSION - -rm -rf $PKG/usr/doc/fetchmail-$VERSION/RCS \ - $PKG/usr/doc/fetchmail-$VERSION/contrib/RCS \ - $PKG/usr/doc/fetchmail-$VERSION/fetchmail-man.html - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -makepkg -l y -c n $TMP/fetchmail-$VERSION-$ARCH-$BUILD.tgz |