Received: by mail.netbsd.org (Postfix, from userid 605) id 2161C84E0A; Sat, 28 Oct 2017 16:00:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 93BE784E08 for ; Sat, 28 Oct 2017 16:00:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 6fOD5tMua9Z7 for ; Sat, 28 Oct 2017 16:00:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1A81285568 for ; Sat, 28 Oct 2017 16:00:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 153B7FBDE; Sat, 28 Oct 2017 16:00:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150920640546310" MIME-Version: 1.0 Date: Sat, 28 Oct 2017 16:00:05 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/graphics/sxiv To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20171028160005.153B7FBDE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_150920640546310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Sat Oct 28 16:00:05 UTC 2017 Modified Files: pkgsrc/graphics/sxiv: Makefile distinfo Log Message: sxiv: Update graphics/sxiv to 24. pkgsrc changes: - Add AUTORELOAD=nop to MAKE_FLAGS in order to avoid optional inotify support to automatically reload the current image whenever it changes - Needs `c99' (`-std=c99' is passed to CFLAGS) Changes: 24 -- - Automatically reload the current image whenever it changes - Support embedding into other X windows with -e (e.g. tabbed) - New option -p prevents sxiv from creating cache and temporary files - Simpler mouse mappings, the most basic features are accessible with the mouse only (navigate, zoom, pan) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/sxiv/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/graphics/sxiv/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150920640546310 Content-Disposition: inline Content-Length: 2019 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/sxiv/Makefile diff -u pkgsrc/graphics/sxiv/Makefile:1.2 pkgsrc/graphics/sxiv/Makefile:1.3 --- pkgsrc/graphics/sxiv/Makefile:1.2 Sun Jul 30 22:32:18 2017 +++ pkgsrc/graphics/sxiv/Makefile Sat Oct 28 16:00:04 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2017/07/30 22:32:18 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2017/10/28 16:00:04 leot Exp $ # -DISTNAME= sxiv-1.3.2 +DISTNAME= sxiv-24 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GITHUB:=muennich/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -14,10 +14,14 @@ LICENSE= gnu-gpl-v2 USE_TOOLS+= gmake MAKE_FLAGS+= PREFIX=${PREFIX} MANPREFIX=${PREFIX}/${PKGMANDIR} +MAKE_FLAGS+= AUTORELOAD=nop + +USE_LANGUAGES= c99 INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 .include "../../x11/libX11/buildlink3.mk" +.include "../../x11/libXft/buildlink3.mk" .include "../../graphics/giflib/buildlink3.mk" .include "../../graphics/imlib2/buildlink3.mk" .include "../../graphics/libexif/buildlink3.mk" Index: pkgsrc/graphics/sxiv/distinfo diff -u pkgsrc/graphics/sxiv/distinfo:1.1 pkgsrc/graphics/sxiv/distinfo:1.2 --- pkgsrc/graphics/sxiv/distinfo:1.1 Thu Feb 4 13:49:06 2016 +++ pkgsrc/graphics/sxiv/distinfo Sat Oct 28 16:00:04 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2016/02/04 13:49:06 leot Exp $ +$NetBSD: distinfo,v 1.2 2017/10/28 16:00:04 leot Exp $ -SHA1 (sxiv-1.3.2.tar.gz) = 99ee7f74881f49f8ae6060e01f13bdcfbfc84825 -RMD160 (sxiv-1.3.2.tar.gz) = c3b703055804c534808487fd66cf59686b7db91f -SHA512 (sxiv-1.3.2.tar.gz) = 3bcf67a778a3e40cb6ae6b6fcc685cd57e303265df34c8a56d6ebb8ad0237e7136e738c44fee5c5504c73e4722d017f1e746691fac482568b2a960931f1ecdd5 -Size (sxiv-1.3.2.tar.gz) = 46560 bytes +SHA1 (sxiv-24.tar.gz) = 47940118169d51dbf02338e76878215ef066013f +RMD160 (sxiv-24.tar.gz) = 61eaf03ca5c106289d41588f2d882f43ca8a6ff1 +SHA512 (sxiv-24.tar.gz) = e4c9d4e18b4f1999b6441256b4c0d4683a105f1f64d4f754d6f9bc4f467ee1ccc6b6996cec8a210276c5fbec59417627fb838cb4f7be37cce32fa2c5d45d347b +Size (sxiv-24.tar.gz) = 47148 bytes --_----------=_150920640546310--