diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2020-07-03 05:49:44 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-17 23:57:59 -0500 |
commit | 73732212860fcc2b4ef0c94e1d62780673c37690 (patch) | |
tree | 20dc04d59b614531e18d77082aae988b10d2ce97 /graphics | |
parent | 87761d70267a42b532e52b2beb5354cb13ef2990 (diff) |
graphics/scantailor: Removed (incompatible with qt5-5.15.x).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/scantailor/README | 6 | ||||
-rw-r--r-- | graphics/scantailor/doinst.sh | 9 | ||||
-rw-r--r-- | graphics/scantailor/scantailor.SlackBuild | 86 | ||||
-rw-r--r-- | graphics/scantailor/scantailor.desktop | 11 | ||||
-rw-r--r-- | graphics/scantailor/scantailor.info | 10 | ||||
-rw-r--r-- | graphics/scantailor/slack-desc | 19 |
6 files changed, 0 insertions, 141 deletions
diff --git a/graphics/scantailor/README b/graphics/scantailor/README deleted file mode 100644 index a54118cbd1764..0000000000000 --- a/graphics/scantailor/README +++ /dev/null @@ -1,6 +0,0 @@ -Scan Tailor is an interactive post-processing tool for scanned -pages. It performs operations such as page splitting, deskewing, -adding/removing borders, and others. You give it raw scans, and you -get pages ready to be printed or assembled into a PDF or DJVU file. -Scanning, optical character recognition, and assembling multi-page -documents are out of scope of this project. diff --git a/graphics/scantailor/doinst.sh b/graphics/scantailor/doinst.sh deleted file mode 100644 index 65c7e2eeb9aa5..0000000000000 --- a/graphics/scantailor/doinst.sh +++ /dev/null @@ -1,9 +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 [ -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/graphics/scantailor/scantailor.SlackBuild b/graphics/scantailor/scantailor.SlackBuild deleted file mode 100644 index 11e7a7e3a3f71..0000000000000 --- a/graphics/scantailor/scantailor.SlackBuild +++ /dev/null @@ -1,86 +0,0 @@ -#!/bin/sh - -# Slackware build script for scantailor - -# Written by Zhischenko Sergey <gishenko@mail.ru> - -PRGNAM=scantailor -SRCNAM=EXPERIMENTAL -VERSION=${VERSION:-2016_01_13} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -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 - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-${SRCNAM}_${VERSION} -tar xvf $CWD/${SRCNAM}_${VERSION}.tar.gz || tar xvf $CWD/$PRGNAM-${SRCNAM}_${VERSION}.tar.gz -cd $PRGNAM-${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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -mkdir build -cd build - cmake \ - -DCMAKE_INSTALL_PREFIX:PATH=/usr \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \ - -DCMAKE_BUILD_TYPE=Release .. - - make - make install DESTDIR=$PKG -cd .. - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/share/icons/hicolor/scalable/apps/ -cp resources/appicon.svg $PKG/usr/share/icons/hicolor/scalable/apps/scantailor.svg -mkdir -p $PKG/usr/share/applications -cp $CWD/scantailor.desktop $PKG/usr/share/applications/scantailor.desktop - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - COPYING GPL3.txt \ - $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/graphics/scantailor/scantailor.desktop b/graphics/scantailor/scantailor.desktop deleted file mode 100644 index 03ef07fd16789..0000000000000 --- a/graphics/scantailor/scantailor.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Name=Scan Tailor -Comment=An interactive post-processing tool for scanned pages. -Icon=scantailor -Exec=scantailor %u -TryExec=scantailor -Terminal=false -Type=Application -StartupNotify=true -Categories=Graphics; - diff --git a/graphics/scantailor/scantailor.info b/graphics/scantailor/scantailor.info deleted file mode 100644 index 15146007f0cfe..0000000000000 --- a/graphics/scantailor/scantailor.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="scantailor" -VERSION="2016_01_13" -HOMEPAGE="http://scantailor.sourceforge.net/" -DOWNLOAD="https://github.com/Tulon/scantailor/archive/EXPERIMENTAL_2016_01_13.tar.gz" -MD5SUM="90617c2bc82f288bfed472b9b03a1eef" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="qt5-legacy" -MAINTAINER="Zhischenko Sergey" -EMAIL="gishenko@mail.ru" diff --git a/graphics/scantailor/slack-desc b/graphics/scantailor/slack-desc deleted file mode 100644 index ad70749353015..0000000000000 --- a/graphics/scantailor/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------------------------------------------------------| -scantailor: scantailor (interactive post-processing tool for scanned pages) -scantailor: -scantailor: Scan Tailor is an interactive post-processing tool for scanned -scantailor: pages. It performs operations such as page splitting, deskewing, -scantailor: adding/removing borders, and others. You give it raw scans, and you -scantailor: get pages ready to be printed or assembled into a PDF or DJVU file. -scantailor: Scanning, optical character recognition, and assembling multi-page -scantailor: documents are out of scope of this project. -scantailor: -scantailor: -scantailor: |