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 "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 1EF371A9239 for ; Mon, 2 Nov 2020 10:07:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 879D784D69; Mon, 2 Nov 2020 10:07:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 05D2784CEE for ; Mon, 2 Nov 2020 10:07: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 zIFTyRhszIqg for ; Mon, 2 Nov 2020 10:07: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 8770384CD8 for ; Mon, 2 Nov 2020 10:07:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5DB3AFB28; Mon, 2 Nov 2020 10:07:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1604311622288710" MIME-Version: 1.0 Date: Mon, 2 Nov 2020 10:07:02 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/snd To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201102100702.5DB3AFB28@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. --_----------=_1604311622288710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Nov 2 10:07:02 UTC 2020 Modified Files: pkgsrc/audio/snd: options.mk Log Message: snd: Sound backends can seemingly only coeexist on Linux To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/audio/snd/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1604311622288710 Content-Disposition: inline Content-Length: 1500 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/snd/options.mk diff -u pkgsrc/audio/snd/options.mk:1.9 pkgsrc/audio/snd/options.mk:1.10 --- pkgsrc/audio/snd/options.mk:1.9 Sat Dec 14 18:34:18 2019 +++ pkgsrc/audio/snd/options.mk Mon Nov 2 10:07:02 2020 @@ -1,20 +1,18 @@ -# $NetBSD: options.mk,v 1.9 2019/12/14 18:34:18 nia Exp $ +# $NetBSD: options.mk,v 1.10 2020/11/02 10:07:02 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.snd PKG_SUPPORTED_OPTIONS= -# ruby, forth, alsa, oss, jack, pulseaudio, gmp, ladspa + PKG_OPTIONS_REQUIRED_GROUPS= frontend PKG_OPTIONS_GROUP.frontend= gtk motif -PKG_SUPPORTED_OPTIONS+= alsa jack portaudio pulseaudio ladspa -PKG_SUGGESTED_OPTIONS.Linux+= alsa -PKG_SUGGESTED_OPTIONS+= gtk ladspa +PKG_SUPPORTED_OPTIONS+= ladspa -.include "../../mk/oss.buildlink3.mk" +# Audio backends can seemingly only coeexist on Linux +PKG_SUPPORTED_OPTIONS.Linux+= alsa jack pulseaudio +PKG_SUGGESTED_OPTIONS.Linux+= alsa jack -.if ${OSS_TYPE} == "none" && ${OPSYS} != "Linux" -PKG_SUGGESTED_OPTIONS+= portaudio -.endif +PKG_SUGGESTED_OPTIONS+= gtk ladspa .include "../../mk/bsd.options.mk" @@ -32,13 +30,6 @@ CONFIGURE_ARGS+= --with-jack CONFIGURE_ARGS+= --without-jack .endif -.if !empty(PKG_OPTIONS:Mportaudio) -CONFIGURE_ARGS+= --with-portaudio -.include "../../audio/portaudio/buildlink3.mk" -.else -CONFIGURE_ARGS+= --without-portaudio -.endif - .if !empty(PKG_OPTIONS:Mpulseaudio) CONFIGURE_ARGS+= --with-pulseaudio .include "../../audio/pulseaudio/buildlink3.mk" --_----------=_1604311622288710--