Received: by mail.netbsd.org (Postfix, from userid 605) id 71B1384D7F; Wed, 7 Aug 2019 15:52:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EADFA84D7E for ; Wed, 7 Aug 2019 15:52:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id lB2JchvpOhBK for ; Wed, 7 Aug 2019 15:52:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6860F84D7D for ; Wed, 7 Aug 2019 15:52:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5B2E6FBF4; Wed, 7 Aug 2019 15:52:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156519313398220" MIME-Version: 1.0 Date: Wed, 7 Aug 2019 15:52:13 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/graphics/sane-backends To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20190807155213.5B2E6FBF4@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. --_----------=_156519313398220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Wed Aug 7 15:52:13 UTC 2019 Modified Files: pkgsrc/graphics/sane-backends: Makefile PLIST Log Message: sane-backends: PLIST fix for Darwin, which apparently enables another backend (it's unclear why it only gets enabled on OS X) From clement bouvier in PR pkg/54444. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 pkgsrc/graphics/sane-backends/Makefile cvs rdiff -u -r1.33 -r1.34 pkgsrc/graphics/sane-backends/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156519313398220 Content-Disposition: inline Content-Length: 1947 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/sane-backends/Makefile diff -u pkgsrc/graphics/sane-backends/Makefile:1.69 pkgsrc/graphics/sane-backends/Makefile:1.70 --- pkgsrc/graphics/sane-backends/Makefile:1.69 Tue May 15 13:19:50 2018 +++ pkgsrc/graphics/sane-backends/Makefile Wed Aug 7 15:52:13 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.69 2018/05/15 13:19:50 jperkin Exp $ +# $NetBSD: Makefile,v 1.70 2019/08/07 15:52:13 maya Exp $ .include "Makefile.common" COMMENT= API for access to scanners, digital cameras, frame grabbers, etc @@ -25,13 +25,14 @@ CONFIGURE_ENV.SunOS+= ac_cv_func_inet_pt .include "../../mk/bsd.prefs.mk" -PLIST_VARS+= mustek pint sm3600 +PLIST_VARS+= mustek pint sm3600 kvs40xx .if (${OPSYS} == "SunOS") || (${OPSYS} == "Linux") || (${OPSYS} == "DragonFly") || (${OPSYS} == "FreeBSD") PLIST.sm3600= yes .elif (${OPSYS} == "Darwin") PLIST.mustek= yes PLIST.sm3600= yes +PLIST.kvs40xx= yes .else PLIST.pint= yes PLIST.sm3600= yes Index: pkgsrc/graphics/sane-backends/PLIST diff -u pkgsrc/graphics/sane-backends/PLIST:1.33 pkgsrc/graphics/sane-backends/PLIST:1.34 --- pkgsrc/graphics/sane-backends/PLIST:1.33 Tue May 15 14:58:08 2018 +++ pkgsrc/graphics/sane-backends/PLIST Wed Aug 7 15:52:13 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.33 2018/05/15 14:58:08 jperkin Exp $ +@comment $NetBSD: PLIST,v 1.34 2019/08/07 15:52:13 maya Exp $ bin/gamma4scanimage bin/sane-config bin/sane-find-scanner @@ -71,6 +71,7 @@ lib/sane/libsane-kodak.la lib/sane/libsane-kodakaio.la lib/sane/libsane-kvs1025.la lib/sane/libsane-kvs20xx.la +${PLIST.kvs40xx}lib/sane/libsane-kvs40xx.la lib/sane/libsane-leo.la lib/sane/libsane-lexmark.la lib/sane/libsane-ma1509.la @@ -156,6 +157,7 @@ man/man5/sane-kodak.5 man/man5/sane-kodakaio.5 man/man5/sane-kvs1025.5 man/man5/sane-kvs20xx.5 +${PLIST.kvs40xx}man/man5/sane-kvs40xx.5 man/man5/sane-leo.5 man/man5/sane-lexmark.5 man/man5/sane-ma1509.5 --_----------=_156519313398220--