diff options
author | Erik Hanson <erik@slackbuilds.org> | 2010-05-12 17:14:35 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-16 22:24:26 -0500 |
commit | 2ab590fa21ed7c1f4d127bb33c3260336b1e2212 (patch) | |
tree | 064ffbe83ffb3303491031f3d0c5be4bebbfdfb4 | |
parent | 50016f79a78fefc3727db2dc6ccd55c25ea87569 (diff) | |
download | slackbuilds-2ab590fa21ed7c1f4d127bb33c3260336b1e2212.tar.gz |
misc/nfoview: Added (viewer for NFO files).
-rw-r--r-- | misc/nfoview/README | 7 | ||||
-rw-r--r-- | misc/nfoview/doinst.sh | 3 | ||||
-rw-r--r-- | misc/nfoview/nfoview.SlackBuild | 77 | ||||
-rw-r--r-- | misc/nfoview/nfoview.info | 10 | ||||
-rw-r--r-- | misc/nfoview/slack-desc | 19 |
5 files changed, 116 insertions, 0 deletions
diff --git a/misc/nfoview/README b/misc/nfoview/README new file mode 100644 index 0000000000..a51aa406ea --- /dev/null +++ b/misc/nfoview/README @@ -0,0 +1,7 @@ +NFO Viewer is a simple viewer for NFO files, which are "ASCII" art +in the CP437 codepage. The advantages of using NFO Viewer instead +of a text editor are preset font and encoding settings, automatic +window size and clickable hyperlinks. + +Note: The preferences dialog does not display due to the outdated +GTK+ in Slackware 13.0. diff --git a/misc/nfoview/doinst.sh b/misc/nfoview/doinst.sh new file mode 100644 index 0000000000..3857649f50 --- /dev/null +++ b/misc/nfoview/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications &> /dev/null +fi diff --git a/misc/nfoview/nfoview.SlackBuild b/misc/nfoview/nfoview.SlackBuild new file mode 100644 index 0000000000..162b72e3be --- /dev/null +++ b/misc/nfoview/nfoview.SlackBuild @@ -0,0 +1,77 @@ +#!/bin/sh +# +# Slackware build script for NFO Viewer +# +# Copyright 2010 Erik W. Hanson, Minneapolis, MN, USA +# 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=nfoview +VERSION=1.9 +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" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +set -eu + +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 . +chmod -R u+w,go+r-w,a-s . + +python setup.py install --prefix=$PKG/usr + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mv $PKG/usr/share/man $PKG/usr/man +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $(find $PKG/usr/man -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog INSTALL NEWS PKG-INFO README TODO \ + $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/misc/nfoview/nfoview.info b/misc/nfoview/nfoview.info new file mode 100644 index 0000000000..436c1f9831 --- /dev/null +++ b/misc/nfoview/nfoview.info @@ -0,0 +1,10 @@ +PRGNAM="nfoview" +VERSION="1.9" +HOMEPAGE="http://home.gna.org/nfoview/" +DOWNLOAD="http://download.gna.org/nfoview/1.9/nfoview-1.9.tar.gz" +MD5SUM="0df0c0302efe2ae82855719205689ecd" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Erik Hanson" +EMAIL="erik@slackbuilds.org" +APPROVED="rworkman" diff --git a/misc/nfoview/slack-desc b/misc/nfoview/slack-desc new file mode 100644 index 0000000000..ece4729d9c --- /dev/null +++ b/misc/nfoview/slack-desc @@ -0,0 +1,19 @@ +# 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----------------------------------------------------| +nfoview: NFO Viewer (a simple viewer for NFO files) +nfoview: +nfoview: NFO Viewer is a simple viewer for NFO files, which are "ASCII" art +nfoview: in the CP437 codepage. The advantages of using NFO Viewer instead +nfoview: of a text editor are preset font and encoding settings, automatic +nfoview: window size and clickable hyperlinks. +nfoview: +nfoview: +nfoview: +nfoview: +nfoview: |