Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D496A84E97 for ; Tue, 25 Jul 2023 14:37:35 +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 r8CCwBzowLMi for ; Tue, 25 Jul 2023 14:37:35 +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 2954884E8F for ; Tue, 25 Jul 2023 14:37:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 228E7FBDB; Tue, 25 Jul 2023 14:37:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1690295855107320" MIME-Version: 1.0 Date: Tue, 25 Jul 2023 14:37:35 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/audio/aubio To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20230725143735.228E7FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1690295855107320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Tue Jul 25 14:37:35 UTC 2023 Modified Files: pkgsrc/audio/aubio: Makefile Log Message: audio/aubio: control docs creation, change maintainer On a Linux system with doxygen present, unwanted html documentation could be created, also man generation needs explicit dependency. The old maintainer asked to be removed, so it is pkgsrc-users for now. Thanks for your work so far! To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/audio/aubio/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1690295855107320 Content-Disposition: inline Content-Length: 1114 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/aubio/Makefile diff -u pkgsrc/audio/aubio/Makefile:1.30 pkgsrc/audio/aubio/Makefile:1.31 --- pkgsrc/audio/aubio/Makefile:1.30 Wed May 24 07:20:46 2023 +++ pkgsrc/audio/aubio/Makefile Tue Jul 25 14:37:34 2023 @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.30 2023/05/24 07:20:46 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2023/07/25 14:37:34 thor Exp $ DISTNAME= aubio-0.4.9 -PKGREVISION= 12 +PKGREVISION= 13 CATEGORIES= audio MASTER_SITES= https://aubio.org/pub/ EXTRACT_SUFX= .tar.bz2 -MAINTAINER= pho@cielonegro.org +MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://aubio.org/ COMMENT= Extracting annotations from audio signals LICENSE= gnu-gpl-v2 @@ -16,10 +16,15 @@ TOOL_DEPENDS+= doxygen>=1.9.7:../../deve USE_TOOLS+= pkg-config +# avoid loads of html if doxygen is found in host +TOOLS_PATH.doxygen= ${FALSE} + PKGCONFIG_OVERRIDE+= aubio.pc.in WAF_ARGS+= --disable-tests +TOOL_DEPENDS+= txt2man-[0-9]*:../../converters/txt2man + CPPFLAGS.SunOS+= -Du_int8_t=uint8_t -Du_int16_t=uint16_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t # open() flag 'rUb' --_----------=_1690295855107320--