From owner-svn-ports-all@freebsd.org Mon Feb 18 20:15:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31EF114EA533; Mon, 18 Feb 2019 20:15:01 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC80584039; Mon, 18 Feb 2019 20:15:00 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C04B9AD07; Mon, 18 Feb 2019 20:15:00 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1IKF07b017735; Mon, 18 Feb 2019 20:15:00 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1IKF0TK017733; Mon, 18 Feb 2019 20:15:00 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201902182015.x1IKF0TK017733@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Mon, 18 Feb 2019 20:15:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493316 - head/graphics/feh X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/graphics/feh X-SVN-Commit-Revision: 493316 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CC80584039 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2019 20:15:01 -0000 Author: zeising Date: Mon Feb 18 20:15:00 2019 New Revision: 493316 URL: https://svnweb.freebsd.org/changeset/ports/493316 Log: graphics/feh: Update to 3.1.3 Update graphics/feh to 3.1.3 Add two new options, XINERAMA and CURL, default to on (this was the previous default, with no option to turn off). XINERAMA enables or disablex X11 Xienrama support CURL enables or disables cURL support. Change the EXIF option to have both a on and off, to match the pattern of other options. ChangeLog: https://feh.finalrewind.org/archive/3.1.3/ Modified: head/graphics/feh/Makefile head/graphics/feh/distinfo Modified: head/graphics/feh/Makefile ============================================================================== --- head/graphics/feh/Makefile Mon Feb 18 19:48:38 2019 (r493315) +++ head/graphics/feh/Makefile Mon Feb 18 20:15:00 2019 (r493316) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= feh -PORTVERSION= 3.1.2 +PORTVERSION= 3.1.3 CATEGORIES= graphics MASTER_SITES= http://feh.finalrewind.org/ \ LOCAL/uqs @@ -13,8 +13,7 @@ COMMENT= Image viewer that utilizes Imlib2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libcurl.so:ftp/curl \ - libImlib2.so:graphics/imlib2 \ +LIB_DEPENDS= libImlib2.so:graphics/imlib2 \ libpng.so:graphics/png USES= compiler:c++11-lang cpe desktop-file-utils gmake localbase:ldflags \ @@ -25,14 +24,22 @@ CPE_VENDOR= daniel_friesel MAKE_ENV+= LDFLAGS="${LDFLAGS}" verscmp=0 -OPTIONS_DEFINE= DCRAW DOCS EXAMPLES EXIF +OPTIONS_DEFINE= CURL DCRAW DOCS EXAMPLES EXIF XINERAMA EXIF_DESC= Support EXIF tags DCRAW_DESC= Use dcraw to display raw file previews -OPTIONS_DEFAULT=EXIF +OPTIONS_DEFAULT=CURL EXIF XINERAMA OPTIONS_SUB= yes EXIF_LIB_DEPENDS= libexif.so:graphics/libexif -EXIF_MAKE_ENV= exif=1 +EXIF_MAKE_ENV= exif=1 +EXIF_MAKE_ENV_OFF= exif=0 + +XINERAMA_MAKE_ENV= xinerama=1 +XINERAMA_MAKE_ENV_OFF= xinerama=0 + +CURL_LIB_DEPENDS= libcurl.so:ftp/curl +CURL_MAKE_ENV= curl=1 +CURL_MAKE_ENV_OFF= curl=0 DCRAW_RUN_DEPENDS= dcraw:graphics/dcraw Modified: head/graphics/feh/distinfo ============================================================================== --- head/graphics/feh/distinfo Mon Feb 18 19:48:38 2019 (r493315) +++ head/graphics/feh/distinfo Mon Feb 18 20:15:00 2019 (r493316) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550163856 -SHA256 (feh-3.1.2.tar.bz2) = 6a36d0503507661b8855b6f7e5b01ca6d7119a8f3771936062cf00935fa65062 -SIZE (feh-3.1.2.tar.bz2) = 2109860 +TIMESTAMP = 1550520203 +SHA256 (feh-3.1.3.tar.bz2) = 9fe840fbc6ce66dcf1e99296c90eb6fc44a4c2fad9a1069dfc7e0fad88eb56ef +SIZE (feh-3.1.3.tar.bz2) = 2110285