Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 786C37A28D for ; Sun, 22 Jan 2017 21:27:51 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1C1BE85575; Sun, 22 Jan 2017 21:27:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9EBC585575 for ; Sun, 22 Jan 2017 21:27:50 +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 R4l1ohQZEqLA for ; Sun, 22 Jan 2017 21:27:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0922284CFD for ; Sun, 22 Jan 2017 21:27:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04720FBA6; Sun, 22 Jan 2017 21:27:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14851204696750" MIME-Version: 1.0 Date: Sun, 22 Jan 2017 21:27:49 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/geography/viking To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20170122212750.04720FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_14851204696750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sun Jan 22 21:27:49 UTC 2017 Modified Files: pkgsrc/geography/viking: Makefile Log Message: Drop gpsbabel as a dependency Based on discussions with upstream, it is recommended but not required. gpsbabel requires qt4 now and is about to require qt5, which makes it very large. To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 pkgsrc/geography/viking/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14851204696750 Content-Disposition: inline Content-Length: 1148 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/viking/Makefile diff -u pkgsrc/geography/viking/Makefile:1.72 pkgsrc/geography/viking/Makefile:1.73 --- pkgsrc/geography/viking/Makefile:1.72 Sun Jan 1 16:06:18 2017 +++ pkgsrc/geography/viking/Makefile Sun Jan 22 21:27:49 2017 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.72 2017/01/01 16:06:18 adam Exp $ +# $NetBSD: Makefile,v 1.73 2017/01/22 21:27:49 gdt Exp $ # VERSION= 1.6.2 DISTNAME= viking-${VERSION} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= geography MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=viking/}${VERSION}/ EXTRACT_SUFX= .tar.bz2 @@ -33,7 +33,11 @@ CONFIGURE_ARGS+= --disable-mapnik #CONFIGURE_ARGS+= --enable-gtk-doc #.include "../../textproc/gtk-doc/buildlink3.mk" -DEPENDS+= gpsbabel-[0-9]*:../../geography/gpsbabel +# According to upstream, gpsbabel is merely recommended. gpsbabel is +# about to depend on qt5, and will thus become very large. Users can +# install it and use it at runtime, so don't depend on it. +#DEPENDS+= gpsbabel-[0-9]*:../../geography/gpsbabel + DEPENDS+= p5-XML-Parser-[0-9]*:../../textproc/p5-XML-Parser REPLACE_PERL= viking-remote --_----------=_14851204696750--