2011-04-21 23:19:24 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ice < Formula
|
|
|
|
homepage 'http://www.zeroc.com'
|
2012-08-04 02:17:21 +00:00
|
|
|
url 'http://www.zeroc.com/download/Ice/3.4/Ice-3.4.2.tar.gz'
|
|
|
|
sha1 '8c84d6e3b227f583d05e08251e07047e6c3a6b42'
|
2011-04-21 23:19:24 +00:00
|
|
|
|
|
|
|
depends_on 'berkeley-db'
|
|
|
|
depends_on 'mcpp'
|
|
|
|
|
2012-06-27 23:27:20 +00:00
|
|
|
# * compile against Berkely DB 5.X
|
|
|
|
# * use our selected compiler
|
|
|
|
def patches
|
|
|
|
[
|
|
|
|
"https://trac.macports.org/export/94734/trunk/dports/devel/ice-cpp/files/patch-ice.cpp.config.Make.rules.Darwin.diff",
|
|
|
|
DATA
|
|
|
|
]
|
|
|
|
end
|
2011-04-21 23:19:24 +00:00
|
|
|
|
|
|
|
def options
|
|
|
|
[
|
|
|
|
['--doc', 'Install documentation'],
|
|
|
|
['--demo', 'Build demos']
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2012-06-27 23:27:20 +00:00
|
|
|
# See:
|
|
|
|
# http://www.zeroc.com/forums/bug-reports/4965-slice2cpp-output-does-not-compile-standards-conformant-compiler.html
|
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
cause <<-EOS.undent
|
|
|
|
In file included from BuiltinSequences.cpp:23:
|
|
|
|
In file included from ../../include/Ice/BuiltinSequences.h:30:
|
|
|
|
../../include/Ice/Stream.h:545:19: error: invalid use of incomplete type 'Ice::MarshalException'
|
|
|
|
throw MarshalException(__FILE__, __LINE__, "enumerator out of range");
|
|
|
|
(and many other errors)
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2011-04-21 23:19:24 +00:00
|
|
|
def install
|
|
|
|
ENV.O2
|
|
|
|
inreplace "cpp/config/Make.rules" do |s|
|
|
|
|
s.gsub! "#OPTIMIZE", "OPTIMIZE"
|
|
|
|
s.gsub! "/opt/Ice-$(VERSION)", prefix
|
|
|
|
s.gsub! "/opt/Ice-$(VERSION_MAJOR).$(VERSION_MINOR)", prefix
|
|
|
|
end
|
|
|
|
|
|
|
|
# what want we build?
|
|
|
|
wb = 'config src include'
|
|
|
|
wb += ' doc' if ARGV.include? '--doc'
|
|
|
|
wb += ' demo' if ARGV.include? '--demo'
|
|
|
|
inreplace "cpp/Makefile" do |s|
|
|
|
|
s.change_make_var! "SUBDIRS", wb
|
|
|
|
end
|
|
|
|
|
|
|
|
inreplace "cpp/config/Make.rules.Darwin" do |s|
|
|
|
|
s.change_make_var! "CXXFLAGS", "#{ENV.cflags} -Wall -D_REENTRANT"
|
|
|
|
end
|
|
|
|
|
2012-02-21 06:04:21 +00:00
|
|
|
cd "cpp" do
|
2011-04-21 23:19:24 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-04-28 22:28:14 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
--- ./cpp/src/Freeze/MapI.cpp
|
|
|
|
+++ ./cpp/src/Freeze/MapI.cpp
|
|
|
|
@@ -1487,10 +1487,10 @@ Freeze::MapHelperI::size() const
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
-#if DB_VERSION_MAJOR != 4
|
|
|
|
-#error Freeze requires DB 4.x
|
|
|
|
+#if DB_VERSION_MAJOR < 4
|
|
|
|
+#error Freeze requires DB 4.x or greater
|
|
|
|
#endif
|
|
|
|
-#if DB_VERSION_MINOR < 3
|
|
|
|
+#if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR < 3
|
|
|
|
_db->stat(&s, 0);
|
|
|
|
#else
|
|
|
|
_db->stat(_connection->dbTxn(), &s, 0);
|