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 06B0F7A221 for ; Thu, 16 Jun 2016 14:02:48 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 75F0785ED7; Thu, 16 Jun 2016 14:02:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 08D2385E61 for ; Thu, 16 Jun 2016 14:02:47 +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 yDRPu6EZKHEE for ; Thu, 16 Jun 2016 14:02:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 68DCA85E24 for ; Thu, 16 Jun 2016 14:02:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 63FADFBB5; Thu, 16 Jun 2016 14:02:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1466085766257220" MIME-Version: 1.0 Date: Thu, 16 Jun 2016 14:02:46 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/ham/gnuradio-doxygen To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20160616140246.63FADFBB5@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. --_----------=_1466085766257220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Thu Jun 16 14:02:46 UTC 2016 Modified Files: pkgsrc/ham/gnuradio-doxygen: Makefile Log Message: Add following line to keep PLIST consistent. +DEPENDS+= web2c-[0-9]*:../../print/web2c (But not really sure, sorry. BUILD_DEPENDS instead enough ?) To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/ham/gnuradio-doxygen/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1466085766257220 Content-Disposition: inline Content-Length: 926 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/gnuradio-doxygen/Makefile diff -u pkgsrc/ham/gnuradio-doxygen/Makefile:1.8 pkgsrc/ham/gnuradio-doxygen/Makefile:1.9 --- pkgsrc/ham/gnuradio-doxygen/Makefile:1.8 Mon Jun 13 13:36:55 2016 +++ pkgsrc/ham/gnuradio-doxygen/Makefile Thu Jun 16 14:02:46 2016 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.8 2016/06/13 13:36:55 mef Exp $ +# $NetBSD: Makefile,v 1.9 2016/06/16 14:02:46 mef Exp $ PKGNAME= gnuradio-doxygen-${VERSION} -PKGREVISION= 1 +PKGREVISION= 2 COMMENT= Doxygen documentation of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" @@ -11,6 +11,8 @@ BUILD_DEPENDS+= doxygen>=1.8.9.1:../../d BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx BUILD_DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz +DEPENDS+= web2c-[0-9]*:../../print/web2c + CMAKE_ARGS+= -DENABLE_DEFAULT=False CMAKE_ARGS+= -DENABLE_DOXYGEN=ON CMAKE_ARGS+= -DENABLE_SPHINX=ON --_----------=_1466085766257220--