summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2022-04-25 13:53:20 -0400
committer B. Watson <yalhcru@gmail.com>2022-04-29 10:30:53 -0400
commit73a88ffb6b37630a3c7a72403360f22bff611a58 (patch)
tree90a689df53bf942082dedeaadbfcc29816b445b6 /office
parent8d6a0eff7dd24eb66f4dfd59915f6f4e1e61414b (diff)
downloadslackbuilds-73a88ffb6b37630a3c7a72403360f22bff611a58.tar.gz
slackbuilds-73a88ffb6b37630a3c7a72403360f22bff611a58.tar.xz
office/qpdfview-qt5: Removed (redundant; use qpdfview).
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'office')
-rw-r--r--office/qpdfview-qt5/README2
-rw-r--r--office/qpdfview-qt5/doinst.sh13
-rw-r--r--office/qpdfview-qt5/qpdfview-qt5.SlackBuild121
-rw-r--r--office/qpdfview-qt5/qpdfview-qt5.info10
-rw-r--r--office/qpdfview-qt5/qt-5.15.patch24
-rw-r--r--office/qpdfview-qt5/slack-desc19
6 files changed, 0 insertions, 189 deletions
diff --git a/office/qpdfview-qt5/README b/office/qpdfview-qt5/README
deleted file mode 100644
index e510f80aae..0000000000
--- a/office/qpdfview-qt5/README
+++ /dev/null
@@ -1,2 +0,0 @@
-qpdfview-qt5 is a tabbed document viewer supporting djvu, pdf, and ps.
-This SlackBuild includes support for qt5.
diff --git a/office/qpdfview-qt5/doinst.sh b/office/qpdfview-qt5/doinst.sh
deleted file mode 100644
index aea0f894eb..0000000000
--- a/office/qpdfview-qt5/doinst.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -x /usr/bin/update-mime-database ]; then
- /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
diff --git a/office/qpdfview-qt5/qpdfview-qt5.SlackBuild b/office/qpdfview-qt5/qpdfview-qt5.SlackBuild
deleted file mode 100644
index f2759c2109..0000000000
--- a/office/qpdfview-qt5/qpdfview-qt5.SlackBuild
+++ /dev/null
@@ -1,121 +0,0 @@
-#!/bin/bash
-# Slackware build script for qpdfview
-
-# Copyright 2017-2020 Donald Cooley South Haven, Indiana USA
-# Copyright 2012 Mark Noman <smithmark347@gmail.com>
-# 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.
-
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=qpdfview-qt5
-SRCNAM=qpdfview
-VERSION=${VERSION:-0.4.18}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -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
- SLCKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-echo $PKG
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf "$SRCNAM-$VERSION"
-tar xfv $CWD/$SRCNAM-$VERSION.tar.gz
-cd $SRCNAM-$VERSION
-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 {} \;
-
-patch -p1 < $CWD/qt-5.15.patch
-
-sed -i "s|/usr/lib/qpdfview|/usr/lib${LIBDIRSUFFIX}/qpdfview|" qpdfview.pri
-
-# From Arch pkgbuild. Fix build with texlive in Slackware current.
-sed -e 's|2.0.0|1.21.0|' -i application.pro
-
-# Add localizations
-lrelease-qt5 qpdfview.pro
-
-#Configure qpdfview. Installation paths are correctly set in qpdfview.pri
-qmake-qt5 QMAKE_CFLAGS="$SLKCFLAGS" QMAKE_CXXFLAGS="$SLKCFLAGS" qpdfview.pro
-
-make
-make INSTALL_ROOT=$PKG install
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mv -v $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 \
- CHANGES CONTRIBUTORS COPYING README TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
-#find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
-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 n -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/office/qpdfview-qt5/qpdfview-qt5.info b/office/qpdfview-qt5/qpdfview-qt5.info
deleted file mode 100644
index 7cd4f75cff..0000000000
--- a/office/qpdfview-qt5/qpdfview-qt5.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="qpdfview-qt5"
-VERSION="0.4.18"
-HOMEPAGE="https://launchpad.net/qpdfview"
-DOWNLOAD="https://launchpad.net/qpdfview/trunk/0.4.18/+download/qpdfview-0.4.18.tar.gz"
-MD5SUM="4d63ee0095e939602f9bf4759ae57953"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Donald Cooley"
-EMAIL="chytraeu@sdf.org"
diff --git a/office/qpdfview-qt5/qt-5.15.patch b/office/qpdfview-qt5/qt-5.15.patch
deleted file mode 100644
index ca48432b85..0000000000
--- a/office/qpdfview-qt5/qt-5.15.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: qpdfview-0.4.18/sources/djvumodel.cpp
-===================================================================
---- qpdfview-0.4.18.orig/sources/djvumodel.cpp
-+++ qpdfview-0.4.18/sources/djvumodel.cpp
-@@ -29,6 +29,7 @@ along with qpdfview. If not, see <http:
- #include <cstdio>
-
- #include <QFile>
-+#include <QPainterPath>
- #include <qmath.h>
-
- #if defined(Q_OS_WIN) && defined(DJVU_STATIC)
-Index: qpdfview-0.4.18/sources/model.h
-===================================================================
---- qpdfview-0.4.18.orig/sources/model.h
-+++ qpdfview-0.4.18/sources/model.h
-@@ -27,6 +27,7 @@ along with qpdfview. If not, see <http:
- #include <QtPlugin>
- #include <QWidget>
- #include <QVector>
-+#include <QPainterPath>
-
- class QAbstractItemModel;
- class QColor;
diff --git a/office/qpdfview-qt5/slack-desc b/office/qpdfview-qt5/slack-desc
deleted file mode 100644
index ea2b0d9d59..0000000000
--- a/office/qpdfview-qt5/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------------------------------------------------------|
-qpdfview-qt5: qpdfview-qt5 (tabbed document viewer)
-qpdfview-qt5:
-qpdfview-qt5: qpdfview-qt5 is a tabbed document viewer supporting djvu, pdf, and ps.
-qpdfview-qt5:
-qpdfview-qt5: Current features include:
-qpdfview-qt5: Outline, properties, and thumbnail panes, scale, rotate, and fit,
-qpdfview-qt5: continuous and multiple-page layouts, fullscreen and presentation
-qpdfview-qt5: views, search for text and support for links and forms in pdf files,
-qpdfview-qt5: configurable toolbars and keyboard shortcuts, persistent per-file
-qpdfview-qt5: settings, rudimentary annotation and form support and more.
-qpdfview-qt5: