Received: by mail.netbsd.org (Postfix, from userid 605) id 8B25384D8C; Sun, 15 Sep 2019 22:15:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 14A8484D62 for ; Sun, 15 Sep 2019 22:15:03 +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 SPrIDv295MaN for ; Sun, 15 Sep 2019 22:15:02 +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 8DAC784D28 for ; Sun, 15 Sep 2019 22:15:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 86992FBF4; Sun, 15 Sep 2019 22:15:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1568585702176100" MIME-Version: 1.0 Date: Sun, 15 Sep 2019 22:15:02 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/audio/easytag To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20190915221502.86992FBF4@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. --_----------=_1568585702176100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Sun Sep 15 22:15:02 UTC 2019 Modified Files: pkgsrc/audio/easytag: Makefile PLIST options.mk Log Message: easytag: Fix building with -manual from js To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 pkgsrc/audio/easytag/Makefile cvs rdiff -u -r1.24 -r1.25 pkgsrc/audio/easytag/PLIST cvs rdiff -u -r1.9 -r1.10 pkgsrc/audio/easytag/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1568585702176100 Content-Disposition: inline Content-Length: 2088 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/easytag/Makefile diff -u pkgsrc/audio/easytag/Makefile:1.110 pkgsrc/audio/easytag/Makefile:1.111 --- pkgsrc/audio/easytag/Makefile:1.110 Sun Jul 21 22:24:24 2019 +++ pkgsrc/audio/easytag/Makefile Sun Sep 15 22:15:02 2019 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.110 2019/07/21 22:24:24 wiz Exp $ +# $NetBSD: Makefile,v 1.111 2019/09/15 22:15:02 maya Exp $ DISTNAME= easytag-2.4.3 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_GNOME:=sources/easytag/2.4/} EXTRACT_SUFX= .tar.xz @@ -18,6 +18,8 @@ USE_LANGUAGES= c c++ USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake intltool pkg-config xgettext +PLIST_VARS+= man + .include "options.mk" .include "../../audio/id3lib/buildlink3.mk" Index: pkgsrc/audio/easytag/PLIST diff -u pkgsrc/audio/easytag/PLIST:1.24 pkgsrc/audio/easytag/PLIST:1.25 --- pkgsrc/audio/easytag/PLIST:1.24 Fri Jun 21 06:25:58 2019 +++ pkgsrc/audio/easytag/PLIST Sun Sep 15 22:15:02 2019 @@ -1,6 +1,6 @@ -@comment $NetBSD: PLIST,v 1.24 2019/06/21 06:25:58 triaxx Exp $ +@comment $NetBSD: PLIST,v 1.25 2019/09/15 22:15:02 maya Exp $ bin/easytag -man/man1/easytag.1 +${PLIST.man}man/man1/easytag.1 share/appdata/easytag.appdata.xml share/applications/easytag.desktop share/glib-2.0/schemas/org.gnome.EasyTAG.enums.xml Index: pkgsrc/audio/easytag/options.mk diff -u pkgsrc/audio/easytag/options.mk:1.9 pkgsrc/audio/easytag/options.mk:1.10 --- pkgsrc/audio/easytag/options.mk:1.9 Fri Jun 21 06:25:58 2019 +++ pkgsrc/audio/easytag/options.mk Sun Sep 15 22:15:02 2019 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.9 2019/06/21 06:25:58 triaxx Exp $ +# $NetBSD: options.mk,v 1.10 2019/09/15 22:15:02 maya Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.easytag PKG_SUPPORTED_OPTIONS= doc flac manual ogg opus speex wavpack @@ -23,6 +23,7 @@ BUILD_DEPENDS+= libxslt-[0-9]*:../../te BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl CONFIGURE_ARGS+= --with-xml-catalog=${PKG_SYSCONFDIR}/xml/catalog CONFIGURE_ARGS+= --enable-man +PLIST.man= yes .else CONFIGURE_ARGS+= --disable-man .endif --_----------=_1568585702176100--