Received: by mail.netbsd.org (Postfix, from userid 605) id 4FE6B84D5A; Sat, 28 Dec 2019 12:43:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CD08184D41 for ; Sat, 28 Dec 2019 12:43:48 +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 U5xVPgFoNaTZ for ; Sat, 28 Dec 2019 12:43:48 +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 288C384C8B for ; Sat, 28 Dec 2019 12:43:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 22406FA97; Sat, 28 Dec 2019 12:43:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577537028258880" MIME-Version: 1.0 Date: Sat, 28 Dec 2019 12:43:48 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/kismet To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20191228124348.22406FA97@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. --_----------=_1577537028258880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Dec 28 12:43:48 UTC 2019 Modified Files: pkgsrc/net/kismet: Makefile options.mk Log Message: kismet: update to 2008.05.01nb49. Disable gps option by default. The configure script does not recognize pkgsrc's version of ImageMagick, which breaks the option. To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 pkgsrc/net/kismet/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/kismet/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577537028258880 Content-Disposition: inline Content-Length: 1266 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/kismet/Makefile diff -u pkgsrc/net/kismet/Makefile:1.63 pkgsrc/net/kismet/Makefile:1.64 --- pkgsrc/net/kismet/Makefile:1.63 Sun Nov 3 11:45:38 2019 +++ pkgsrc/net/kismet/Makefile Sat Dec 28 12:43:47 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.63 2019/11/03 11:45:38 rillig Exp $ +# $NetBSD: Makefile,v 1.64 2019/12/28 12:43:47 wiz Exp $ DISTNAME= kismet-2008-05-R1 PKGNAME= kismet-2008.05.01 -PKGREVISION= 48 +PKGREVISION= 49 CATEGORIES= net MASTER_SITES= https://www.kismetwireless.net/code/ Index: pkgsrc/net/kismet/options.mk diff -u pkgsrc/net/kismet/options.mk:1.3 pkgsrc/net/kismet/options.mk:1.4 --- pkgsrc/net/kismet/options.mk:1.3 Fri Feb 17 17:10:05 2017 +++ pkgsrc/net/kismet/options.mk Sat Dec 28 12:43:47 2019 @@ -1,13 +1,13 @@ -# $NetBSD: options.mk,v 1.3 2017/02/17 17:10:05 joerg Exp $ -# +# $NetBSD: options.mk,v 1.4 2019/12/28 12:43:47 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.kismet PKG_SUPPORTED_OPTIONS= gps -PKG_SUGGESTED_OPTIONS= gps +PKG_SUGGESTED_OPTIONS= .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Mgps) +BROKEN= "configure does not recognize ImageMagick" PLIST_SRC+= PLIST.gps DEPENDS+= wget>=1.9.1:../../net/wget .include "../../devel/gmp/buildlink3.mk" --_----------=_1577537028258880--