Received: by mail.netbsd.org (Postfix, from userid 605) id CAC6A84DC5; Mon, 23 Mar 2020 09:44:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 53D5684DC0 for ; Mon, 23 Mar 2020 09:44: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 PzUxuHNgknc5 for ; Mon, 23 Mar 2020 09:44:34 +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 ADBAB84CD8 for ; Mon, 23 Mar 2020 09:44:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A1723FB27; Mon, 23 Mar 2020 09:44:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584956674241660" MIME-Version: 1.0 Date: Mon, 23 Mar 2020 09:44:34 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/lmms To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200323094434.A1723FB27@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. --_----------=_1584956674241660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Mar 23 09:44:34 UTC 2020 Modified Files: pkgsrc/audio/lmms: Makefile Log Message: lmms: Avoid silly portability check. This is a bash script used for publishing Linux builds... To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 pkgsrc/audio/lmms/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584956674241660 Content-Disposition: inline Content-Length: 971 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/lmms/Makefile diff -u pkgsrc/audio/lmms/Makefile:1.59 pkgsrc/audio/lmms/Makefile:1.60 --- pkgsrc/audio/lmms/Makefile:1.59 Tue Mar 10 22:09:22 2020 +++ pkgsrc/audio/lmms/Makefile Mon Mar 23 09:44:34 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 2020/03/10 22:09:22 wiz Exp $ +# $NetBSD: Makefile,v 1.60 2020/03/23 09:44:34 nia Exp $ DISTNAME= lmms_1.2.1 PKGNAME= ${DISTNAME:S/_/-/1} @@ -36,10 +36,12 @@ CMAKE_ARGS+= -DWANT_SOUNDIO=OFF # requir CMAKE_ARGS+= -DWANT_SNDIO=OFF # requires sndio CMAKE_ARGS+= -DWANT_VST_NOWINE=ON +# for libzynaddsubfx.so in plugins/zynaddsubfx/. +LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/lmms + BUILDLINK_TRANSFORM+= rm:-floop-optimize2 rm:-fgcse-las -# for libzynaddsubfx.so in plugins/zynaddsubfx/. -LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/lmms +CHECK_PORTABILITY_SKIP+= cmake/linux/package_linux.sh.in .include "options.mk" .include "../../audio/fluidsynth/buildlink3.mk" --_----------=_1584956674241660--