Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Jan 2018 14:47:03 +0000 (UTC)
From:      Danilo Egea Gondolfo <danilo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r457779 - in head/graphics/pqiv: . files
Message-ID:  <201801011447.w01El3dQ088076@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danilo
Date: Mon Jan  1 14:47:03 2018
New Revision: 457779
URL: https://svnweb.freebsd.org/changeset/ports/457779

Log:
  - Update to 2.10.2
  - Add WEBP support option

Added:
  head/graphics/pqiv/files/
  head/graphics/pqiv/files/patch-configure   (contents, props changed)
Modified:
  head/graphics/pqiv/Makefile
  head/graphics/pqiv/distinfo

Modified: head/graphics/pqiv/Makefile
==============================================================================
--- head/graphics/pqiv/Makefile	Mon Jan  1 14:01:16 2018	(r457778)
+++ head/graphics/pqiv/Makefile	Mon Jan  1 14:47:03 2018	(r457779)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	pqiv
-PORTVERSION=	2.8.5
-PORTREVISION=	1
+PORTVERSION=	2.10.2
 CATEGORIES=	graphics
 
 MAINTAINER=	danilo@FreeBSD.org
@@ -22,7 +21,7 @@ OPTIONS_SINGLE=		GTK
 OPTIONS_SINGLE_GTK=	GTK2 GTK3
 
 OPTIONS_GROUP=		BACKENDS
-OPTIONS_GROUP_BACKENDS=	LIBARCHIVE LIBAV PIXBUF POPPLER SPECTRE WAND
+OPTIONS_GROUP_BACKENDS=	LIBARCHIVE LIBAV PIXBUF POPPLER SPECTRE WAND WEBP
 LIBARCHIVE_DESC=	Libarchive formats support
 LIBAV_DESC=		Video support
 SPECTRE_DESC=		PS/EPS support
@@ -51,6 +50,9 @@ SPECTRE_LIB_DEPENDS=	libspectre.so:print/libspectre
 
 WAND_CONFIGURE_WITH=	wand
 WAND_LIB_DEPENDS=	libMagickWand-6.so:graphics/ImageMagick
+
+WEBP_CONFIGURE_WITH=	webp
+WEBP_LIB_DEPENDS=	libwebp.so:graphics/webp
 
 GTK2_CONFIGURE_ON=	--gtk-version=2
 GTK2_USE=		GNOME=gtk20

Modified: head/graphics/pqiv/distinfo
==============================================================================
--- head/graphics/pqiv/distinfo	Mon Jan  1 14:01:16 2018	(r457778)
+++ head/graphics/pqiv/distinfo	Mon Jan  1 14:47:03 2018	(r457779)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1492456202
-SHA256 (phillipberndt-pqiv-2.8.5_GH0.tar.gz) = 7895fe0cb7b18d9e40d0353df2ec964aed4e1bb7fa7e1ea9a1e00858d3a89ce9
-SIZE (phillipberndt-pqiv-2.8.5_GH0.tar.gz) = 108686
+TIMESTAMP = 1513272334
+SHA256 (phillipberndt-pqiv-2.10.2_GH0.tar.gz) = 920a305de2190665e127dad39676055d4d7cdcc5c546cbd232048b87eacee50d
+SIZE (phillipberndt-pqiv-2.10.2_GH0.tar.gz) = 138506

Added: head/graphics/pqiv/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/pqiv/files/patch-configure	Mon Jan  1 14:47:03 2018	(r457779)
@@ -0,0 +1,22 @@
+--- configure.orig	2017-12-12 20:06:03 UTC
++++ configure
+@@ -267,16 +267,16 @@ fi
+ # Auto-determine available backends
+ if [ -z "$BACKENDS" ]; then
+ 	echo -n "Checking for supported backends..             "
+-	BACKENDS="$($MAKE get_available_backends ${PKG_CONFIG:+PKG_CONFIG="$PKG_CONFIG"} | awk '/^BACKENDS:/ {print substr($0, 11);}')"
++	BACKENDS="$($MAKE get_available_backends ${PKG_CONFIG:+PKG_CONFIG="$PKG_CONFIG"} | awk '/^BACKENDS:/ {print substr($0, 11);}') "
+ 	echo "${BACKENDS:-(none)}"
+ fi
+ 
+ # Disable explicitly disabled and enable explicitly enabled backends
+ for BACKEND in ${DISABLED_BACKENDS}; do
+-	BACKENDS="${BACKENDS//${BACKEND} /}"
++	BACKENDS="${BACKENDS/${BACKEND}/}"
+ done
+ for BACKEND in ${ENFORCED_BACKENDS}; do
+-	BACKENDS="${BACKEND} ${BACKENDS//${BACKEND} /}"
++	BACKENDS="${BACKEND} ${BACKENDS/${BACKEND} /}"
+ done
+ 
+ echo "Building with backends:                       ${BACKENDS:-(none)}"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801011447.w01El3dQ088076>