summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Matteo Bernardini2018-06-06 20:04:00 +0200
committer Willy Sudiarto Raharjo2018-06-09 02:15:33 +0200
commit7f3eba726e54bce3a1b8b4809fb4b217b30f1132 (patch)
tree63f85d3cf36ef913423a985ff5e8affe1fa68df4
parent4d1a12cc0ac09a9f4726aedde372255e954c1c1b (diff)
downloadold.slackbuilds-7f3eba726e54bce3a1b8b4809fb4b217b30f1132.tar.gz
graphics/photoqt: Updated for version 1.7.1.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r--graphics/photoqt/README6
-rw-r--r--graphics/photoqt/photoqt.SlackBuild13
-rw-r--r--graphics/photoqt/photoqt.info8
3 files changed, 16 insertions, 11 deletions
diff --git a/graphics/photoqt/README b/graphics/photoqt/README
index b6c5aaaa5f..3f45ef2b39 100644
--- a/graphics/photoqt/README
+++ b/graphics/photoqt/README
@@ -1,7 +1,5 @@
Photoqt is a fast, simple, good looking, yet powerful and highly
configurable image viewer.
-Support for external software is configured by default with the
-following switches:
-EXIV2=ON (needs exiv2, by default in Slackware)
-GM=OFF (needs GraphicsMagick, optional dependency)
+optional autodetected dependencies are DevIL, FreeImage,
+GraphicsMagick and poppler-qt5.
diff --git a/graphics/photoqt/photoqt.SlackBuild b/graphics/photoqt/photoqt.SlackBuild
index dd7f1a3a85..359e53cbad 100644
--- a/graphics/photoqt/photoqt.SlackBuild
+++ b/graphics/photoqt/photoqt.SlackBuild
@@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=photoqt
-VERSION=${VERSION:-1.6}
+VERSION=${VERSION:-1.7.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -54,8 +54,12 @@ else
LIBDIRSUFFIX=""
fi
-EXIV2=${EXIV2:-ON}
-GM=${GM:-OFF}
+if pkg-config --exists exiv2; then EXIV2=ON; else EXIV2=OFF; fi
+if pkg-config --exists GraphicsMagick; then GM=ON; else GM=OFF; fi
+if pkg-config --exists libraw; then RAW=ON; else RAW=OFF; fi
+if pkg-config --exists IL; then DEVIL=ON; else DEVIL=OFF; fi
+if pkg-config --exists poppler-qt5; then POPPLER=ON; else POPPLER=OFF; fi
+if [ -f /usr/include/FreeImage.h ]; then FREEIMAGE=ON; else FREEIMAGE=OFF; fi
set -e
@@ -81,6 +85,9 @@ cd build
-DCMAKE_INSTALL_PREFIX=/usr \
-DEXIV2=$EXIV2 \
-DGM=$GM \
+ -DRAW=$RAW \
+ -DDEVIL=$DEVIL \
+ -DPOPPLER=$POPPLER \
-DCMAKE_BUILD_TYPE=Release ..
make
make install DESTDIR=$PKG
diff --git a/graphics/photoqt/photoqt.info b/graphics/photoqt/photoqt.info
index 48968d1090..e133538d8e 100644
--- a/graphics/photoqt/photoqt.info
+++ b/graphics/photoqt/photoqt.info
@@ -1,10 +1,10 @@
PRGNAM="photoqt"
-VERSION="1.6"
+VERSION="1.7.1"
HOMEPAGE="https://photoqt.org"
-DOWNLOAD="http://ponce.cc/slackware/sources/repo/photoqt-1.6.tar.gz"
-MD5SUM="a93a3f7eba55dcf3ccce7f56a8288bcd"
+DOWNLOAD="http://ponce.cc/slackware/sources/repo/photoqt-1.7.1.tar.gz"
+MD5SUM="656fee6f9923499992f069496a0aaa5d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="qt5"
+REQUIRES="extra-cmake-modules qt5"
MAINTAINER="Matteo Bernardini"
EMAIL="ponce@slackbuilds.org"