2010-06-24 03:49:22 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cgal < Formula
|
2012-02-22 05:12:27 +00:00
|
|
|
homepage 'http://www.cgal.org/'
|
2014-04-17 07:15:41 +00:00
|
|
|
url 'https://gforge.inria.fr/frs/download.php/33525/CGAL-4.4.tar.gz'
|
|
|
|
sha1 '5e82193808817ba5144a0c8a57fa5d0c2498cb0d'
|
2010-06-24 03:49:22 +00:00
|
|
|
|
2014-01-07 08:52:59 +00:00
|
|
|
option :cxx11
|
|
|
|
|
2012-08-26 06:29:51 +00:00
|
|
|
option 'imaging', "Build ImageIO and QT compoments of CGAL"
|
2013-05-30 16:41:42 +00:00
|
|
|
option 'with-eigen3', "Build with Eigen3 support"
|
|
|
|
option 'with-lapack', "Build with LAPACK support"
|
2012-08-26 06:29:51 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'cmake' => :build
|
2014-01-07 08:52:59 +00:00
|
|
|
if build.cxx11?
|
|
|
|
depends_on 'boost' => 'c++11'
|
|
|
|
depends_on 'gmp' => 'c++11'
|
|
|
|
else
|
|
|
|
depends_on 'boost'
|
|
|
|
depends_on 'gmp'
|
|
|
|
end
|
2010-06-24 03:49:22 +00:00
|
|
|
depends_on 'mpfr'
|
2010-10-27 01:18:23 +00:00
|
|
|
|
2012-08-26 06:29:51 +00:00
|
|
|
depends_on 'qt' if build.include? 'imaging'
|
2014-03-06 20:40:26 +00:00
|
|
|
depends_on 'eigen' if build.with? "eigen3"
|
2010-06-24 03:49:22 +00:00
|
|
|
|
2014-03-18 17:13:30 +00:00
|
|
|
# Allows to compile with clang 425: http://goo.gl/y9Dg2y
|
|
|
|
patch :DATA
|
2014-02-13 04:23:29 +00:00
|
|
|
|
2010-06-24 03:49:22 +00:00
|
|
|
def install
|
2014-01-07 08:52:59 +00:00
|
|
|
ENV.cxx11 if build.cxx11?
|
2011-12-31 04:01:16 +00:00
|
|
|
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'
|
2010-10-27 01:18:23 +00:00
|
|
|
args << "-DWITH_CGAL_Qt3=OFF" << "-DWITH_CGAL_Qt4=OFF" << "-DWITH_CGAL_ImageIO=OFF"
|
|
|
|
end
|
2014-03-06 20:40:26 +00:00
|
|
|
if build.with? "eigen3"
|
2013-05-30 16:41:42 +00:00
|
|
|
args << "-DWITH_Eigen3=ON"
|
|
|
|
end
|
2014-03-06 20:40:26 +00:00
|
|
|
if build.with? "lapack"
|
2013-05-30 16:41:42 +00:00
|
|
|
args << "-DWITH_LAPACK=ON"
|
|
|
|
end
|
2011-10-27 18:23:23 +00:00
|
|
|
args << '.'
|
|
|
|
system "cmake", *args
|
2010-06-24 03:49:22 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
2014-02-13 04:23:29 +00:00
|
|
|
|
|
|
|
__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
|