Received: by mail.netbsd.org (Postfix, from userid 605) id 812AD84F7A; Mon, 12 Jul 2021 21:15:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ABBBA84F5B for ; Mon, 12 Jul 2021 21:06:43 +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 IGQoLbKmcgyJ for ; Mon, 12 Jul 2021 21:06:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2AAAA84D72 for ; Mon, 12 Jul 2021 21:06:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 245AFFA95; Mon, 12 Jul 2021 21:06:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1626124003149200" MIME-Version: 1.0 Date: Mon, 12 Jul 2021 21:06:43 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/osg To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210712210643.245AFFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1626124003149200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jul 12 21:06:43 UTC 2021 Modified Files: pkgsrc/graphics/osg: Makefile PLIST Log Message: osg: disable exr support, it was broken by openexr changes. To generate a diff of this commit: cvs rdiff -u -r1.132 -r1.133 pkgsrc/graphics/osg/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/graphics/osg/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1626124003149200 Content-Disposition: inline Content-Length: 2078 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/osg/Makefile diff -u pkgsrc/graphics/osg/Makefile:1.132 pkgsrc/graphics/osg/Makefile:1.133 --- pkgsrc/graphics/osg/Makefile:1.132 Fri Jul 9 10:30:11 2021 +++ pkgsrc/graphics/osg/Makefile Mon Jul 12 21:06:42 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.132 2021/07/09 10:30:11 markd Exp $ +# $NetBSD: Makefile,v 1.133 2021/07/12 21:06:42 nia Exp $ DISTNAME= osg-3.6.5 PKGREVISION= 9 @@ -33,6 +33,7 @@ CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKA CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_GStreamer=TRUE CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_GtkGl=TRUE CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_OpenCascade=TRUE +CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_OpenEXR=TRUE CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_DCMTK=TRUE CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_NVTT=TRUE CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_ZeroConf=TRUE @@ -55,7 +56,6 @@ CXXFLAGS+= -D__STDC_LIMIT_MACROS .include "../../fonts/fontconfig/buildlink3.mk" .include "../../graphics/freetype2/buildlink3.mk" .include "../../graphics/jasper/buildlink3.mk" -.include "../../graphics/openexr/buildlink3.mk" .include "../../graphics/tiff/buildlink3.mk" .include "../../lang/lua52/buildlink3.mk" .include "../../multimedia/ffmpeg4/buildlink3.mk" Index: pkgsrc/graphics/osg/PLIST diff -u pkgsrc/graphics/osg/PLIST:1.8 pkgsrc/graphics/osg/PLIST:1.9 --- pkgsrc/graphics/osg/PLIST:1.8 Tue Mar 2 09:41:56 2021 +++ pkgsrc/graphics/osg/PLIST Mon Jul 12 21:06:42 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2021/03/02 09:41:56 adam Exp $ +@comment $NetBSD: PLIST,v 1.9 2021/07/12 21:06:42 nia Exp $ bin/osgarchive bin/osgconv bin/osgfilecache @@ -702,7 +702,6 @@ lib/osgPlugins-${PKGVERSION}/osgdb_depre lib/osgPlugins-${PKGVERSION}/osgdb_deprecated_osgwidget.so lib/osgPlugins-${PKGVERSION}/osgdb_dot.so lib/osgPlugins-${PKGVERSION}/osgdb_dxf.so -lib/osgPlugins-${PKGVERSION}/osgdb_exr.so lib/osgPlugins-${PKGVERSION}/osgdb_ffmpeg.so lib/osgPlugins-${PKGVERSION}/osgdb_freetype.so ${PLIST.gdal}lib/osgPlugins-${PKGVERSION}/osgdb_gdal.so --_----------=_1626124003149200--