Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_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 A92DC1A921F for ; Sun, 3 Apr 2022 10:04:11 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 094BE84D44; Sun, 3 Apr 2022 10:04:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4162284EC7 for ; Sun, 3 Apr 2022 10:04:10 +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 MMsYfqE2LBia for ; Sun, 3 Apr 2022 10:04:09 +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 93BB084D44 for ; Sun, 3 Apr 2022 10:04:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 876BBFB24; Sun, 3 Apr 2022 10:04:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1648980249120160" MIME-Version: 1.0 Date: Sun, 3 Apr 2022 10:04:09 +0000 From: "pin" Subject: CVS commit: pkgsrc/audio/spotify-player To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20220403100409.876BBFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1648980249120160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Sun Apr 3 10:04:09 UTC 2022 Modified Files: pkgsrc/audio/spotify-player: options.mk Log Message: audio/spotify-player Fix build with gstreamer-backend. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/audio/spotify-player/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1648980249120160 Content-Disposition: inline Content-Length: 1102 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/spotify-player/options.mk diff -u pkgsrc/audio/spotify-player/options.mk:1.2 pkgsrc/audio/spotify-player/options.mk:1.3 --- pkgsrc/audio/spotify-player/options.mk:1.2 Wed Sep 8 10:48:20 2021 +++ pkgsrc/audio/spotify-player/options.mk Sun Apr 3 10:04:09 2022 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2021/09/08 10:48:20 pin Exp $ +# $NetBSD: options.mk,v 1.3 2022/04/03 10:04:09 pin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.spotify-player PKG_SUPPORTED_OPTIONS= alsa gstreamer jack portaudio pulseaudio rodio sdl @@ -17,7 +17,10 @@ RUSTFLAGS+= -C link-arg=${COMPILER_RPAT CARGO_FEATURES+= gstreamer-backend RUSTFLAGS+= -C link-arg=-L${BUILDLINK_PREFIX.gstreamer1}/lib RUSTFLAGS+= -C link-arg=${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.gstreamer1}/lib +DEPENDS+= gstreamer1-default-backend-[0-9]*:../../meta-pkgs/gstreamer1-default-backend .include "../../multimedia/gstreamer1/buildlink3.mk" +.include "../../multimedia/gst-plugins1-base/buildlink3.mk" +.include "../../multimedia/gst-plugins1-good/buildlink3.mk" .endif .if !empty(PKG_OPTIONS:Mjack) --_----------=_1648980249120160--