Received: by mail.netbsd.org (Postfix, from userid 605) id DE44984D5B; Thu, 26 Mar 2020 12:04:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 68E6484D55 for ; Thu, 26 Mar 2020 12:04:12 +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 VcbPE0B5k92w for ; Thu, 26 Mar 2020 12:04:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B7E5A84CD3 for ; Thu, 26 Mar 2020 12:04:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B5B86FB27; Thu, 26 Mar 2020 12:04:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585224251199660" MIME-Version: 1.0 Date: Thu, 26 Mar 2020 12:04:11 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/csound6 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200326120411.B5B86FB27@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. --_----------=_1585224251199660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Mar 26 12:04:11 UTC 2020 Modified Files: pkgsrc/audio/csound6: Makefile Log Message: csound6: Needs flex. Remove bsdtar requirement. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/audio/csound6/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585224251199660 Content-Disposition: inline Content-Length: 1355 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/csound6/Makefile diff -u pkgsrc/audio/csound6/Makefile:1.47 pkgsrc/audio/csound6/Makefile:1.48 --- pkgsrc/audio/csound6/Makefile:1.47 Sun Mar 8 16:48:38 2020 +++ pkgsrc/audio/csound6/Makefile Thu Mar 26 12:04:11 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2020/03/08 16:48:38 wiz Exp $ +# $NetBSD: Makefile,v 1.48 2020/03/26 12:04:11 nia Exp $ DISTNAME= csound-${CSOUND_VERSION} PKGNAME= csound6-${CSOUND_VERSION} @@ -15,7 +15,7 @@ LICENSE= gnu-lgpl-v2.1 # or later CSOUND_VERSION= 6.13.0 #WRKSRC= ${WRKDIR}/Csound${CSOUND_VERSION} USE_LANGUAGES= c c++ -USE_TOOLS+= bison +USE_TOOLS+= bison flex CFLAGS+= -g -D__PKGSRC_PREFIX__=\"${PREFIX}/\" -DBETA USE_CMAKE= yes CMAKE_ARGS+= -DBUILD_RELEASE=1 @@ -24,9 +24,6 @@ CMAKE_ARGS+= -DBUILD_HDF5_OPCODES=OFF # CMAKE_INSTALL_RPATH doesn't work for some reason, so do it here. LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/csound6 -# Has long files our tar doesn't understand. -EXTRACT_USING= bsdtar - PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 5.01 INSTALLATION_DIRS= bin @@ -47,7 +44,6 @@ post-install: ${LN} -s ../lib/csound6/csound bin/csound6 .include "options.mk" - .include "../../audio/fluidsynth/buildlink3.mk" .include "../../audio/libsamplerate/buildlink3.mk" .include "../../audio/libsndfile/buildlink3.mk" --_----------=_1585224251199660--