Received: by mail.netbsd.org (Postfix, from userid 605) id 8375584E46; Thu, 3 Oct 2019 23:32:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 097C284E05 for ; Thu, 3 Oct 2019 23:32:28 +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 gbBi-1_JUdWm for ; Thu, 3 Oct 2019 23:32:27 +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 5A68884D20 for ; Thu, 3 Oct 2019 23:32:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4E66CFBF4; Thu, 3 Oct 2019 23:32:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570145547117700" MIME-Version: 1.0 Date: Thu, 3 Oct 2019 23:32:27 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/graphics/cinepaint To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20191003233227.4E66CFBF4@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. --_----------=_1570145547117700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Thu Oct 3 23:32:27 UTC 2019 Modified Files: pkgsrc/graphics/cinepaint: Makefile Log Message: cinepaint: switch us over to C++11. Fixes PR pkg/54596: cinepaint build broken with latest OpenEXR Bump PKGREVISION out of paranoia. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 pkgsrc/graphics/cinepaint/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570145547117700 Content-Disposition: inline Content-Length: 791 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/cinepaint/Makefile diff -u pkgsrc/graphics/cinepaint/Makefile:1.65 pkgsrc/graphics/cinepaint/Makefile:1.66 --- pkgsrc/graphics/cinepaint/Makefile:1.65 Sun Jul 21 22:24:55 2019 +++ pkgsrc/graphics/cinepaint/Makefile Thu Oct 3 23:32:27 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.65 2019/07/21 22:24:55 wiz Exp $ +# $NetBSD: Makefile,v 1.66 2019/10/03 23:32:27 maya Exp $ DISTNAME= cinepaint-1.0-4 PKGNAME= cinepaint-1.0.4 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cinepaint/} @@ -13,7 +13,7 @@ LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2 AND MAKE_JOBS_SAFE= no -USE_LANGUAGES= c c++03 +USE_LANGUAGES= c c++11 USE_LIBTOOL= yes USE_TOOLS+= pkg-config msgfmt gmake GNU_CONFIGURE= yes --_----------=_1570145547117700--