homebrew-core/Formula/cgal.rb

74 lines
2.2 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cgal < Formula
desc "CGAL: Computational Geometry Algorithm Library"
2012-02-22 05:12:27 +00:00
homepage 'http://www.cgal.org/'
url 'https://gforge.inria.fr/frs/download.php/file/34898/CGAL-4.6.1.tar.gz'
sha256 '451b582064eededb6672ddd880e38949130187512f26bd91ec90157e2eb151a5'
2014-10-22 17:39:42 +00:00
bottle do
2015-07-19 03:21:56 +00:00
cellar :any
sha256 "4a82c2f4f0b0028fc2a4c2e9720faee8fe3c9fdf11f02019373f28d694f1d868" => :yosemite
sha256 "9b7218a479baae5fbedfc2f4fbde2a2977b34c437d821ec0ffc40358e0edf8f6" => :mavericks
sha256 "52ad50438026a183bef4a723f4886a5f65db8cd172975f338aa18f56adbe9702" => :mountain_lion
2014-10-22 17:39:42 +00:00
end
option :cxx11
2012-08-26 06:29:51 +00:00
option 'imaging', "Build ImageIO and QT compoments of CGAL"
option 'with-eigen3', "Build with Eigen3 support"
option 'with-lapack', "Build with LAPACK support"
2012-08-26 06:29:51 +00:00
depends_on 'cmake' => :build
if build.cxx11?
depends_on 'boost' => 'c++11'
depends_on 'gmp' => 'c++11'
else
depends_on 'boost'
depends_on 'gmp'
end
depends_on 'mpfr'
2012-08-26 06:29:51 +00:00
depends_on 'qt' if build.include? 'imaging'
depends_on 'eigen' if build.with? "eigen3"
2014-03-18 17:13:30 +00:00
# Allows to compile with clang 425: http://goo.gl/y9Dg2y
patch :DATA
def install
ENV.cxx11 if build.cxx11?
args = ["-DCMAKE_INSTALL_PREFIX=#{prefix}",
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON",
"-DCMAKE_INSTALL_NAME_DIR=#{HOMEBREW_PREFIX}/lib"]
2012-08-26 06:29:51 +00:00
unless build.include? 'imaging'
args << "-DWITH_CGAL_Qt3=OFF" << "-DWITH_CGAL_Qt4=OFF" << "-DWITH_CGAL_ImageIO=OFF"
end
if build.with? "eigen3"
args << "-DWITH_Eigen3=ON"
end
if build.with? "lapack"
args << "-DWITH_LAPACK=ON"
end
args << '.'
system "cmake", *args
system "make install"
end
end
__END__
diff --git a/src/CGAL/File_header_extended_OFF.cpp b/src/CGAL/File_header_extended_OFF.cpp
index 3f709ff..f0e5bd3 100644
--- a/src/CGAL/File_header_extended_OFF.cpp
+++ b/src/CGAL/File_header_extended_OFF.cpp
@@ -186,7 +186,8 @@ std::istream& operator>>( std::istream& in, File_header_extended_OFF& h) {
}
in >> keyword;
}
- in >> skip_until_EOL >> skip_comment_OFF;
+ skip_until_EOL(in);
+ skip_comment_OFF(in);
return in;
}
#undef CGAL_IN