Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C8D9384E5A for ; Mon, 4 Sep 2023 12:17:56 +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 H538wDIF805Z for ; Mon, 4 Sep 2023 12:17:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 21EF584CED for ; Mon, 4 Sep 2023 12:17:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1B943FBDB; Mon, 4 Sep 2023 12:17:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169382987694140" MIME-Version: 1.0 Date: Mon, 4 Sep 2023 12:17:56 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/gupnp To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230904121756.1B943FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169382987694140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Sep 4 12:17:56 UTC 2023 Modified Files: pkgsrc/net/gupnp: Makefile Log Message: gupnp: really fix documentation build add another missing dependency, and TOOL_DEPEND on libxslt for xsltproc instead of using its buildlink3.mk To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87 pkgsrc/net/gupnp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169382987694140 Content-Disposition: inline Content-Length: 1044 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/gupnp/Makefile diff -u pkgsrc/net/gupnp/Makefile:1.86 pkgsrc/net/gupnp/Makefile:1.87 --- pkgsrc/net/gupnp/Makefile:1.86 Sun Sep 3 11:58:54 2023 +++ pkgsrc/net/gupnp/Makefile Mon Sep 4 12:17:55 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.86 2023/09/03 11:58:54 adam Exp $ +# $NetBSD: Makefile,v 1.87 2023/09/04 12:17:55 wiz Exp $ DISTNAME= gupnp-1.6.5 CATEGORIES= net @@ -10,6 +10,9 @@ HOMEPAGE= https://wiki.gnome.org/Project COMMENT= Framework for UPnP devices LICENSE= gnu-lgpl-v2 +TOOL_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt +TOOL_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl + USE_TOOLS+= pkg-config REPLACE_PYTHON= tools/gupnp-binding-tool @@ -41,6 +44,4 @@ BUILDLINK_API_DEPENDS.glib2+= glib2>=2.5 .include "../../net/libsoup3/buildlink3.mk" .include "../../net/gssdp/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" -BUILDLINK_DEPMETHOD.libxslt= build # for xsltproc -.include "../../textproc/libxslt/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_169382987694140--