diff options
author | Erik Hanson <erik@slackbuilds.org> | 2019-11-23 08:58:18 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-12-01 08:50:56 +0700 |
commit | 60bbd23815280e25fc58d0b56a1e0ac2934bcc8a (patch) | |
tree | 1c2f47ef5a6428b49ac70fc0155c8334b738736b /network/RSSOwl | |
parent | ee68f3c36932e573dbc72a55d0b7ffc9c5520216 (diff) |
network/RSSOwl: Removed.
https://github.com/rssowl/RSSOwl/issues/7
https://github.com/rssowl/RSSOwl/issues/8
Diffstat (limited to 'network/RSSOwl')
-rw-r--r-- | network/RSSOwl/README | 5 | ||||
-rw-r--r-- | network/RSSOwl/RSSOwl.SlackBuild | 93 | ||||
-rw-r--r-- | network/RSSOwl/RSSOwl.desktop | 10 | ||||
-rw-r--r-- | network/RSSOwl/RSSOwl.info | 10 | ||||
-rw-r--r-- | network/RSSOwl/doinst.sh | 4 | ||||
-rw-r--r-- | network/RSSOwl/slack-desc | 19 |
6 files changed, 0 insertions, 141 deletions
diff --git a/network/RSSOwl/README b/network/RSSOwl/README deleted file mode 100644 index d203b265b5b3..000000000000 --- a/network/RSSOwl/README +++ /dev/null @@ -1,5 +0,0 @@ -RSSOwl (eclipse based RSS reader) A News Reader for Everyone. RSSOwl lets -you gather, organize, update, and store information from any compliant -source in a convenient, easy to use interface, save selected information in -various formats for offline viewing and sharing, and much more. RSSOwl is -open source, licensed under the terms of the Eclipse Public License. diff --git a/network/RSSOwl/RSSOwl.SlackBuild b/network/RSSOwl/RSSOwl.SlackBuild deleted file mode 100644 index e74ccf654a21..000000000000 --- a/network/RSSOwl/RSSOwl.SlackBuild +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/sh -# -# Slackware build script for RSSOwl -# -# Written by Vincent Batts, vbatts@hashbangbash.com -2009 -# Maintained by Erik Hanson, erik@slackbuilds.org 2010-2014 -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=RSSOwl -VERSION=${VERSION:-2.2.1} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -if [ "$ARCH" = "x86_64" ]; then - LIBDIRSUFFIX="64" - SRC_ARCH="x86_64.zip" -elif [ "$ARCH" = "i486" ]; then - LIBDIRSUFFIX="" - SRC_ARCH="x86.zip" -else - printf "$ARCH is not supported...\n" - exit 1 -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf rssowl -unzip $CWD/rssowl-$VERSION.linux.${SRC_ARCH} -cd rssowl -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 {} \; - -mkdir -p $PKG/usr/bin -ln -s /usr/lib${LIBDIRSUFFIX}/RSSOwl/RSSOwl $PKG/usr/bin/RSSOwl - -mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM -cp -av * $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM - -sed -i 's,libhunspell-1.2.so.0,libhunspell-1.3.so.0,g' $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM/xulrunner/libxul.so - -mkdir -p $PKG/usr/share/pixmaps -cp -av icon.xpm $PKG/usr/share/pixmaps/$PRGNAM.xpm - -mkdir -p $PKG/usr/share/applications -cp -v $CWD/$PRGNAM.desktop $PKG/usr/share/applications/ - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a about* $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 -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/RSSOwl/RSSOwl.desktop b/network/RSSOwl/RSSOwl.desktop deleted file mode 100644 index 6de5a6267e6b..000000000000 --- a/network/RSSOwl/RSSOwl.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Exec=RSSOwl -Icon=RSSOwl -Type=Application -Categories=Network; -Name=RSSOwl -GenericName=RSS News Reader -MimeType=application/rss+xml; -X-KDE-StartupNotify=true - diff --git a/network/RSSOwl/RSSOwl.info b/network/RSSOwl/RSSOwl.info deleted file mode 100644 index a34f2b4f5d47..000000000000 --- a/network/RSSOwl/RSSOwl.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="RSSOwl" -VERSION="2.2.1" -HOMEPAGE="http://www.rssowl.org/" -DOWNLOAD="http://downloads.sourceforge.net/rssowl/rssowl-2.2.1.linux.x86.zip" -MD5SUM="7295bbce792dc921ac89781ac717e6f6" -DOWNLOAD_x86_64="http://downloads.sourceforge.net/rssowl/rssowl-2.2.1.linux.x86_64.zip" -MD5SUM_x86_64="7751803db518b267b0dca121c1532747" -REQUIRES="jdk" -MAINTAINER="Erik Hanson" -EMAIL="erik@slackbuilds.org" diff --git a/network/RSSOwl/doinst.sh b/network/RSSOwl/doinst.sh deleted file mode 100644 index 24e4bc11e095..000000000000 --- a/network/RSSOwl/doinst.sh +++ /dev/null @@ -1,4 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications &> /dev/null -fi - diff --git a/network/RSSOwl/slack-desc b/network/RSSOwl/slack-desc deleted file mode 100644 index ce1ed4d3db0a..000000000000 --- a/network/RSSOwl/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -RSSOwl: RSSOwl (eclipse based RSS, Atom, and News reader) -RSSOwl: -RSSOwl: RSSOwl lets you gather, organize, update, and store information -RSSOwl: from any compliant source in a convenient, easy to use interface, -RSSOwl: save selected information in various formats for offline viewing -RSSOwl: and sharing, and much more. RSSOwl is open source, -RSSOwl: licensed under the terms of the Eclipse Public License. -RSSOwl: -RSSOwl: Homepage: http://www.rssowl.org/ -RSSOwl: -RSSOwl: |