Received: by mail.netbsd.org (Postfix, from userid 605) id 1D79784D4E; Wed, 27 Mar 2019 09:53:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 94AEE84D3B for ; Wed, 27 Mar 2019 09:53:19 +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 2rFe0xKZvJyk for ; Wed, 27 Mar 2019 09:53:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F160884D21 for ; Wed, 27 Mar 2019 09:53:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF2BEFB16; Wed, 27 Mar 2019 09:53:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155368039877620" MIME-Version: 1.0 Date: Wed, 27 Mar 2019 09:53:18 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/audio/mpc To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20190327095318.EF2BEFB16@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. --_----------=_155368039877620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Wed Mar 27 09:53:18 UTC 2019 Modified Files: pkgsrc/audio/mpc: Makefile Log Message: Fix PLIST errors that occur when py-sphinx happens to be installed To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/audio/mpc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155368039877620 Content-Disposition: inline Content-Length: 804 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/mpc/Makefile diff -u pkgsrc/audio/mpc/Makefile:1.27 pkgsrc/audio/mpc/Makefile:1.28 --- pkgsrc/audio/mpc/Makefile:1.27 Fri Nov 30 15:06:56 2018 +++ pkgsrc/audio/mpc/Makefile Wed Mar 27 09:53:18 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2018/11/30 15:06:56 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2019/03/27 09:53:18 pho Exp $ DISTNAME= mpc-0.31 CATEGORIES= audio @@ -18,6 +18,10 @@ REPLACE_SH= doc/*.sh LIBS+= ${BUILDLINK_LDADD.iconv} +# By default it generates and installs HTML documentation if py-sphinx +# is installed, causing our PLIST check to fail. +MESON_ARGS+= -Ddocumentation=disabled + .include "../../devel/py-meson/build.mk" BUILDLINK_API_DEPENDS.libmpdclient+= libmpdclient>=2.9 .include "../../audio/libmpdclient/buildlink3.mk" --_----------=_155368039877620--