Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7CDA085B14 for ; Tue, 31 Oct 2023 14:22:21 +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 YMdwiMEUoTVY for ; Tue, 31 Oct 2023 14:22:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D14A485B0B for ; Tue, 31 Oct 2023 14:22:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CABB0FADC; Tue, 31 Oct 2023 14:22:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1698762140193020" MIME-Version: 1.0 Date: Tue, 31 Oct 2023 14:22:20 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/audio/SDL2_sound To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20231031142220.CABB0FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1698762140193020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Tue Oct 31 14:22:20 UTC 2023 Modified Files: pkgsrc/audio/SDL2_sound: Makefile Log Message: SDL2_sound: USE_CMAKE -> cmake/build.mk To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/audio/SDL2_sound/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1698762140193020 Content-Disposition: inline Content-Length: 874 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/SDL2_sound/Makefile diff -u pkgsrc/audio/SDL2_sound/Makefile:1.3 pkgsrc/audio/SDL2_sound/Makefile:1.4 --- pkgsrc/audio/SDL2_sound/Makefile:1.3 Sat May 6 19:08:45 2023 +++ pkgsrc/audio/SDL2_sound/Makefile Tue Oct 31 14:22:20 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2023/05/06 19:08:45 ryoon Exp $ +# $NetBSD: Makefile,v 1.4 2023/10/31 14:22:20 nros Exp $ DISTNAME= SDL_sound-2.0.1 PKGNAME= ${DISTNAME:S/SDL/SDL2/} @@ -15,12 +15,13 @@ LICENSE= zlib WRKSRC= ${WRKDIR}/${DISTNAME} -USE_CMAKE= yes USE_LANGUAGES= c c++ # dont't build and install playsound # to not conflict with audio/SDL_sound -CMAKE_ARGS+= -DSDLSOUND_BUILD_TEST:BOOL=FALSE +CMAKE_CONFIGURE_ARGS+= -DSDLSOUND_BUILD_TEST:BOOL=FALSE + +.include "../../devel/cmake/build.mk" .include "../../devel/SDL2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1698762140193020--