summaryrefslogtreecommitdiffstats
path: root/office/apvlv
diff options
context:
space:
mode:
Diffstat (limited to 'office/apvlv')
-rw-r--r--office/apvlv/README7
-rw-r--r--office/apvlv/apvlv.SlackBuild105
-rw-r--r--office/apvlv/apvlv.info10
-rw-r--r--office/apvlv/doinst.sh15
-rw-r--r--office/apvlv/slack-desc19
5 files changed, 0 insertions, 156 deletions
diff --git a/office/apvlv/README b/office/apvlv/README
deleted file mode 100644
index 3d8726a90d..0000000000
--- a/office/apvlv/README
+++ /dev/null
@@ -1,7 +0,0 @@
-Apvlv is a PDF Viewer based on GTK and poppler which uses Vi-like keybindings.
-For example, <Ctrl-f> to forward page, <Ctrl-b> to previous page, 'k','j','h',
-and 'l' to scroll a page up, down, left or right. Typing '50' and <Ctrl-f>
-will go forward 50 pages; typing '30' and <Ctrl-b> will go previous 30 pages.
-Apvlv can support viewing a directory as contents of a pdf document.
-Press 'k' or 'j' to move selected up or down, 'h' or 'l' to collapse or
-expand a dir, and pressing 't' will open the selected document in a new tab.
diff --git a/office/apvlv/apvlv.SlackBuild b/office/apvlv/apvlv.SlackBuild
deleted file mode 100644
index f8e3df9949..0000000000
--- a/office/apvlv/apvlv.SlackBuild
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/bin/sh
-# Slackware build script for apvlv
-
-# Copyright 2010 Eugene Wissner <belka.ew@gmail.com>
-# All rights reserved.
-#
-# Permission to use, copy, modify, and distribute this software for any purpose
-# with or without fee is hereby granted, provided that the above copyright
-# notice and this permission notice appear in all copies.
-#
-# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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
-# AUTHORS AND COPYRIGHT HOLDERS AND THEIR CONTRIBUTORS 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.
-
-# The SlackBuild was written by Grigorios Bouzakis
-
-PRGNAM=apvlv
-VERSION=${VERSION:-0.0.9.8}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-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"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-DOCS="AUTHORS COPYING NEWS README THANKS TODO"
-
-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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --with-docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-# Don't clobber the config file
-mv $PKG/etc/apvlvrc $PKG/etc/apvlvrc.new
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-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 $DOCS $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/office/apvlv/apvlv.info b/office/apvlv/apvlv.info
deleted file mode 100644
index de5ae524b5..0000000000
--- a/office/apvlv/apvlv.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="apvlv"
-VERSION="0.0.9.8"
-HOMEPAGE="http://code.google.com/p/apvlv/"
-DOWNLOAD="http://apvlv.googlecode.com/files/apvlv-0.0.9.8.tar.gz"
-MD5SUM="09885e96707c80ae52b02462a654276a"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Eugene Wissner"
-EMAIL="belka.ew@gmail.com"
-APPROVED="rworkman"
diff --git a/office/apvlv/doinst.sh b/office/apvlv/doinst.sh
deleted file mode 100644
index c8eb9f73c9..0000000000
--- a/office/apvlv/doinst.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/apvlvrc.new
-
diff --git a/office/apvlv/slack-desc b/office/apvlv/slack-desc
deleted file mode 100644
index f351ff49c3..0000000000
--- a/office/apvlv/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-------------------------------------------------------|
-apvlv: apvlv (a PDF viewer which uses Vim keybindigs)
-apvlv:
-apvlv: Apvlv is a PDF viewer based on GTK+2 and poppler which uses
-apvlv: Vim like keybindings.
-apvlv:
-apvlv: Homepage: http://code.google.com/p/apvlv/
-apvlv:
-apvlv:
-apvlv:
-apvlv:
-apvlv: