From owner-svn-ports-all@freebsd.org Sun Dec 22 05:48:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A96961C918D; Sun, 22 Dec 2019 05:48:19 +0000 (UTC) (envelope-from tobik@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 47gWjv43Zxz44JR; Sun, 22 Dec 2019 05:48:19 +0000 (UTC) (envelope-from tobik@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 6DCE622FCD; Sun, 22 Dec 2019 05:48:19 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBM5mJQL045752; Sun, 22 Dec 2019 05:48:19 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBM5mJBh045750; Sun, 22 Dec 2019 05:48:19 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201912220548.xBM5mJBh045750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 22 Dec 2019 05:48:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520605 - head/graphics/imv X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/graphics/imv X-SVN-Commit-Revision: 520605 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Sun, 22 Dec 2019 05:48:19 -0000 Author: tobik Date: Sun Dec 22 05:48:18 2019 New Revision: 520605 URL: https://svnweb.freebsd.org/changeset/ports/520605 Log: graphics/imv: Update to v4.1.0 - Enable all native backends by default Changes: https://github.com/eXeC64/imv/blob/v4.1.0/CHANGELOG Modified: head/graphics/imv/Makefile head/graphics/imv/distinfo Modified: head/graphics/imv/Makefile ============================================================================== --- head/graphics/imv/Makefile Sun Dec 22 03:10:17 2019 (r520604) +++ head/graphics/imv/Makefile Sun Dec 22 05:48:18 2019 (r520605) @@ -3,7 +3,7 @@ PORTNAME= imv DISTVERSIONPREFIX= v -DISTVERSION= 4.0.1 +DISTVERSION= 4.1.0 CATEGORIES= graphics MAINTAINER= tobik@FreeBSD.org @@ -13,7 +13,8 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= a2x:textproc/asciidoc -LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon +LIB_DEPENDS= libicuuc.so:devel/icu \ + libxkbcommon.so:x11/libxkbcommon TEST_DEPENDS= ${LOCALBASE}/lib/libcmocka.so:sysutils/cmocka USES= compiler:c11 desktop-file-utils gettext-runtime gl gmake gnome \ @@ -42,13 +43,14 @@ PLIST_FILES= bin/imv \ man/man5/imv.5.gz \ share/applications/imv.desktop -OPTIONS_DEFINE= FREEIMAGE JPEG PNG SVG TIFF -OPTIONS_DEFAULT= FREEIMAGE SVG WAYLAND X11 +OPTIONS_DEFINE= FREEIMAGE JPEG NSGIF PNG SVG TIFF +OPTIONS_DEFAULT= FREEIMAGE JPEG NSGIF PNG SVG TIFF WAYLAND X11 OPTIONS_MULTI= WINDOWS OPTIONS_MULTI_WINDOWS= WAYLAND X11 OPTIONS_SUB= yes FREEIMAGE_DESC= FreeImage backend (support for many image formats) +NSGIF_DESC= NetSurf GIF backend (support for animated GIF) WINDOWS_DESC= Windowing system FREEIMAGE_LIB_DEPENDS= libfreeimage.so:graphics/freeimage @@ -59,12 +61,15 @@ JPEG_LIB_DEPENDS= libturbojpeg.so:graphics/libjpeg-tur JPEG_MAKE_ARGS_OFF= BACKEND_LIBJPEG=no JPEG_MAKE_ARGS= BACKEND_LIBJPEG=yes +NSGIF_LIB_DEPENDS= libnsgif.so:graphics/libnsgif +NSGIF_MAKE_ARGS_OFF= BACKEND_LIBNSGIF=no +NSGIF_MAKE_ARGS= BACKEND_LIBNSGIF=yes + PNG_LIB_DEPENDS= libpng.so:graphics/png PNG_MAKE_ARGS_OFF= BACKEND_LIBPNG=no PNG_MAKE_ARGS= BACKEND_LIBPNG=yes -SVG_USES= gnome -SVG_USE= GNOME=cairo,librsvg2 +SVG_USE= GNOME=librsvg2 SVG_MAKE_ARGS_OFF= BACKEND_LIBRSVG=no SVG_MAKE_ARGS= BACKEND_LIBRSVG=yes Modified: head/graphics/imv/distinfo ============================================================================== --- head/graphics/imv/distinfo Sun Dec 22 03:10:17 2019 (r520604) +++ head/graphics/imv/distinfo Sun Dec 22 05:48:18 2019 (r520605) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567009994 -SHA256 (eXeC64-imv-v4.0.1_GH0.tar.gz) = b2370c7ab88056b4c832fa24ac837ac645378d9fa028f4bb8828da6a832b2e27 -SIZE (eXeC64-imv-v4.0.1_GH0.tar.gz) = 74982 +TIMESTAMP = 1576993342 +SHA256 (eXeC64-imv-v4.1.0_GH0.tar.gz) = 8c2f1baa4dce8bf1f6d1fb9dea8cf1da09fdf2c6de0f7030e91714df2ebcdf50 +SIZE (eXeC64-imv-v4.1.0_GH0.tar.gz) = 77341