Received: by mail.netbsd.org (Postfix, from userid 605) id 3193584DBB; Mon, 23 Mar 2020 10:29:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AFBA484D40 for ; Mon, 23 Mar 2020 10:29:31 +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 RhvLK2hH4kqK for ; Mon, 23 Mar 2020 10:29:31 +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 05D3E84C81 for ; Mon, 23 Mar 2020 10:29:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ED9F7FB27; Mon, 23 Mar 2020 10:29:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158495937019250" MIME-Version: 1.0 Date: Mon, 23 Mar 2020 10:29:30 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/openttd To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200323102930.ED9F7FB27@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. --_----------=_158495937019250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Mar 23 10:29:30 UTC 2020 Modified Files: pkgsrc/games/openttd: Makefile Log Message: openttd: Force gnu++11 properly, for alloca. Bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 pkgsrc/games/openttd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158495937019250 Content-Disposition: inline Content-Length: 1084 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/openttd/Makefile diff -u pkgsrc/games/openttd/Makefile:1.84 pkgsrc/games/openttd/Makefile:1.85 --- pkgsrc/games/openttd/Makefile:1.84 Sun Mar 8 16:49:45 2020 +++ pkgsrc/games/openttd/Makefile Mon Mar 23 10:29:30 2020 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.84 2020/03/08 16:49:45 wiz Exp $ +# $NetBSD: Makefile,v 1.85 2020/03/23 10:29:30 nia Exp $ DISTNAME= openttd-1.9.3-source PKGNAME= ${DISTNAME:S/-source//} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= games MASTER_SITES= https://proxy.binaries.openttd.org/openttd-releases/${PKGVERSION_NOREV}/ EXTRACT_SUFX= .tar.xz @@ -14,7 +14,7 @@ LICENSE= gnu-gpl-v2 WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} HAS_CONFIGURE= yes -USE_LANGUAGES= c gnu++11 +USE_LANGUAGES= c c++ USE_TOOLS+= gmake pkg-config BUILD_DEFS+= VARBASE BUILD_TARGET= bundle @@ -22,6 +22,8 @@ BUILD_TARGET= bundle # C++11 GCC_REQD+= 4.8 +BUILDLINK_TRANSFORM+= opt:-std=c++11:-std=gnu++11 # alloca + CONFIGURE_ARGS+= --prefix-dir=${PREFIX} CONFIGURE_ARGS+= --binary-dir=bin CONFIGURE_ARGS+= --data-dir=share/openttd --_----------=_158495937019250--