Received: by mail.netbsd.org (Postfix, from userid 605) id 8012D84FF5; Wed, 24 Jan 2024 16:45:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AADFA84FF3 for ; Wed, 24 Jan 2024 16:45: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 kOqLTAkz55Ky for ; Wed, 24 Jan 2024 16:45:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 06EFB84CFF for ; Wed, 24 Jan 2024 16:45:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F1ABFFA42; Wed, 24 Jan 2024 16:45:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170611473458710" MIME-Version: 1.0 Date: Wed, 24 Jan 2024 16:45:34 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/libgltf To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240124164534.F1ABFFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170611473458710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Jan 24 16:45:34 UTC 2024 Modified Files: pkgsrc/graphics/libgltf: Makefile Log Message: libgltf: needs c++11 now due to boost Fix HOMEPAGE while here. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/graphics/libgltf/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170611473458710 Content-Disposition: inline Content-Length: 961 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/libgltf/Makefile diff -u pkgsrc/graphics/libgltf/Makefile:1.30 pkgsrc/graphics/libgltf/Makefile:1.31 --- pkgsrc/graphics/libgltf/Makefile:1.30 Fri Dec 29 18:24:48 2023 +++ pkgsrc/graphics/libgltf/Makefile Wed Jan 24 16:45:34 2024 @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.30 2023/12/29 18:24:48 adam Exp $ +# $NetBSD: Makefile,v 1.31 2024/01/24 16:45:34 wiz Exp $ DISTNAME= libgltf-0.1.0 -PKGREVISION= 17 +PKGREVISION= 18 CATEGORIES= graphics MASTER_SITES= http://dev-www.libreoffice.org/src/libgltf/ MAINTAINER= ryoon@NetBSD.org -HOMEPAGE= https://gerrit.libreoffice.org/#/admin/projects/libgltf +HOMEPAGE= https://gerrit.libreoffice.org/admin/repos/libgltf,general COMMENT= Rendering library for glTF LICENSE= mpl-2.0 @@ -16,7 +16,7 @@ USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ # Fails with C++14 default language. -FORCE_CXX_STD= c++03 +FORCE_CXX_STD= c++11 PKGCONFIG_OVERRIDE+= libgltf.pc.in --_----------=_170611473458710--