diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:58 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:58 +0200 |
commit | b6b93d6c00f59e025e821ac6e66bfbdc84862138 (patch) | |
tree | 17fdc5b531bf33f46c82e082278f43f12f570214 /network | |
parent | f6c383057c42792ab850cce890c3d39a1b2ce002 (diff) | |
download | slackbuilds-b6b93d6c00f59e025e821ac6e66bfbdc84862138.tar.gz |
network/snownews: Removed from 13.0 repository
Diffstat (limited to 'network')
-rw-r--r-- | network/snownews/README | 3 | ||||
-rw-r--r-- | network/snownews/slack-desc | 19 | ||||
-rw-r--r-- | network/snownews/snownews.SlackBuild | 71 | ||||
-rw-r--r-- | network/snownews/snownews.info | 8 |
4 files changed, 0 insertions, 101 deletions
diff --git a/network/snownews/README b/network/snownews/README deleted file mode 100644 index ab81660964..0000000000 --- a/network/snownews/README +++ /dev/null @@ -1,3 +0,0 @@ -Snownews is a text mode RSS/RDF newsreader. It supports all versions of RSS -natively and supports other formats via plugins. The program depends on -ncurses for the user interface and uses libxml2 for for XML parsing. diff --git a/network/snownews/slack-desc b/network/snownews/slack-desc deleted file mode 100644 index 4a0d026a43..0000000000 --- a/network/snownews/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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-------------------------------------------------------| -snownews: Snownews (Text mode RSS newsreader) -snownews: -snownews: Snownews is a text mode RSS/RDF newsreader. It supports all -snownews: versions of RSS natively and supports other formats via plugins. -snownews: -snownews: Homepage: http://kiza.kcore.de/software/snownews/ -snownews: -snownews: -snownews: -snownews: -snownews: diff --git a/network/snownews/snownews.SlackBuild b/network/snownews/snownews.SlackBuild deleted file mode 100644 index 244623e042..0000000000 --- a/network/snownews/snownews.SlackBuild +++ /dev/null @@ -1,71 +0,0 @@ -#!/bin/sh - -# Slackware build script for snownews -# Written by Grigorios Bouzakis (grbzks@gmail.com) - -PRGNAM=snownews -VERSION=${VERSION:-1.5.11} -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 - -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 {} \; - -./configure \ - --prefix=/usr -sed -i "s/-O2/$SLKCFLAGS/" platform_settings - -make -make install DESTDIR=$PKG - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) - -mv $PKG/usr/share/man $PKG/usr - -( 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 -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHOR COPYING CREDITS Changelog INSTALL README README.de README.patching \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -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/network/snownews/snownews.info b/network/snownews/snownews.info deleted file mode 100644 index d0ab6d68eb..0000000000 --- a/network/snownews/snownews.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="snownews" -VERSION="1.5.11" -HOMEPAGE="http://kiza.kcore.de/software/snownews/" -DOWNLOAD="http://kiza.kcore.de/software/snownews/download/snownews-1.5.11.tar.gz" -MD5SUM="550e32d9c4a99608840fb09600fbe74d" -MAINTAINER="Grigorios Bouzakis" -EMAIL="grbzks@gmail.com" -APPROVED="rworkman" |