95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
79 lines
2.7 KiB
Ruby
79 lines
2.7 KiB
Ruby
class Povray < Formula
|
|
desc "Persistence Of Vision RAYtracer (POVRAY)"
|
|
homepage "http://www.povray.org/"
|
|
url "https://github.com/POV-Ray/povray/archive/v3.7.0.0.tar.gz"
|
|
sha256 "bf68861d648e3acafbd1d83a25016a0c68547b257e4fa79fb36eb5f08d665f27"
|
|
revision 1
|
|
|
|
depends_on :macos => :lion
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libpng"
|
|
depends_on "boost"
|
|
depends_on "jpeg"
|
|
depends_on "libtiff"
|
|
depends_on "openexr" => :optional
|
|
|
|
# Patches lseek64 => lseek
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/113876/trunk/dports/graphics/povray/files/patch-lseek64.diff"
|
|
sha256 "6ade943b074f25d35d49a82f920d81a48be7d18c9b5a6db9988020a1f9b0bda4"
|
|
end
|
|
|
|
# Fixes configure script's stat usage, automake subdir
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/113876/trunk/dports/graphics/povray/files/patch-unix-configure.ac.diff"
|
|
sha256 "025bfc178a6a298052ff97c0b2659b7f283d57bb0e43ba9962d3a5376ad16099"
|
|
end
|
|
|
|
# prebuild.sh doesn't create Makefile.in properly
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/113876/trunk/dports/graphics/povray/files/patch-unix-prebuild.sh.diff"
|
|
sha256 "1322acc324327019a31a2b97a59dbcfc6ca24981a833627399ae2ebd92c24ef6"
|
|
end
|
|
|
|
# missing sys/types.h header include
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/113887/trunk/dports/graphics/povray/files/patch-vfe-uint.diff"
|
|
sha256 "c8162b6574f15f4fec668e4625d33184cf949d1368c4a86297ca3592d723f1d3"
|
|
end
|
|
|
|
# Fixes some compiler warnings; comes from the upstream repo, should be in next release.
|
|
patch do
|
|
url "https://github.com/POV-Ray/povray/commit/b3846f5723745e6e7926883ec6bc404922a900e6.diff"
|
|
sha256 "6c5c8cdf5ddf3119ed2be2133fd84eb2d76d4157644d5767eac8043aa0329a82"
|
|
end
|
|
|
|
# Replaces references to shared_ptr with boost::shared_ptr
|
|
patch do
|
|
url "https://gist.githubusercontent.com/mistydemeo/7633971/raw/ef285191f9da25aa73806d1200611b8c955ab873/boost-sharedptr.diff"
|
|
sha256 "0db27c4bf41334fdd0b5d685defad07e62752a64f1fe5c49ae100ece5aebd358"
|
|
end
|
|
|
|
def install
|
|
# include the boost system library to resolve compilation conflicts
|
|
ENV["LIBS"] = "-lboost_system-mt -lboost_thread-mt"
|
|
|
|
args = [
|
|
"COMPILED_BY=homebrew",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
]
|
|
|
|
args << "--with-openexr=${HOMEBREW_PREFIX}" if build.include? "use-openexr"
|
|
|
|
cd "unix" do
|
|
system "./prebuild.sh"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
ohai "Rendering all test scenes; this may take a while"
|
|
system "#{share}/povray-3.7/scripts/allscene.sh", "-o", "."
|
|
end
|
|
end
|