diff -ruN ice.bak/Makefile ice/Makefile --- ice.bak/Makefile Thu Jul 13 10:03:53 2006 +++ ice/Makefile Thu Jul 20 00:27:40 2006 @@ -6,10 +6,9 @@ # PORTNAME= Ice -PORTVERSION= 3.0.0 -PORTREVISION= 1 +PORTVERSION= 3.1.0 CATEGORIES= devel -MASTER_SITES= http://www.zeroc.com/download/Ice/3.0/ +MASTER_SITES= http://www.zeroc.com/download/Ice/3.1/ MAINTAINER= shoesoft@gmx.net COMMENT= A modern alternative to object middleware such as CORBA/COM/DCOM/COM+ @@ -44,10 +43,13 @@ ${SED} 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g; \ s|%%PREFIX%%|${PREFIX}|g; \ s|%%DATADIR%%|${DATADIR}|g; \ - s|%%DOCSDIR%%|${DOCSDIR}|g;' \ + s|%%DOCSDIR%%|${DOCSDIR}|g; \ + s|%%INSTALL_PROGRAM%%|${INSTALL_PROGRAM}|g; \ + s|%%INSTALL_DATA%%|${INSTALL_DATA}|g' \ ${FILESDIR}/Make.rules.FreeBSD > ${WRKSRC}/config/Make.rules.FreeBSD - ${REINPLACE_CMD} 's|%%INSTALL_PROGRAM%%|${INSTALL_PROGRAM}|g; \ - s|%%INSTALL_DATA%%|${INSTALL_DATA}|g' ${WRKSRC}/config/Make.rules + $(REINPLACE_CMD) 's|prefix|install_slicedir|g' ${WRKSRC}/config/Makefile + $(REINPLACE_CMD) 's|prefix|install_slicedir|g; \ + s|INSTALL_PROGRAM|INSTALL_DATA|g' ${WRKSRC}/config/ca/Makefile ${FIND} ${WRKSRC} -name Makefile -exec ${REINPLACE_CMD} 's|-lIceSSL|-lIceSSL -lIceXML|' {} \; .include diff -ruN ice.bak/distinfo ice/distinfo --- ice.bak/distinfo Thu Jul 13 10:03:53 2006 +++ ice/distinfo Thu Jul 13 10:05:37 2006 @@ -1,3 +1,3 @@ -MD5 (Ice-3.0.0.tar.gz) = e8401842669d08baf152ea8edb595a11 -SHA256 (Ice-3.0.0.tar.gz) = 8362d732d22fe03c63f9a3e8b63abadec850ce34e99904ea75469a5789b6b190 -SIZE (Ice-3.0.0.tar.gz) = 1833278 +MD5 (Ice-3.1.0.tar.gz) = f37f7c6c1de570a5782f61430557ef4e +SHA256 (Ice-3.1.0.tar.gz) = c2de63f99d881ce0229f5cc10e0936f2bb4e7257a74220f5eec74712425f7ac4 +SIZE (Ice-3.1.0.tar.gz) = 2110940 diff -ruN ice.bak/files/Make.rules.FreeBSD ice/files/Make.rules.FreeBSD --- ice.bak/files/Make.rules.FreeBSD Thu Jul 13 10:03:53 2006 +++ ice/files/Make.rules.FreeBSD Sat Jul 15 17:56:18 2006 @@ -13,3 +13,8 @@ prefix = %%PREFIX%% install_slicedir = %%DATADIR%% install_docdir = %%DOCSDIR%% +DB_HOME = $(LOCALBASE) +DB_VERSION = db42 +EXPAT_HOME = $(LOCALBASE) +INSTALL = %%INSTALL_DATA%% +INSTALL_PROGRAM = %%INSTALL_PROGRAM%% diff -ruN ice.bak/files/patch-Make.rules ice/files/patch-Make.rules --- ice.bak/files/patch-Make.rules Thu Jul 13 10:03:53 2006 +++ ice/files/patch-Make.rules Sat Jul 15 10:06:57 2006 @@ -1,51 +1,15 @@ ---- config/Make.rules.orig Wed May 26 01:09:19 2004 -+++ config/Make.rules Sat May 29 16:02:37 2004 -@@ -12,7 +12,7 @@ - # if it does not exist. - # +--- config/Make.rules.orig Sat Jul 15 10:05:05 2006 ++++ config/Make.rules Sat Jul 15 10:05:50 2006 +@@ -166,9 +166,9 @@ + BZIP2_LIBS = $(if $(BZIP2_HOME),-L$(BZIP2_HOME)/$(libsubdir)) -lbz2 + BZIP2_RPATH_LINK = $(if $(BZIP2_HOME),$(call rpathlink,$(BZIP2_HOME)/$(libsubdir))) + +-DB_FLAGS = $(if $(DB_HOME),-I$(DB_HOME)/include) +-DB_LIBS = $(if $(DB_HOME),-L$(DB_HOME)/$(libsubdir)) -ldb_cxx +-DB_RPATH_LINK = $(if $(DB_HOME),$(call rpathlink,$(DB_HOME)/$(libsubdir))) ++DB_FLAGS = $(if $(DB_HOME),-I$(DB_HOME)/include/$(DB_VERSION)) ++DB_LIBS = $(if $(DB_HOME),-L$(DB_HOME)/$(libsubdir)/$(DB_VERSION)) -ldb_cxx ++DB_RPATH_LINK = $(if $(DB_HOME),$(call rpathlink,$(DB_HOME)/$(libsubdir)/$(DB_VERSION))) --prefix = /opt/Ice-$(VERSION) -+prefix = $(PREFIX)/Ice-$(VERSION) - - # - # Define OPTIMIZE as yes if you want to build with -@@ -91,7 +91,7 @@ - # directory. - # - --#DB_HOME ?= /opt/db -+DB_HOME ?= $(LOCALBASE) - - # - # If OpenSSL is not installed in a standard location where the -@@ -114,7 +114,7 @@ - # installation directory. - # - --#EXPAT_HOME ?= /opt/expat -+EXPAT_HOME ?= $(LOCALBASE) - - - # -@@ -152,8 +152,8 @@ - install_schemadir = $(prefix)/schema - install_docdir = $(prefix)/doc - --INSTALL = cp -fp --INSTALL_PROGRAM = ${INSTALL} -+INSTALL = %%INSTALL_DATA%% -+INSTALL_PROGRAM = %%INSTALL_PROGRAM%% - INSTALL_LIBRARY = ${INSTALL} - INSTALL_DATA = ${INSTALL} - -@@ -203,8 +203,8 @@ - endif - - ifneq ($(DB_HOME),) -- DB_FLAGS = -I$(DB_HOME)/include -- DB_LIBS = -L$(DB_HOME)/$(libsubdir) -ldb_cxx -+ DB_FLAGS = -I$(DB_HOME)/include/db42 -+ DB_LIBS = -L$(DB_HOME)/$(libsubdir) -ldb_cxx-4.2 - else - DB_FLAGS = - DB_LIBS = -ldb_cxx + EXPAT_FLAGS = $(if $(EXPAT_HOME),-I$(EXPAT_HOME)/include) + EXPAT_LIBS = $(if $(EXPAT_HOME),-L$(EXPAT_HOME)/$(libsubdir)) -lexpat diff -ruN ice.bak/files/patch-src::icecpp::config.h ice/files/patch-src::icecpp::config.h --- ice.bak/files/patch-src::icecpp::config.h Thu Jul 13 10:03:53 2006 +++ ice/files/patch-src::icecpp::config.h Thu Jan 1 01:00:00 1970 @@ -1,12 +0,0 @@ ---- src/icecpp/config.h.orig Thu Sep 22 18:01:13 2005 -+++ src/icecpp/config.h Thu Nov 17 10:50:07 2005 -@@ -72,7 +72,8 @@ - #if defined(_WIN32) - # define WCHAR_TYPE_SIZE 2 - #elif (defined(__linux) || defined(__FreeBSD__)) && \ -- (defined(__i386) || defined(__x86_64) || defined(__sparc)) || \ -+ (defined(__i386) || defined(__x86_64) || defined(__sparc) || \ -+ defined(__alpha__) || defined(__powerpc__)) || \ - defined (__sun) || defined(__hpux) || defined(__APPLE__) || \ - defined(_AIX) || defined(__osf1__) - # define WCHAR_TYPE_SIZE 4 diff -ruN ice.bak/pkg-plist ice/pkg-plist --- ice.bak/pkg-plist Thu Jul 13 10:03:53 2006 +++ ice/pkg-plist Thu Jul 20 00:29:31 2006 @@ -39,6 +39,7 @@ include/Glacier2/PermissionsVerifierF.h include/Glacier2/Router.h include/Glacier2/RouterF.h +include/Glacier2/SSLInfo.h include/Glacier2/Session.h include/Glacier2/SessionF.h include/Ice/Application.h @@ -58,17 +59,17 @@ include/Ice/DynamicLibrary.h include/Ice/DynamicLibraryF.h include/Ice/Endpoint.h -include/Ice/EndpointIF.h include/Ice/EndpointFactory.h include/Ice/EndpointFactoryF.h +include/Ice/EndpointIF.h include/Ice/Exception.h include/Ice/FacetMap.h include/Ice/FactoryTable.h include/Ice/FactoryTableDef.h include/Ice/Functional.h include/Ice/GC.h -include/Ice/GCShared.h include/Ice/GCRecMutex.h +include/Ice/GCShared.h include/Ice/Handle.h include/Ice/Ice.h include/Ice/Identity.h @@ -102,6 +103,7 @@ include/Ice/ProcessF.h include/Ice/Properties.h include/Ice/PropertiesF.h +include/Ice/Protocol.h include/Ice/ProtocolPluginFacade.h include/Ice/ProtocolPluginFacadeF.h include/Ice/Proxy.h @@ -111,8 +113,6 @@ include/Ice/ReferenceF.h include/Ice/Router.h include/Ice/RouterF.h -include/Ice/RoutingTable.h -include/Ice/RoutingTableF.h include/Ice/ServantLocator.h include/Ice/ServantLocatorF.h include/Ice/ServantManagerF.h @@ -123,6 +123,7 @@ include/Ice/StatsF.h include/Ice/Stream.h include/Ice/StreamF.h +include/Ice/StringConverter.h include/Ice/UndefSysMacros.h include/Ice/UserExceptionFactory.h include/Ice/UserExceptionFactoryF.h @@ -130,38 +131,30 @@ include/IceGrid/Admin.h include/IceGrid/Descriptor.h include/IceGrid/Exception.h +include/IceGrid/FileParser.h include/IceGrid/Observer.h include/IceGrid/Perf.h include/IceGrid/Query.h +include/IceGrid/Registry.h +include/IceGrid/Session.h +include/IceGrid/UserAccountMapper.h include/IcePatch2/ClientUtil.h include/IcePatch2/FileInfo.h include/IcePatch2/FileServer.h include/IcePatch2/Util.h -include/IceSSL/CertificateVerifier.h -include/IceSSL/CertificateVerifierF.h -include/IceSSL/CertificateVerifierOpenSSL.h -include/IceSSL/Config.h -include/IceSSL/Exception.h include/IceSSL/Plugin.h -include/IceSSL/PluginF.h -include/IceSSL/RSACertificateGen.h -include/IceSSL/RSACertificateGenF.h -include/IceSSL/RSAKeyPair.h -include/IceSSL/RSAKeyPairF.h -include/IceSSL/RSAPrivateKey.h -include/IceSSL/RSAPrivateKeyF.h -include/IceSSL/RSAPublicKey.h -include/IceSSL/RSAPublicKeyF.h include/IceStorm/IceStorm.h include/IceStorm/Service.h include/IceUtil/AbstractMutex.h include/IceUtil/Algorithm.h +include/IceUtil/AutoArray.h include/IceUtil/Base64.h include/IceUtil/Cache.h include/IceUtil/Cond.h include/IceUtil/Config.h include/IceUtil/CountDownLatch.h include/IceUtil/CtrlCHandler.h +include/IceUtil/DisableWarnings.h include/IceUtil/Exception.h include/IceUtil/Functional.h include/IceUtil/Handle.h @@ -175,6 +168,7 @@ include/IceUtil/Options.h include/IceUtil/OutputUtil.h include/IceUtil/RWRecMutex.h +include/IceUtil/Random.h include/IceUtil/RecMutex.h include/IceUtil/Shared.h include/IceUtil/StaticMutex.h @@ -195,41 +189,41 @@ include/Slice/PythonUtil.h include/Slice/VbUtil.h lib/libFreeze.so -lib/libFreeze.so.3.0.0 -lib/libFreeze.so.30 +lib/libFreeze.so.3.1.0 +lib/libFreeze.so.31 lib/libGlacier2.so -lib/libGlacier2.so.3.0.0 -lib/libGlacier2.so.30 +lib/libGlacier2.so.3.1.0 +lib/libGlacier2.so.31 lib/libIce.so -lib/libIce.so.3.0.0 -lib/libIce.so.30 +lib/libIce.so.3.1.0 +lib/libIce.so.31 lib/libIceBox.so -lib/libIceBox.so.3.0.0 -lib/libIceBox.so.30 +lib/libIceBox.so.3.1.0 +lib/libIceBox.so.31 lib/libIceGrid.so -lib/libIceGrid.so.3.0.0 -lib/libIceGrid.so.30 +lib/libIceGrid.so.3.1.0 +lib/libIceGrid.so.31 lib/libIcePatch2.so -lib/libIcePatch2.so.3.0.0 -lib/libIcePatch2.so.30 +lib/libIcePatch2.so.3.1.0 +lib/libIcePatch2.so.31 lib/libIceSSL.so -lib/libIceSSL.so.3.0.0 -lib/libIceSSL.so.30 +lib/libIceSSL.so.3.1.0 +lib/libIceSSL.so.31 lib/libIceStorm.so -lib/libIceStorm.so.3.0.0 -lib/libIceStorm.so.30 +lib/libIceStorm.so.3.1.0 +lib/libIceStorm.so.31 lib/libIceStormService.so -lib/libIceStormService.so.3.0.0 -lib/libIceStormService.so.30 +lib/libIceStormService.so.3.1.0 +lib/libIceStormService.so.31 lib/libIceUtil.so -lib/libIceUtil.so.3.0.0 -lib/libIceUtil.so.30 +lib/libIceUtil.so.3.1.0 +lib/libIceUtil.so.31 lib/libIceXML.so -lib/libIceXML.so.3.0.0 -lib/libIceXML.so.30 +lib/libIceXML.so.3.1.0 +lib/libIceXML.so.31 lib/libSlice.so -lib/libSlice.so.3.0.0 -lib/libSlice.so.30 +lib/libSlice.so.3.1.0 +lib/libSlice.so.31 share/Ice/Freeze/CatalogData.ice share/Ice/Freeze/Connection.ice share/Ice/Freeze/ConnectionF.ice @@ -243,6 +237,7 @@ share/Ice/Glacier2/PermissionsVerifierF.ice share/Ice/Glacier2/Router.ice share/Ice/Glacier2/RouterF.ice +share/Ice/Glacier2/SSLInfo.ice share/Ice/Glacier2/Session.ice share/Ice/Glacier2/SessionF.ice share/Ice/Ice/BuiltinSequences.ice @@ -280,19 +275,34 @@ share/Ice/IceGrid/Admin.ice share/Ice/IceGrid/Descriptor.ice share/Ice/IceGrid/Exception.ice +share/Ice/IceGrid/FileParser.ice share/Ice/IceGrid/Observer.ice share/Ice/IceGrid/Query.ice +share/Ice/IceGrid/Registry.ice +share/Ice/IceGrid/Session.ice +share/Ice/IceGrid/UserAccountMapper.ice share/Ice/IcePatch2/FileInfo.ice share/Ice/IcePatch2/FileServer.ice -share/Ice/IceSSL/CertificateVerifier.ice -share/Ice/IceSSL/CertificateVerifierF.ice -share/Ice/IceSSL/Exception.ice -share/Ice/IceSSL/Plugin.ice -share/Ice/IceSSL/PluginF.ice share/Ice/IceStorm/IceStorm.ice +share/Ice/config/Make.rules +share/Ice/config/Make.rules.FreeBSD +share/Ice/config/ca/ImportKey.class +share/Ice/config/ca/README +share/Ice/config/ca/cautil.py +share/Ice/config/ca/import.py +share/Ice/config/ca/initca.py +share/Ice/config/ca/req.py +share/Ice/config/ca/sign.py +share/Ice/config/convertssl.py +share/Ice/config/templates.xml +share/Ice/config/upgradeicegrid.py %%PORTDOCS%%%%DOCSDIR%%/ICE_LICENSE %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README.html +%%PORTDOCS%%%%DOCSDIR%%/reference/c13.html +%%PORTDOCS%%%%DOCSDIR%%/reference/c17145.html +%%PORTDOCS%%%%DOCSDIR%%/reference/c20982.html +%%PORTDOCS%%%%DOCSDIR%%/reference/index.html %%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/caution.gif %%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/home.gif %%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/important.gif @@ -305,236 +315,227 @@ %%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/toc-plus.gif %%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/up.gif %%PORTDOCS%%%%DOCSDIR%%/reference/stylesheet-images/warning.gif -%%PORTDOCS%%%%DOCSDIR%%/reference/c13.html -%%PORTDOCS%%%%DOCSDIR%%/reference/c16140.html -%%PORTDOCS%%%%DOCSDIR%%/reference/index.html -%%PORTDOCS%%%%DOCSDIR%%/reference/c19289.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1057.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x10601.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1065.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1073.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x10750.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x10774.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x10979.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x10987.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11019.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11056.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1110.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11139.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11211.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11235.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11289.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11317.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11361.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1139.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11418.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11472.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1149.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11558.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1161.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11634.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1173.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11746.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11770.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1181.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11914.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x11951.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12080.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12126.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12151.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12198.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12223.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12247.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12291.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12413.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12423.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12557.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12629.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12639.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x10228.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x10252.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x10377.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x10424.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x10488.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x10512.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x10538.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1097.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1105.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1113.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1150.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1179.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1189.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1201.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1213.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12144.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1221.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12324.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12355.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12365.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12525.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12549.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12779.html %%PORTDOCS%%%%DOCSDIR%%/reference/x12803.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12877.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12935.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x12983.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13007.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13044.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13137.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13189.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13248.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13549.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13589.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13649.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13723.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13750.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13783.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13814.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13866.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x13976.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14021.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14090.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14105.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14283.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14306.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14317.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14328.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14338.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14348.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14358.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14368.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14429.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14439.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14455.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14469.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14506.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14516.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14527.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14618.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14968.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14985.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x14996.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15006.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15016.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15036.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15086.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15097.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15109.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15250.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15274.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15332.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15356.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15380.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15630.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15654.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15784.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15881.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15908.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x15933.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16004.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16130.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16182.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16290.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16371.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16563.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16601.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12835.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12872.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x12955.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13027.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13051.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13103.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13164.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13192.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13236.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13293.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13347.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13447.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13523.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13636.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13660.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13804.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13841.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x13998.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14044.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14069.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14122.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14147.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14171.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14196.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14226.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14270.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14325.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14447.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14457.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14702.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x14973.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15045.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15055.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15245.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15319.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15378.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15440.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15464.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15501.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15594.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15631.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15683.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15756.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x15992.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16052.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16106.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16114.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16255.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16279.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16337.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16361.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16385.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16635.html %%PORTDOCS%%%%DOCSDIR%%/reference/x16659.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x16766.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x17067.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x17347.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x17527.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x18209.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x18508.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x18906.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x19160.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x19393.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1982.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x1999.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2027.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2046.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2058.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2252.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2264.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2276.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2288.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2300.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2424.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2465.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2477.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2489.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2523.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2547.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2557.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2581.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16789.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16886.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16913.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x16938.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17009.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17135.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17187.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17295.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17365.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17557.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17630.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17688.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x17806.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x18107.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x18685.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x18865.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x19776.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x1994.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x20075.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2011.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2023.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2042.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2054.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x20599.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x20853.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x21093.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2248.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2260.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2272.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2284.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2296.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2433.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2474.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2486.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2498.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2532.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2556.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2599.html %%PORTDOCS%%%%DOCSDIR%%/reference/x2609.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2628.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2809.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2833.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2858.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2870.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2882.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2906.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x2914.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3022.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3191.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3318.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3371.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3383.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3395.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3419.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3463.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x3500.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4654.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4690.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4720.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4807.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4817.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4825.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4898.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4908.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4949.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x4973.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5062.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5126.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5496.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5547.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5571.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5583.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5651.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5731.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5924.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5932.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x5954.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6038.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6077.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6098.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6126.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6162.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6179.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6191.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6203.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6215.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2633.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2661.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2680.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2876.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2900.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2925.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2937.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2949.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2973.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x2981.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3089.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3258.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3382.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3422.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3434.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3446.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3470.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3511.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x3548.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4631.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4667.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4697.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4781.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4791.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4799.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4872.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4882.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4931.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x4955.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5087.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5150.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5520.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5587.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5611.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5623.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5691.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5802.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x5826.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6019.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6027.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6049.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6130.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6142.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6181.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6202.html %%PORTDOCS%%%%DOCSDIR%%/reference/x6230.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6242.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6309.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6376.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6386.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6529.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6579.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6672.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6718.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x6728.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7569.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7577.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7659.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7667.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7675.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7685.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7727.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7799.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x78.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7860.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7907.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7915.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7954.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x7978.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x8060.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x8112.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x8924.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x8948.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x9059.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x9106.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x9151.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x9175.html -%%PORTDOCS%%%%DOCSDIR%%/reference/x9201.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6266.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6283.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6295.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6307.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6319.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6334.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6346.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6413.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6480.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6490.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6633.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6683.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6776.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6822.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x6832.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x70.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7681.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7689.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7771.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7779.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7787.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7797.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7839.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7911.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x7972.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8019.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8027.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8066.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8090.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8172.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8224.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8346.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8373.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8406.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8494.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8525.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8584.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8780.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8887.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x8947.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x9017.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x9065.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x9146.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x9215.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x9230.html +%%PORTDOCS%%%%DOCSDIR%%/reference/x9318.html %%PORTDOCS%%@dirrm %%DOCSDIR%%/reference/stylesheet-images %%PORTDOCS%%@dirrm %%DOCSDIR%%/reference %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm share/Ice/IceStorm -@dirrm share/Ice/IceSSL @dirrm share/Ice/IcePatch2 @dirrm share/Ice/IceGrid @dirrm share/Ice/IceBox @dirrm share/Ice/Ice @dirrm share/Ice/Glacier2 @dirrm share/Ice/Freeze +@dirrm share/Ice/config/ca +@dirrm share/Ice/config @dirrm share/Ice @dirrm include/Slice @dirrm include/IceXML