homebrew-core/Formula/open-scene-graph.rb
nibbles 2bits 3068061b1c open-scene-graph: fix patch array, adjust fails_with
Open-scene-graph has two patches. Change the patch block so
that something is returned.  Fixes patches not being applied.
Change the fails_with build number for clang to 421.

Closes Homebrew/homebrew#14236.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-17 12:28:27 -05:00

92 lines
3.2 KiB
Ruby

require 'formula'
class OpenSceneGraph < Formula
homepage 'http://www.openscenegraph.org/projects/osg'
url 'http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-3.0.1/source/OpenSceneGraph-3.0.1.zip'
sha1 '13c7e39f6d62047ad944d8d28a0f0eb60384ce33'
head 'http://www.openscenegraph.org/svn/osg/OpenSceneGraph/trunk/'
depends_on 'cmake' => :build
depends_on 'jpeg'
depends_on 'wget'
depends_on 'ffmpeg' => :optional
depends_on 'gdal' => :optional
depends_on 'jasper' => :optional
depends_on 'openexr' => :optional
depends_on 'dcmtk' => :optional
depends_on 'librsvg' => :optional
depends_on 'collada-dom' => :optional
devel do
url 'http://www.openscenegraph.org/downloads/developer_releases/OpenSceneGraph-3.1.1.zip'
md5 '079b9c1738057227b1804c6698fc9c89'
end
fails_with :clang do
build 421
cause <<-EOS.undent
cannot initialize a parameter of type 'void *' with an lvalue of type 'const void *const'
http://forum.openscenegraph.org/viewtopic.php?t=10042
EOS
end
# 1: The mini-Boost finder in FindCOLLADA doesn't find our boost, so fix it.
# 2: Lion replacement for CGDisplayBitsPerPixel() taken from:
# http://www.openscenegraph.org/projects/osg/changeset/12790/OpenSceneGraph/trunk/src/osgViewer/DarwinUtils.mm
# https://github.com/mxcl/homebrew/issues/11391
# Remove at >= 3.1.1
def patches
p = [DATA]
p << "https://raw.github.com/gist/2890654/a07dec42b8451edf9edbf6468e5ae464c73b3b95/osg.diff" if build.stable?
return p
end
def install
args = std_cmake_args + %w[
-DBUILD_DOCUMENTATION=ON
]
if snow_leopard_64?
args << "-DCMAKE_OSX_ARCHITECTURES=x86_64"
args << "-DOSG_DEFAULT_IMAGE_PLUGIN_FOR_OSX=imageio"
args << "-DOSG_WINDOWING_SYSTEM=Cocoa"
else
args << "-DCMAKE_OSX_ARCHITECTURES=i386"
end
if Formula.factory('collada-dom').installed?
args << "-DCOLLADA_INCLUDE_DIR=#{HOMEBREW_PREFIX}/include/collada-dom"
end
args << '..'
mkdir "build" do
system "cmake", *args
system "make install"
end
end
end
__END__
diff --git a/CMakeModules/FindCOLLADA.cmake b/CMakeModules/FindCOLLADA.cmake
index 428cb29..6206580 100644
--- a/CMakeModules/FindCOLLADA.cmake
+++ b/CMakeModules/FindCOLLADA.cmake
@@ -235,7 +235,7 @@ FIND_LIBRARY(COLLADA_STATIC_LIBRARY_DEBUG
)
FIND_LIBRARY(COLLADA_BOOST_FILESYSTEM_LIBRARY
- NAMES libboost_filesystem boost_filesystem libboost_filesystem-vc90-mt libboost_filesystem-vc100-mt
+ NAMES libboost_filesystem boost_filesystem boost_filesystem-mt libboost_filesystem-vc90-mt libboost_filesystem-vc100-mt
PATHS
${COLLADA_DOM_ROOT}/external-libs/boost/lib/${COLLADA_BUILDNAME}
${COLLADA_DOM_ROOT}/external-libs/boost/lib/mingw
@@ -251,7 +251,7 @@ FIND_LIBRARY(COLLADA_STATIC_LIBRARY_DEBUG
)
FIND_LIBRARY(COLLADA_BOOST_SYSTEM_LIBRARY
- NAMES libboost_system boost_system libboost_system-vc90-mt libboost_system-vc100-mt
+ NAMES libboost_system boost_system boost_system-mt libboost_system-vc90-mt libboost_system-vc100-mt
PATHS
${COLLADA_DOM_ROOT}/external-libs/boost/lib/${COLLADA_BUILDNAME}
${COLLADA_DOM_ROOT}/external-libs/boost/lib/mingw