# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ice/ # ice/files # ice/files/Make.rules.FreeBSD # ice/files/patch-Make.rules # ice/files/patch-test::IceUtil::thread::MonitorMutexTest.cpp # ice/files/patch-Makefile # ice/files/patch-src::icecpp::config.h # ice/files/patch-include::IceUtil::Config.h # ice/pkg-descr # ice/distinfo # ice/Makefile # ice/pkg-plist # echo c - ice/ mkdir -p ice/ > /dev/null 2>&1 echo c - ice/files mkdir -p ice/files > /dev/null 2>&1 echo x - ice/files/Make.rules.FreeBSD sed 's/^X//' >ice/files/Make.rules.FreeBSD << 'END-of-ice/files/Make.rules.FreeBSD' Xmkshlib = $(CXX) -shared $(LDFLAGS) -o $(1) -Wl,-h,$(2) $(3) $(4) X XBASELIBS = -lIceUtil %%PTHREAD_LIBS%% XLIBS = -lIce $(BASELIBS) X XICEUTIL_OS_LIBS = %%PTHREAD_LIBS%% X XPLATFORM_HAS_READLINE := yes X Xexport LD_LIBRARY_PATH := $(libdir):$(LD_LIBRARY_PATH) X Xlp64suffix = Xprefix = %%PREFIX%% Xinstall_slicedir = %%DATADIR%% Xinstall_docdir = %%DOCSDIR%% X END-of-ice/files/Make.rules.FreeBSD echo x - ice/files/patch-Make.rules sed 's/^X//' >ice/files/patch-Make.rules << 'END-of-ice/files/patch-Make.rules' X--- config/Make.rules.orig Wed May 26 01:09:19 2004 X+++ config/Make.rules Sat May 29 16:02:37 2004 X@@ -12,7 +12,7 @@ X # if it does not exist. X # X X-prefix = /opt/Ice-$(VERSION) X+prefix = $(PREFIX)/Ice-$(VERSION) X X # X # Define OPTIMIZE as yes if you want to build with X@@ -91,7 +91,7 @@ X # directory. X # X X-#DB_HOME ?= /opt/db X+DB_HOME ?= $(LOCALBASE) X X # X # If OpenSSL is not installed in a standard location where the X@@ -114,7 +114,7 @@ X # installation directory. X # X X-#EXPAT_HOME ?= /opt/expat X+EXPAT_HOME ?= $(LOCALBASE) X X X # X@@ -152,8 +152,8 @@ X install_schemadir = $(prefix)/schema X install_docdir = $(prefix)/doc X X-INSTALL = cp -fp X-INSTALL_PROGRAM = ${INSTALL} X+INSTALL = %%INSTALL_DATA%% X+INSTALL_PROGRAM = %%INSTALL_PROGRAM%% X INSTALL_LIBRARY = ${INSTALL} X INSTALL_DATA = ${INSTALL} X X@@ -203,8 +203,8 @@ X endif X X ifneq ($(DB_HOME),) X- DB_FLAGS = -I$(DB_HOME)/include X- DB_LIBS = -L$(DB_HOME)/$(libsubdir) -ldb_cxx X+ DB_FLAGS = -I$(DB_HOME)/include/db42 X+ DB_LIBS = -L$(DB_HOME)/$(libsubdir) -ldb_cxx-4.2 X else X DB_FLAGS = X DB_LIBS = -ldb_cxx END-of-ice/files/patch-Make.rules echo x - ice/files/patch-test::IceUtil::thread::MonitorMutexTest.cpp sed 's/^X//' >ice/files/patch-test::IceUtil::thread::MonitorMutexTest.cpp << 'END-of-ice/files/patch-test::IceUtil::thread::MonitorMutexTest.cpp' X--- test/IceUtil/thread/MonitorMutexTest.cpp.orig Sat May 29 15:16:23 2004 X+++ test/IceUtil/thread/MonitorMutexTest.cpp Sat May 29 15:21:56 2004 X@@ -108,8 +108,23 @@ X { X Monitor::Lock lock(monitor); X X+#ifdef __FreeBSD__ X+ try X+ { X+ Monitor::TryLock tlock(monitor); X+ test(!tlock.acquired()); X+ } X+ catch(const IceUtil::ThreadSyscallException& ex) X+ { X+ // X+ // pthread_mutex_trylock returns EDEADLK in FreeBSD's new threading implementation. X+ // X+ test(ex.error() == EDEADLK); X+ } X+#else X Monitor::TryLock tlock(monitor); X test(!tlock.acquired()); X+#endif X X // TEST: Start thread, try to acquire the mutex. X t = new MonitorMutexTestThread(monitor); END-of-ice/files/patch-test::IceUtil::thread::MonitorMutexTest.cpp echo x - ice/files/patch-Makefile sed 's/^X//' >ice/files/patch-Makefile << 'END-of-ice/files/patch-Makefile' X--- Makefile.orig Fri May 21 16:33:04 2004 X+++ Makefile Thu Jul 22 19:46:03 2004 X@@ -49,12 +49,14 @@ X chmod a+rx $(install_slicedir) ; \ X fi X X+ifndef NOPORTDOCS X @if test ! -d $(install_docdir) ; \ X then \ X echo "Creating $(install_docdir)..." ; \ X mkdir $(install_docdir) ; \ X chmod a+rx $(install_docdir) ; \ X fi X+endif X X $(EVERYTHING):: X @for subdir in $(SUBDIRS); \ X@@ -67,9 +69,11 @@ X @( cd doc && $(MAKE) ) || exit 1 X X install:: X+ifndef NOPORTDOCS X @( cd doc && $(MAKE) install ) || exit 1 X- $(INSTALL) ICE_LICENSE $(prefix) X- $(INSTALL) LICENSE $(prefix) X+ $(INSTALL) ICE_LICENSE $(install_docdir) X+ $(INSTALL) LICENSE $(install_docdir) X+endif X X clean:: X @( cd doc && $(MAKE) clean ) || exit 1 END-of-ice/files/patch-Makefile echo x - ice/files/patch-src::icecpp::config.h sed 's/^X//' >ice/files/patch-src::icecpp::config.h << 'END-of-ice/files/patch-src::icecpp::config.h' X--- src/icecpp/config.h.orig Tue Jun 8 04:22:41 2004 X+++ src/icecpp/config.h Tue Jul 27 16:02:14 2004 X@@ -56,7 +56,7 @@ X #define LONG_TYPE_SIZE 4 X #if defined(_WIN32) X # define WCHAR_TYPE_SIZE 2 X-#elif (defined(__linux) || defined(__FreeBSD__)) && (defined(__i386) || defined(__x86_64) || defined(__sparc)) \ X+#elif (defined(__linux) || defined(__FreeBSD__)) && (defined(__i386) || defined(__x86_64) || defined(__sparc) || defined(__alpha__)) \ X || defined (__sun) || defined(__hpux) || defined(__APPLE__) || defined(_AIX) X # define WCHAR_TYPE_SIZE 4 X #else END-of-ice/files/patch-src::icecpp::config.h echo x - ice/files/patch-include::IceUtil::Config.h sed 's/^X//' >ice/files/patch-include::IceUtil::Config.h << 'END-of-ice/files/patch-include::IceUtil::Config.h' X--- include/IceUtil/Config.h.orig Thu Jul 22 01:21:08 2004 X+++ include/IceUtil/Config.h Tue Jul 27 16:16:48 2004 X@@ -16,7 +16,7 @@ X // Most CPUs support only one endianness, with the notable exceptions X // of Itanium (IA64) and MIPS. X // X-#if defined(__i386) || defined(_M_IX86) || defined (__x86_64) X+#if defined(__i386) || defined(_M_IX86) || defined (__x86_64) || defined(__alpha__) X # define ICE_LITTLE_ENDIAN X #elif defined(__sparc) || defined(__sparc__) || defined(__hppa) || defined(__ppc__) || defined(_ARCH_COM) X # define ICE_BIG_ENDIAN END-of-ice/files/patch-include::IceUtil::Config.h echo x - ice/pkg-descr sed 's/^X//' >ice/pkg-descr << 'END-of-ice/pkg-descr' XThe Internet Communications Engine (Ice) is a modern alternative to object Xmiddleware such as CORBA(TM) or COM/DCOM/COM+. Ice is easy to learn, yet Xprovides a powerful network infrastructure for demanding technical applications. XIce shines where technologies such as SOAP or XML-RPC are too slow, or do not Xprovide sufficient scalability or security. END-of-ice/pkg-descr echo x - ice/distinfo sed 's/^X//' >ice/distinfo << 'END-of-ice/distinfo' XMD5 (Ice-2.1.0.tar.gz) = 4fd758cc2af02e4ce270c1eb9faa02d6 XSIZE (Ice-2.1.0.tar.gz) = 1695716 END-of-ice/distinfo echo x - ice/Makefile sed 's/^X//' >ice/Makefile << 'END-of-ice/Makefile' X# New ports collection makefile for: ice X# Date created: 2004-02-02 X# Whom: Stefan Ehmann X# X# $FreeBSD$ X# X XPORTNAME= Ice XPORTVERSION= 2.1.0 XCATEGORIES= devel XMASTER_SITES= http://www.zeroc.com/download/Ice/2.1/ X XMAINTAINER= shoesoft@gmx.net XCOMMENT= A modern alternative to object middleware such as CORBA/COM/DCOM/COM+ X XLIB_DEPENDS= db-4.2.2:${PORTSDIR}/databases/db42 \ X expat.5:${PORTSDIR}/textproc/expat2 X XUSE_GMAKE= yes XUSE_REINPLACE= yes XINSTALLS_SHLIB= yes X XCFLAGS+= -ftemplate-depth-128 -fPIC -DPIC -Wall -D_REENTRANT ${PTHREAD_CFLAGS} X.if defined(DEBUG) XCFLAGS+= -g X.else XCFLAGS+= -DNDEBUG X.endif X X.include X.if ${OSVERSION} < 500028 XBROKEN= does not compile on systems prior to 5.x X.endif X X.if ${ARCH} != i386 XMAKE_ENV= LP64=yes X.endif X Xpost-patch: X ${SED} 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g; \ X s|%%PREFIX%%|${PREFIX}|g; \ X s|%%DATADIR%%|${DATADIR}|g; \ X s|%%DOCSDIR%%|${DOCSDIR}|g;' \ X ${FILESDIR}/Make.rules.FreeBSD > ${WRKSRC}/config/Make.rules.FreeBSD X ${REINPLACE_CMD} 's|%%INSTALL_PROGRAM%%|${INSTALL_PROGRAM}|g; \ X s|%%INSTALL_DATA%%|${INSTALL_DATA}|g' ${WRKSRC}/config/Make.rules X ${FIND} ${WRKSRC} -name Makefile -exec ${REINPLACE_CMD} 's|-lIceSSL|-lIceSSL -lIceXML|' {} \; X X.include END-of-ice/Makefile echo x - ice/pkg-plist sed 's/^X//' >ice/pkg-plist << 'END-of-ice/pkg-plist' Xbin/dumpdb Xbin/glacier2router Xbin/icebox Xbin/iceboxadmin Xbin/icecpp Xbin/icepackadmin Xbin/icepacknode Xbin/icepackregistry Xbin/icepatch2calc Xbin/icepatch2client Xbin/icepatch2server Xbin/icestormadmin Xbin/slice2cpp Xbin/slice2cs Xbin/slice2docbook Xbin/slice2freeze Xbin/slice2freezej Xbin/slice2java Xbin/slice2py Xbin/slice2vb Xbin/transformdb Xinclude/Freeze/Catalog.h Xinclude/Freeze/CatalogData.h Xinclude/Freeze/Connection.h Xinclude/Freeze/ConnectionF.h Xinclude/Freeze/DB.h Xinclude/Freeze/Evictor.h Xinclude/Freeze/EvictorF.h Xinclude/Freeze/EvictorStorage.h Xinclude/Freeze/Exception.h Xinclude/Freeze/Freeze.h Xinclude/Freeze/Index.h Xinclude/Freeze/Initialize.h Xinclude/Freeze/Map.h Xinclude/Freeze/Transaction.h Xinclude/Freeze/TransactionHolder.h Xinclude/Glacier2/Glacier2.h Xinclude/Glacier2/PermissionsVerifier.h Xinclude/Glacier2/PermissionsVerifierF.h Xinclude/Glacier2/Router.h Xinclude/Glacier2/RouterF.h Xinclude/Glacier2/Session.h Xinclude/Glacier2/SessionF.h Xinclude/Ice/Application.h Xinclude/Ice/BasicStream.h Xinclude/Ice/Buffer.h Xinclude/Ice/BuiltinSequences.h Xinclude/Ice/Communicator.h Xinclude/Ice/CommunicatorF.h Xinclude/Ice/Config.h Xinclude/Ice/Connection.h Xinclude/Ice/ConnectionF.h Xinclude/Ice/ConnectionFactoryF.h Xinclude/Ice/ConnectionIF.h Xinclude/Ice/ConnectionMonitorF.h Xinclude/Ice/Current.h Xinclude/Ice/Direct.h Xinclude/Ice/DynamicLibrary.h Xinclude/Ice/DynamicLibraryF.h Xinclude/Ice/EndpointF.h Xinclude/Ice/EndpointFactory.h Xinclude/Ice/EndpointFactoryF.h Xinclude/Ice/Exception.h Xinclude/Ice/FacetMap.h Xinclude/Ice/FactoryTable.h Xinclude/Ice/FactoryTableDef.h Xinclude/Ice/Functional.h Xinclude/Ice/Handle.h Xinclude/Ice/Ice.h Xinclude/Ice/Identity.h Xinclude/Ice/IdentityUtil.h Xinclude/Ice/Incoming.h Xinclude/Ice/IncomingAsync.h Xinclude/Ice/IncomingAsyncF.h Xinclude/Ice/Initialize.h Xinclude/Ice/InstanceF.h Xinclude/Ice/LocalException.h Xinclude/Ice/LocalObject.h Xinclude/Ice/LocalObjectF.h Xinclude/Ice/Locator.h Xinclude/Ice/LocatorF.h Xinclude/Ice/Logger.h Xinclude/Ice/LoggerF.h Xinclude/Ice/LoggerUtil.h Xinclude/Ice/Object.h Xinclude/Ice/ObjectAdapter.h Xinclude/Ice/ObjectAdapterF.h Xinclude/Ice/ObjectAdapterFactoryF.h Xinclude/Ice/ObjectF.h Xinclude/Ice/ObjectFactory.h Xinclude/Ice/ObjectFactoryF.h Xinclude/Ice/Outgoing.h Xinclude/Ice/OutgoingAsync.h Xinclude/Ice/OutgoingAsyncF.h Xinclude/Ice/Plugin.h Xinclude/Ice/PluginF.h Xinclude/Ice/Process.h Xinclude/Ice/ProcessF.h Xinclude/Ice/Properties.h Xinclude/Ice/PropertiesF.h Xinclude/Ice/ProtocolPluginFacade.h Xinclude/Ice/ProtocolPluginFacadeF.h Xinclude/Ice/Proxy.h Xinclude/Ice/ProxyF.h Xinclude/Ice/ProxyFactoryF.h Xinclude/Ice/ProxyHandle.h Xinclude/Ice/ReferenceF.h Xinclude/Ice/Router.h Xinclude/Ice/RouterF.h Xinclude/Ice/RoutingTable.h Xinclude/Ice/RoutingTableF.h Xinclude/Ice/ServantLocator.h Xinclude/Ice/ServantLocatorF.h Xinclude/Ice/ServantManagerF.h Xinclude/Ice/Service.h Xinclude/Ice/SliceChecksumDict.h Xinclude/Ice/SliceChecksums.h Xinclude/Ice/Stats.h Xinclude/Ice/StatsF.h Xinclude/Ice/Stream.h Xinclude/Ice/StreamF.h Xinclude/Ice/UserExceptionFactory.h Xinclude/Ice/UserExceptionFactoryF.h Xinclude/IceBox/IceBox.h Xinclude/IcePack/Admin.h Xinclude/IcePack/Exception.h Xinclude/IcePack/Query.h Xinclude/IcePatch2/ClientUtil.h Xinclude/IcePatch2/FileInfo.h Xinclude/IcePatch2/FileServer.h Xinclude/IcePatch2/Util.h Xinclude/IceSSL/CertificateVerifier.h Xinclude/IceSSL/CertificateVerifierF.h Xinclude/IceSSL/CertificateVerifierOpenSSL.h Xinclude/IceSSL/Config.h Xinclude/IceSSL/Exception.h Xinclude/IceSSL/Plugin.h Xinclude/IceSSL/PluginF.h Xinclude/IceSSL/RSACertificateGen.h Xinclude/IceSSL/RSACertificateGenF.h Xinclude/IceSSL/RSAKeyPair.h Xinclude/IceSSL/RSAKeyPairF.h Xinclude/IceSSL/RSAPrivateKey.h Xinclude/IceSSL/RSAPrivateKeyF.h Xinclude/IceSSL/RSAPublicKey.h Xinclude/IceSSL/RSAPublicKeyF.h Xinclude/IceStorm/IceStorm.h Xinclude/IceUtil/AbstractMutex.h Xinclude/IceUtil/Algorithm.h Xinclude/IceUtil/Base64.h Xinclude/IceUtil/Cache.h Xinclude/IceUtil/Cond.h Xinclude/IceUtil/Config.h Xinclude/IceUtil/CountDownLatch.h Xinclude/IceUtil/CtrlCHandler.h Xinclude/IceUtil/Exception.h Xinclude/IceUtil/Functional.h Xinclude/IceUtil/GC.h Xinclude/IceUtil/GCRecMutex.h Xinclude/IceUtil/GCShared.h Xinclude/IceUtil/Handle.h Xinclude/IceUtil/IceUtil.h Xinclude/IceUtil/InputUtil.h Xinclude/IceUtil/Iterator.h Xinclude/IceUtil/Lock.h Xinclude/IceUtil/MD5.h Xinclude/IceUtil/Monitor.h Xinclude/IceUtil/Mutex.h Xinclude/IceUtil/Options.h Xinclude/IceUtil/OutputUtil.h Xinclude/IceUtil/RWRecMutex.h Xinclude/IceUtil/RecMutex.h Xinclude/IceUtil/Shared.h Xinclude/IceUtil/StaticMutex.h Xinclude/IceUtil/StringUtil.h Xinclude/IceUtil/Thread.h Xinclude/IceUtil/ThreadException.h Xinclude/IceUtil/Time.h Xinclude/IceUtil/UUID.h Xinclude/IceUtil/Unicode.h Xinclude/IceXML/Parser.h Xinclude/Slice/CPlusPlusUtil.h Xinclude/Slice/Checksum.h Xinclude/Slice/CsUtil.h Xinclude/Slice/DotNetNames.h Xinclude/Slice/JavaUtil.h Xinclude/Slice/Parser.h Xinclude/Slice/Preprocessor.h Xinclude/Slice/PythonUtil.h Xinclude/Slice/VbUtil.h Xlib/libFreeze.so Xlib/libFreeze.so.2.1.0 Xlib/libFreeze.so.21 Xlib/libGlacier2.so Xlib/libGlacier2.so.2.1.0 Xlib/libGlacier2.so.21 Xlib/libIce.so Xlib/libIce.so.2.1.0 Xlib/libIce.so.21 Xlib/libIceBox.so Xlib/libIceBox.so.2.1.0 Xlib/libIceBox.so.21 Xlib/libIcePack.so Xlib/libIcePack.so.2.1.0 Xlib/libIcePack.so.21 Xlib/libIcePatch2.so Xlib/libIcePatch2.so.2.1.0 Xlib/libIcePatch2.so.21 Xlib/libIceSSL.so Xlib/libIceSSL.so.2.1.0 Xlib/libIceSSL.so.21 Xlib/libIceStorm.so Xlib/libIceStorm.so.2.1.0 Xlib/libIceStorm.so.21 Xlib/libIceStormService.so Xlib/libIceStormService.so.2.1.0 Xlib/libIceStormService.so.21 Xlib/libIceUtil.so Xlib/libIceUtil.so.2.1.0 Xlib/libIceUtil.so.21 Xlib/libIceXML.so Xlib/libIceXML.so.2.1.0 Xlib/libIceXML.so.21 Xlib/libSlice.so Xlib/libSlice.so.2.1.0 Xlib/libSlice.so.21 Xshare/Ice/Freeze/CatalogData.ice Xshare/Ice/Freeze/Connection.ice Xshare/Ice/Freeze/ConnectionF.ice Xshare/Ice/Freeze/DB.ice Xshare/Ice/Freeze/Evictor.ice Xshare/Ice/Freeze/EvictorF.ice Xshare/Ice/Freeze/EvictorStorage.ice Xshare/Ice/Freeze/Exception.ice Xshare/Ice/Freeze/Transaction.ice Xshare/Ice/Glacier2/PermissionsVerifier.ice Xshare/Ice/Glacier2/PermissionsVerifierF.ice Xshare/Ice/Glacier2/Router.ice Xshare/Ice/Glacier2/RouterF.ice Xshare/Ice/Glacier2/Session.ice Xshare/Ice/Glacier2/SessionF.ice Xshare/Ice/Ice/BuiltinSequences.ice Xshare/Ice/Ice/Communicator.ice Xshare/Ice/Ice/CommunicatorF.ice Xshare/Ice/Ice/Connection.ice Xshare/Ice/Ice/ConnectionF.ice Xshare/Ice/Ice/Current.ice Xshare/Ice/Ice/FacetMap.ice Xshare/Ice/Ice/Identity.ice Xshare/Ice/Ice/LocalException.ice Xshare/Ice/Ice/Locator.ice Xshare/Ice/Ice/LocatorF.ice Xshare/Ice/Ice/Logger.ice Xshare/Ice/Ice/LoggerF.ice Xshare/Ice/Ice/ObjectAdapter.ice Xshare/Ice/Ice/ObjectAdapterF.ice Xshare/Ice/Ice/ObjectFactory.ice Xshare/Ice/Ice/ObjectFactoryF.ice Xshare/Ice/Ice/Plugin.ice Xshare/Ice/Ice/PluginF.ice Xshare/Ice/Ice/Process.ice Xshare/Ice/Ice/ProcessF.ice Xshare/Ice/Ice/Properties.ice Xshare/Ice/Ice/PropertiesF.ice Xshare/Ice/Ice/Router.ice Xshare/Ice/Ice/RouterF.ice Xshare/Ice/Ice/ServantLocator.ice Xshare/Ice/Ice/ServantLocatorF.ice Xshare/Ice/Ice/SliceChecksumDict.ice Xshare/Ice/Ice/Stats.ice Xshare/Ice/Ice/StatsF.ice Xshare/Ice/IceBox/IceBox.ice Xshare/Ice/IcePack/Admin.ice Xshare/Ice/IcePack/Exception.ice Xshare/Ice/IcePack/Query.ice Xshare/Ice/IcePatch2/FileInfo.ice Xshare/Ice/IcePatch2/FileServer.ice Xshare/Ice/IceSSL/CertificateVerifier.ice Xshare/Ice/IceSSL/CertificateVerifierF.ice Xshare/Ice/IceSSL/Exception.ice Xshare/Ice/IceSSL/Plugin.ice Xshare/Ice/IceSSL/PluginF.ice Xshare/Ice/IceStorm/IceStorm.ice X%%PORTDOCS%%%%DOCSDIR%%/ICE_LICENSE X%%PORTDOCS%%%%DOCSDIR%%/LICENSE X%%PORTDOCS%%%%DOCSDIR%%/README.html X%%PORTDOCS%%%%DOCSDIR%%/images/caution.gif X%%PORTDOCS%%%%DOCSDIR%%/images/home.gif X%%PORTDOCS%%%%DOCSDIR%%/images/important.gif X%%PORTDOCS%%%%DOCSDIR%%/images/next.gif X%%PORTDOCS%%%%DOCSDIR%%/images/note.gif X%%PORTDOCS%%%%DOCSDIR%%/images/prev.gif X%%PORTDOCS%%%%DOCSDIR%%/images/tip.gif X%%PORTDOCS%%%%DOCSDIR%%/images/toc-blank.gif X%%PORTDOCS%%%%DOCSDIR%%/images/toc-minus.gif X%%PORTDOCS%%%%DOCSDIR%%/images/toc-plus.gif X%%PORTDOCS%%%%DOCSDIR%%/images/up.gif X%%PORTDOCS%%%%DOCSDIR%%/images/warning.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/c12907.html X%%PORTDOCS%%%%DOCSDIR%%/reference/c13.html X%%PORTDOCS%%%%DOCSDIR%%/reference/c15705.html X%%PORTDOCS%%%%DOCSDIR%%/reference/index.html X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/caution.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/home.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/important.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/next.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/note.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/prev.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/tip.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/toc-blank.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/toc-minus.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/toc-plus.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/up.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/warning.gif X%%PORTDOCS%%%%DOCSDIR%%/reference/x1002.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10125.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1014.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10173.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1022.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1030.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10309.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10317.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10407.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10443.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10621.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10644.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10655.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10666.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1067.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10676.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10686.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10696.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10706.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10767.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10777.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10793.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10807.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10844.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10854.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10865.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x10956.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1096.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1108.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1120.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1128.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11306.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11323.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11334.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11344.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11354.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11374.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11424.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11435.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11447.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11521.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11548.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11581.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11612.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11664.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11774.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11812.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11874.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x11889.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12030.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12054.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12112.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12136.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12160.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12410.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12434.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12564.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12661.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12688.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12713.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12771.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12897.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x12949.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13057.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13128.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13241.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13271.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13344.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13439.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13698.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x13989.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x14141.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x14730.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x14992.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x15364.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x15604.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x15809.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1925.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1942.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1970.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x1983.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2002.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2014.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2208.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2220.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2232.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2244.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2256.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2380.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2421.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2433.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2445.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2469.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2479.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2498.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2661.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2685.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2710.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2722.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2734.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2758.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2866.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x2972.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x3099.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x3152.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x3164.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x3176.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x3200.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x3244.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x3281.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4368.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4404.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4434.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4521.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4531.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4539.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4612.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4622.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4663.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4687.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4776.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x4840.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5208.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5265.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5289.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5301.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5369.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5449.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5642.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5650.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5672.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5756.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5792.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5813.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5841.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5877.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5894.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5906.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5918.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5930.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5945.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x5957.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6024.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6091.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6101.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6246.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6296.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6389.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6435.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x6445.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7286.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7294.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7376.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7384.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7392.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7402.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7444.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7516.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7577.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7624.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7632.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7671.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7695.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7777.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x78.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x7829.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x8146.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x8231.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x8239.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9470.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9534.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9542.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9550.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9641.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9686.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9745.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9769.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9814.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9862.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9870.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9878.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9939.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9947.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9955.html X%%PORTDOCS%%%%DOCSDIR%%/reference/x9999.html X%%PORTDOCS%%@dirrm %%DOCSDIR%%/reference/stylesheet-images X%%PORTDOCS%%@dirrm %%DOCSDIR%%/reference X%%PORTDOCS%%@dirrm %%DOCSDIR%%/images X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrm share/Ice/IceStorm X@dirrm share/Ice/IceSSL X@dirrm share/Ice/IcePatch2 X@dirrm share/Ice/IcePack X@dirrm share/Ice/IceBox X@dirrm share/Ice/Ice X@dirrm share/Ice/Glacier2 X@dirrm share/Ice/Freeze X@dirrm share/Ice X@dirrm include/Slice X@dirrm include/IceXML X@dirrm include/IceUtil X@dirrm include/IceStorm X@dirrm include/IceSSL X@dirrm include/IcePatch2 X@dirrm include/IcePack X@dirrm include/IceBox X@dirrm include/Ice X@dirrm include/Glacier2 X@dirrm include/Freeze END-of-ice/pkg-plist exit