summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMartin Aumüller <aumuell@reserv.at>2023-11-02 08:41:03 +0100
committerGitHub <noreply@github.com>2023-11-02 08:41:03 +0100
commit83bb2002b427e2503785e758c485ba00b5f0fbd6 (patch)
tree66602165c6c1bd80c1bbb44eb3d5bf00abda6ecf /var
parent16fa3b9f077be62e62214585dee9f6dfda7f48ad (diff)
downloadspack-83bb2002b427e2503785e758c485ba00b5f0fbd6.tar.gz
spack-83bb2002b427e2503785e758c485ba00b5f0fbd6.tar.bz2
spack-83bb2002b427e2503785e758c485ba00b5f0fbd6.tar.xz
spack-83bb2002b427e2503785e758c485ba00b5f0fbd6.zip
openscenegraph: support more file formats (#39897)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/openscenegraph/openscenegraph-3.6.5-openexr3.patch68
-rw-r--r--var/spack/repos/builtin/packages/openscenegraph/package.py79
2 files changed, 127 insertions, 20 deletions
diff --git a/var/spack/repos/builtin/packages/openscenegraph/openscenegraph-3.6.5-openexr3.patch b/var/spack/repos/builtin/packages/openscenegraph/openscenegraph-3.6.5-openexr3.patch
new file mode 100644
index 0000000000..6a6aa57950
--- /dev/null
+++ b/var/spack/repos/builtin/packages/openscenegraph/openscenegraph-3.6.5-openexr3.patch
@@ -0,0 +1,68 @@
+https://bugs.gentoo.org/833491
+
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -752,7 +752,6 @@ ELSE()
+- FIND_PACKAGE(ilmbase)
+ FIND_PACKAGE(Inventor)
+ FIND_PACKAGE(Jasper)
+- FIND_PACKAGE(OpenEXR)
++ FIND_PACKAGE(OpenEXR CONFIG)
+ FIND_PACKAGE(OpenCascade)
+ FIND_PACKAGE(COLLADA)
+ FIND_PACKAGE(FBX)
+--- a/src/osgPlugins/CMakeLists.txt
++++ b/src/osgPlugins/CMakeLists.txt
+@@ -105,7 +105,7 @@ ENDIF()
+ IF(JASPER_FOUND)
+ ADD_PLUGIN_DIRECTORY(jp2)
+ ENDIF()
+-IF(OPENEXR_FOUND AND ZLIB_FOUND AND OSG_CPP_EXCEPTIONS_AVAILABLE)
++IF(OpenEXR_FOUND AND ZLIB_FOUND AND OSG_CPP_EXCEPTIONS_AVAILABLE)
+ ADD_PLUGIN_DIRECTORY(exr)
+ ENDIF()
+ IF(GIFLIB_FOUND)
+--- a/src/osgPlugins/exr/CMakeLists.txt
++++ b/src/osgPlugins/exr/CMakeLists.txt
+@@ -1,9 +1,7 @@
+-INCLUDE_DIRECTORIES( ${ILMBASE_INCLUDE_DIR}/OpenEXR )
+-INCLUDE_DIRECTORIES( ${OPENEXR_INCLUDE_DIR}/OpenEXR )
+-
+ SET(TARGET_SRC ReaderWriterEXR.cpp )
+
+-SET(TARGET_LIBRARIES_VARS ${OPENEXR_LIBRARIES_VARS} ${ILMBASE_LIBRARIES_VARS} ZLIB_LIBRARIES)
++SET(OPENEXR_LIBRARIES_VARS OpenEXR::OpenEXR)
++SET(TARGET_LIBRARIES_VARS OPENEXR_LIBRARIES_VARS ZLIB_LIBRARIES)
+
+ IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
+ REMOVE_CXX_FLAG(-Wshadow)
+--- a/src/osgPlugins/exr/ReaderWriterEXR.cpp
++++ b/src/osgPlugins/exr/ReaderWriterEXR.cpp
+@@ -41,11 +41,11 @@ public:
+ {
+ return _inStream->read(c,n).good();
+ };
+- virtual Int64 tellg ()
++ virtual uint64_t tellg ()
+ {
+ return _inStream->tellg();
+ };
+- virtual void seekg (Int64 pos)
++ virtual void seekg (uint64_t pos)
+ {
+ _inStream->seekg(pos);
+ };
+@@ -69,11 +69,11 @@ public:
+ {
+ _outStream->write(c,n);
+ };
+- virtual Int64 tellp ()
++ virtual uint64_t tellp ()
+ {
+ return _outStream->tellp();
+ };
+- virtual void seekp (Int64 pos)
++ virtual void seekp (uint64_t pos)
+ {
+ _outStream->seekp(pos);
+ };
diff --git a/var/spack/repos/builtin/packages/openscenegraph/package.py b/var/spack/repos/builtin/packages/openscenegraph/package.py
index bb4e2186a1..bce48ff1c1 100644
--- a/var/spack/repos/builtin/packages/openscenegraph/package.py
+++ b/var/spack/repos/builtin/packages/openscenegraph/package.py
@@ -3,6 +3,8 @@
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+import sys
+
from spack.package import *
@@ -14,6 +16,10 @@ class Openscenegraph(CMakePackage):
git = "https://github.com/openscenegraph/OpenSceneGraph.git"
url = "https://github.com/openscenegraph/OpenSceneGraph/archive/OpenSceneGraph-3.6.4.tar.gz"
+ maintainers("aumuell")
+
+ version("master", branch="master")
+ version("stable", branch="OpenSceneGraph-3.6")
version("3.6.5", sha256="aea196550f02974d6d09291c5d83b51ca6a03b3767e234a8c0e21322927d1e12")
version("3.6.4", sha256="81394d1b484c631028b85d21c5535280c21bbd911cb058e8746c87e93e7b9d33")
version("3.4.1", sha256="930eb46f05781a76883ec16c5f49cfb29a059421db131005d75bec4d78401fd5")
@@ -22,11 +28,25 @@ class Openscenegraph(CMakePackage):
version("3.1.5", sha256="dddecf2b33302076712100af59b880e7647bc595a9a7cc99186e98d6e0eaeb5c")
variant("shared", default=True, description="Builds a shared version of the library")
+ variant("apps", default=False, description="Build OpenSceneGraph tools")
+ variant("dcmtk", default=False, description="Build support for DICOM files using DCMTK")
variant(
"ffmpeg", default=False, description="Builds ffmpeg plugin for audio encoding/decoding"
)
+ variant("gdal", default=False, description="Build support for geospatial files using GDAL")
+ variant("gta", default=False, description="Build support for Generic Tagged Array (GTA) files")
+ variant(
+ "inventor", default=False, description="Build support for Open Inventor files using Coin3D"
+ )
+ variant(
+ "opencascade", default=False, description="Build support for CAD files using Open CASCADE"
+ )
+ variant("openexr", default=False, description="Build support for OpenEXR files")
+ variant("pdf", default=False, description="Build support for PDF files using Poppler")
+ variant("svg", default=False, description="Build support for SVG files using librsvg")
depends_on("cmake@2.8.7:", type="build")
+ depends_on("pkgconfig", type="build")
depends_on("gl")
depends_on(
"qt+opengl", when="@:3.5.4"
@@ -42,39 +62,58 @@ class Openscenegraph(CMakePackage):
depends_on("zlib-api")
depends_on("fontconfig")
- depends_on("ffmpeg+avresample", when="+ffmpeg")
+ depends_on("dcmtk+pic", when="+dcmtk")
+ depends_on("gdal", when="+gdal")
+ depends_on("libgta", when="+gta")
+ depends_on("coin3d", when="+inventor")
+ depends_on("opencascade@:7.5", when="+opencascade")
+ depends_on("openexr", when="+openexr")
+ depends_on("ilmbase", when="+openexr ^openexr@:2")
+ depends_on("poppler+glib", when="+pdf")
+ depends_on("librsvg", when="+svg")
+
+ depends_on("ffmpeg@:4", when="+ffmpeg")
+ depends_on("ffmpeg+avresample", when="^ffmpeg@:4")
# https://github.com/openscenegraph/OpenSceneGraph/issues/167
depends_on("ffmpeg@:2", when="@:3.4.0+ffmpeg")
patch("glibc-jasper.patch", when="@3.4%gcc")
+ # from gentoo: https://raw.githubusercontent.com/gentoo/gentoo/9523b20c27d12dd72d1fd5ced3ba4995099925a2/dev-games/openscenegraph/files/openscenegraph-3.6.5-openexr3.patch
+ patch("openscenegraph-3.6.5-openexr3.patch", when="@3.6:")
+
+ def patch(self):
+ # pkgconfig does not work for GTA on macos
+ if sys.platform == "darwin":
+ filter_file("PKG_CHECK_MODULES\\(GTA gta\\)", "", "CMakeModules/FindGTA.cmake")
def cmake_args(self):
spec = self.spec
- shared_status = "ON" if "+shared" in spec else "OFF"
- opengl_profile = "GL{0}".format(spec["gl"].version.up_to(1))
-
args = [
# Variant Options #
- "-DDYNAMIC_OPENSCENEGRAPH={0}".format(shared_status),
- "-DDYNAMIC_OPENTHREADS={0}".format(shared_status),
- "-DOPENGL_PROFILE={0}".format(opengl_profile),
+ self.define_from_variant("DYNAMIC_OPENSCENEGRAPH", "shared"),
+ self.define_from_variant("DYNAMIC_OPENTHREADS", "shared"),
+ self.define_from_variant("BUILD_OSG_APPLICATIONS", "apps"),
# General Options #
- "-DBUILD_OSG_APPLICATIONS=OFF",
- "-DOSG_NOTIFY_DISABLED=ON",
- "-DLIB_POSTFIX=",
- "-DCMAKE_RELWITHDEBINFO_POSTFIX=",
- "-DCMAKE_MINSIZEREL_POSTFIX=",
+ self.define("OPENGL_PROFILE", f"GL{spec['gl'].version.up_to(1)}"),
+ self.define("OSG_NOTIFY_DISABLED", True),
+ self.define("LIB_POSTFIX", ""),
+ self.define("CMAKE_RELWITHDEBINFO_POSTFIX", ""),
+ self.define("CMAKE_MINSIZEREL_POSTFIX", ""),
]
- if spec.satisfies("~ffmpeg"):
- for ffmpeg_lib in ["libavcodec", "libavformat", "libavutil"]:
- args.extend(
- [
- "-DFFMPEG_{0}_INCLUDE_DIRS=".format(ffmpeg_lib.upper()),
- "-DFFMPEG_{0}_LIBRARIES=".format(ffmpeg_lib.upper()),
- ]
- )
+ # explicitly disable or enable plugins depending on variants
+ # CMake will still search for the packages, but won't build the plugins requiring them
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_DICOM", "dcmtk"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_EXR", "openexr"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_FFMPEG", "ffmpeg"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_GDAL", "gdal"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_OGR", "gdal"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_GTA", "gta"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_INVENTOR", "inventor"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_OPENCASCADE", "opencascade"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_PDF", "pdf"))
+ args.append(self.define_from_variant("BUILD_OSG_PLUGIN_SVG", "svg"))
# NOTE: This is necessary in order to allow OpenSceneGraph to compile
# despite containing a number of implicit bool to int conversions.