Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Mar 2004 05:59:10 +0300
From:      Sergey Matveychuk <sem@ciam.ru>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/64136: **SPAM** [NEW PORT] devel/ice: The Internet Communications Engine is middleware library
Message-ID:  <E1B1ctC-0005Oq-52@Current.sem-home.ciam.ru>
Resent-Message-ID: <200403120310.i2C3AIPO084814@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         64136
>Category:       ports
>Synopsis:       [NEW PORT] devel/ice: The Internet Communications Engine is middleware library
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Mar 11 19:10:18 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Sergey Matveychuk
>Release:        FreeBSD 5.2.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD Current.sem-home.ciam.ru 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #5: Fri Mar 12 03:47:38 MSK 2004
>Description:
Ice, the Internet Communications Engine, is middleware for the practical
programmer. A high-performance Internet communications platform,
Ice includes a wealth of layered services and plug-ins.
Ice means simplicity, speed, and power.

Read http://www.zeroc.com/iceVsCorba.html for comparing ICE and CORBA.

WWW: http://www.zeroc.com/ice.html

*** NEED TESTING ON 64-BIT PLATFIRMS ***

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:

--- ice-1.3.0.shar begins here ---
# 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-src::IceSSL::OpenSSLPluginI.cpp
#	ice/files/patch-Makefile
#	ice/Makefile
#	ice/pkg-descr
#	ice/distinfo
#	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'
X# **********************************************************************
X#
X# Copyright (c) 2003
X# ZeroC, Inc.
X# Billerica, MA, USA
X#
X# All Rights Reserved.
X#
X# Ice is free software; you can redistribute it and/or modify it under
X# the terms of the GNU General Public License version 2 as published by
X# the Free Software Foundation.
X#
X# **********************************************************************
X
X#
X# This file is included by Make.rules when uname is Linux.
X#
X
XUSE_SPARC_ASM           = irrelevant
XMACHINE                 = $(shell uname -m)
X
X#
X# Default compiler is c++ (aka g++).
X#
Xifeq ($(CXX),)
X   CXX	                := c++
Xendif
X
Xifeq ($(CXX),g++)
X   CXX	                := c++
Xendif
X
Xifeq ($(CXX),c++)
X
X   ifeq ($(MACHINE),sparc64)
X      #
X      # We are an ultra, at least, and so have the atomic instructions
X      #
X      USE_SPARC_ASM           = yes
X      CXXARCHFLAGS            := -mcpu=ultrasparc -pipe -Wno-deprecated -DUSE_SPARC_ASM
X   endif
X
X   ifeq ($(MACHINE),sparc)
X      #
X      # We are a sun4m or sun4c
X      # On sun4m, there is a bug in some CPU/kernel/gcc configurations which
X      # prevent us from using '-mcpu=v8'
X      #
X      USE_SPARC_ASM           = no
X      CXXARCHFLAGS            := -mtune=v8 -pipe -Wno-deprecated -DICE_USE_MUTEX_SHARED
X   endif
X
X   ifeq ($(MACHINE),x86_64)
X
X      ifneq ($(LP64),yes)
X         CXXARCHFLAGS    := -m32
X      endif    
X      lp64suffix          := 64
X   endif
X
X   CXXFLAGS		= $(CXXARCHFLAGS) -ftemplate-depth-128 -fPIC -Wall -D_REENTRANT -I/usr/local/include -I/usr/local/include/db42 -L/usr/local/lib -L/usr/local/lib/db42 %%PTHREAD_CFLAGS%%
X
X   ifeq ($(OPTIMIZE),yes)
X      CXXFLAGS		:= -O2 -DNDEBUG $(CXXFLAGS)
X   else
X      CXXFLAGS		:= -g $(CXXFLAGS)
X   endif
X
X   ifeq ($(USE_SPARC_ASM),yes)
X      CFLAGS                  := -O3 -mcpu=ultrasparc -pipe -DNDEBUG -fPIC -DUSE_SPARC_ASM
X   endif
X   ifeq ($(USE_SPARC_ASM),no)
X      CFLAGS                  := -O3 -mcpu=v8 -pipe -DNDEBUG -fPIC -DICE_USE_MUTEX_SHARED
X   endif
X
X   mkshlib                 = $(CXX) -shared $(LDFLAGS) -o $(1) -Wl,-h,$(2) $(3) $(4) %%PTHREAD_LIBS%%
Xendif
X
Xifeq ($(CXX),icc)
X
X   #
X   # -no-gcc: we use __GNUC macros to work-around GCC bugs, and we don't want to 
X   # automatically enable these work arounds.
X   #
X
X   CXXFLAGS		= -fPIC -no-gcc -D_REENTRANT    
X
X   ifeq ($(OPTIMIZE),yes)
X      CXXFLAGS		:= -O2 -DNDEBUG $(CXXFLAGS)
X   else
X      CXXFLAGS		:= -g $(CXXFLAGS)
X   endif
X
X   mkshlib                 = $(CXX) -shared $(LDFLAGS) -o $(1) -Wl,-h,$(2) $(3) $(4) %%PTHREAD_LIBS%%
Xendif
X
XBASELIBS		= -lIceUtil $(STLPORT_LIBS) %%PTHREAD_LIBS%%
XLIBS			= -lIce $(BASELIBS)
X
XICEUTIL_OS_LIBS         = 
XICE_OS_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%%
END-of-ice/files/Make.rules.FreeBSD
echo x - ice/files/patch-src::IceSSL::OpenSSLPluginI.cpp
sed 's/^X//' >ice/files/patch-src::IceSSL::OpenSSLPluginI.cpp << 'END-of-ice/files/patch-src::IceSSL::OpenSSLPluginI.cpp'
X--- src/IceSSL/OpenSSLPluginI.cpp.orig	Mon Mar  8 06:28:53 2004
X+++ src/IceSSL/OpenSSLPluginI.cpp	Mon Mar  8 06:29:09 2004
X@@ -48,7 +48,7 @@
X #      error "Thread support not enabled"
X #   endif
X #else
X-#   if !defined(OPENSSL_THREADS)
X+#   if !defined(THREADS)
X #      error "Thread support not enabled"
X #   endif
X #endif
END-of-ice/files/patch-src::IceSSL::OpenSSLPluginI.cpp
echo x - ice/files/patch-Makefile
sed 's/^X//' >ice/files/patch-Makefile << 'END-of-ice/files/patch-Makefile'
X--- Makefile.orig	Fri Mar 12 05:33:31 2004
X+++ Makefile	Fri Mar 12 05:45:16 2004
X@@ -54,12 +54,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@@ -72,7 +74,9 @@
X 	@( cd doc && $(MAKE) ) || exit 1
X 
X install::
X+ifndef NOPORTDOCS
X 	@( cd doc && $(MAKE) install ) || exit 1
X+endif
X 
X clean::
X 	@( cd doc && $(MAKE) clean ) || exit 1
END-of-ice/files/patch-Makefile
echo x - ice/Makefile
sed 's/^X//' >ice/Makefile << 'END-of-ice/Makefile'
X# New ports collection makefile for:	ice
X# Date created:				8 March 2004
X# Whom:					Sergey Matveychuk <sem@ciam.ru>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	ice
XPORTVERSION=	1.3.0
XCATEGORIES=	devel
XMASTER_SITES=	http://www.zeroc.com/download/Ice/1.3/
XDISTNAME=	Ice-${PORTVERSION}
X
XMAINTAINER=	sem@ciam.ru
XCOMMENT=	The Internet Communications Engine is middleware library
X
XLIB_DEPENDS=	db-4.2.2:${PORTSDIR}/databases/db42 \
X		expat.4:${PORTSDIR}/textproc/expat2
X
XUSE_OPENSSL=	yes
XUSE_GMAKE=	yes
XMAKE_ARGS=	NOPORTDOCS=${NOPORTDOCS}
XINSTALLS_SHLIB=	yes
X
X.include <bsd.port.pre.mk>
X
X.if ${ARCH} != i386
XMAKE_ENV=	LP64
X.endif
X
X.if ${OSVERSION} < 501103
XIGNORE=	Does not build on 4.x for lack of wchar/wstring support
X.endif
X
Xpost-patch:
X	@${SED} -e "s#%%PTHREAD_CFLAGS%%#${PTHREAD_CFLAGS}#g; \
X		s#%%PTHREAD_LIBS%%#${PTHREAD_LIBS}#g; \
X		s#%%PREFIX%%#${PREFIX}#;s#%%DATADIR%%#${DATADIR}#; \
X		s#%%DOCSDIR%%#${DOCSDIR}#" \
X		${FILESDIR}/Make.rules.FreeBSD > ${WRKSRC}/config/Make.rules.FreeBSD
X
X.include <bsd.port.post.mk>
END-of-ice/Makefile
echo x - ice/pkg-descr
sed 's/^X//' >ice/pkg-descr << 'END-of-ice/pkg-descr'
XIce, the Internet Communications Engine, is middleware for the practical
Xprogrammer. A high-performance Internet communications platform,
XIce includes a wealth of layered services and plug-ins.
XIce means simplicity, speed, and power.
X
XRead http://www.zeroc.com/iceVsCorba.html for comparing ICE and CORBA.
X
XWWW: http://www.zeroc.com/ice.html
END-of-ice/pkg-descr
echo x - ice/distinfo
sed 's/^X//' >ice/distinfo << 'END-of-ice/distinfo'
XMD5 (Ice-1.3.0.tar.gz) = d97623b046a3c87f1289e78915edacbd
XSIZE (Ice-1.3.0.tar.gz) = 1527066
END-of-ice/distinfo
echo x - ice/pkg-plist
sed 's/^X//' >ice/pkg-plist << 'END-of-ice/pkg-plist'
Xbin/dumpdb
Xbin/glacierrouter
Xbin/glacierstarter
Xbin/icebox
Xbin/iceboxadmin
Xbin/icecpp
Xbin/icepackadmin
Xbin/icepacknode
Xbin/icepackregistry
Xbin/icepatchclient
Xbin/icepatchserver
Xbin/icestormadmin
Xbin/slice2cpp
Xbin/slice2docbook
Xbin/slice2freeze
Xbin/slice2freezej
Xbin/slice2java
Xbin/slice2wsdl
Xbin/transformdb
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/Glacier/Glacier.h
Xinclude/Glacier/Router.h
Xinclude/Glacier/Session.h
Xinclude/Glacier/SessionF.h
Xinclude/Glacier/SessionManager.h
Xinclude/Glacier/SessionManagerF.h
Xinclude/Glacier/Starter.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/ConnectionF.h
Xinclude/Ice/ConnectionFactoryF.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/Facet.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/Stats.h
Xinclude/Ice/StatsF.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/IcePatch/ClientUtil.h
Xinclude/IcePatch/FileDescFactory.h
Xinclude/IcePatch/IcePatch.h
Xinclude/IcePatch/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/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/Cond.h
Xinclude/IceUtil/Config.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/Monitor.h
Xinclude/IceUtil/Mutex.h
Xinclude/IceUtil/OutputUtil.h
Xinclude/IceUtil/RWRecMutex.h
Xinclude/IceUtil/RecMutex.h
Xinclude/IceUtil/Shared.h
Xinclude/IceUtil/StaticMutex.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/CsUtil.h
Xinclude/Slice/JavaUtil.h
Xinclude/Slice/Parser.h
Xinclude/Slice/Preprocessor.h
Xlib/libFreeze.so
Xlib/libFreeze.so.1.3.0
Xlib/libFreeze.so.13
Xlib/libGlacier.so
Xlib/libGlacier.so.1.3.0
Xlib/libGlacier.so.13
Xlib/libIce.so
Xlib/libIce.so.1.3.0
Xlib/libIce.so.13
Xlib/libIceBox.so
Xlib/libIceBox.so.1.3.0
Xlib/libIceBox.so.13
Xlib/libIcePack.so
Xlib/libIcePack.so.1.3.0
Xlib/libIcePack.so.13
Xlib/libIcePatch.so
Xlib/libIcePatch.so.1.3.0
Xlib/libIcePatch.so.13
Xlib/libIceSSL.so
Xlib/libIceSSL.so.1.3.0
Xlib/libIceSSL.so.13
Xlib/libIceStorm.so
Xlib/libIceStorm.so.1.3.0
Xlib/libIceStorm.so.13
Xlib/libIceStormService.so
Xlib/libIceStormService.so.1.3.0
Xlib/libIceStormService.so.13
Xlib/libIceUtil.so
Xlib/libIceUtil.so.1.3.0
Xlib/libIceUtil.so.13
Xlib/libIceXML.so
Xlib/libIceXML.so.1.3.0
Xlib/libIceXML.so.13
Xlib/libSlice.so
Xlib/libSlice.so.1.3.0
Xlib/libSlice.so.13
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%%/manual/c11010.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/c12995.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/c13.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/index.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/caution.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/home.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/important.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/next.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/note.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/prev.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/tip.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/toc-blank.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/toc-minus.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/toc-plus.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/up.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/stylesheet-images/warning.gif
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10130.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10154.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10212.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10236.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1025.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10260.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10510.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10534.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1054.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10647.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1066.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10737.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10745.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10776.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1078.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10803.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10842.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1086.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10866.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10911.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x10983.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11052.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11160.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11231.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11326.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11356.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11414.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11502.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11712.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11863.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x11954.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x12285.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x12403.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x12594.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x12793.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x13099.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1770.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1787.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1815.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1828.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1840.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1852.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1864.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1876.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x1888.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2007.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2048.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2060.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2072.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2096.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2106.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2230.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2254.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2279.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2291.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2303.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2411.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2517.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2629.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2666.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2678.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2690.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2714.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2758.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x2795.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3550.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3586.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3616.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3703.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3713.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3721.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3794.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3804.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3845.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3869.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3958.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x3992.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4360.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4414.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4438.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4450.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4519.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4599.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4792.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4800.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4822.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4906.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4942.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4963.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x4991.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5027.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5044.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5056.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5068.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5080.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5095.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5107.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5174.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5241.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5251.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5408.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5501.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5547.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5557.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x5571.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6083.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6091.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6173.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6212.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6220.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6228.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6238.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6280.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6352.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6413.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6460.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6468.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6523.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6547.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6634.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6712.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6761.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6795.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6921.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6947.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x6955.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x77.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8005.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8013.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8066.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8074.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8082.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8108.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8116.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8124.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8134.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8260.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8305.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8331.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8474.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8482.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8572.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8750.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8773.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8784.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8795.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8805.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8815.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8825.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8835.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8896.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8906.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8922.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8936.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8973.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8983.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x8994.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9085.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9435.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9452.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9463.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9473.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9483.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9503.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9553.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9564.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9576.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x960.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9650.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9674.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9684.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9708.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x972.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9760.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x980.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9816.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9854.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x988.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9902.html
X%%PORTDOCS%%%%DOCSDIR%%/manual/x9989.html
X%%DATADIR%%/Freeze/Connection.ice
X%%DATADIR%%/Freeze/ConnectionF.ice
X%%DATADIR%%/Freeze/DB.ice
X%%DATADIR%%/Freeze/Evictor.ice
X%%DATADIR%%/Freeze/EvictorF.ice
X%%DATADIR%%/Freeze/EvictorStorage.ice
X%%DATADIR%%/Freeze/Exception.ice
X%%DATADIR%%/Freeze/Transaction.ice
X%%DATADIR%%/Glacier/Router.ice
X%%DATADIR%%/Glacier/Session.ice
X%%DATADIR%%/Glacier/SessionF.ice
X%%DATADIR%%/Glacier/SessionManager.ice
X%%DATADIR%%/Glacier/SessionManagerF.ice
X%%DATADIR%%/Glacier/Starter.ice
X%%DATADIR%%/Ice/BuiltinSequences.ice
X%%DATADIR%%/Ice/Communicator.ice
X%%DATADIR%%/Ice/CommunicatorF.ice
X%%DATADIR%%/Ice/Current.ice
X%%DATADIR%%/Ice/Facet.ice
X%%DATADIR%%/Ice/Identity.ice
X%%DATADIR%%/Ice/LocalException.ice
X%%DATADIR%%/Ice/Locator.ice
X%%DATADIR%%/Ice/LocatorF.ice
X%%DATADIR%%/Ice/Logger.ice
X%%DATADIR%%/Ice/LoggerF.ice
X%%DATADIR%%/Ice/ObjectAdapter.ice
X%%DATADIR%%/Ice/ObjectAdapterF.ice
X%%DATADIR%%/Ice/ObjectFactory.ice
X%%DATADIR%%/Ice/ObjectFactoryF.ice
X%%DATADIR%%/Ice/Plugin.ice
X%%DATADIR%%/Ice/PluginF.ice
X%%DATADIR%%/Ice/Process.ice
X%%DATADIR%%/Ice/ProcessF.ice
X%%DATADIR%%/Ice/Properties.ice
X%%DATADIR%%/Ice/PropertiesF.ice
X%%DATADIR%%/Ice/Router.ice
X%%DATADIR%%/Ice/RouterF.ice
X%%DATADIR%%/Ice/ServantLocator.ice
X%%DATADIR%%/Ice/ServantLocatorF.ice
X%%DATADIR%%/Ice/Stats.ice
X%%DATADIR%%/Ice/StatsF.ice
X%%DATADIR%%/IceBox/IceBox.ice
X%%DATADIR%%/IcePack/Admin.ice
X%%DATADIR%%/IcePack/Exception.ice
X%%DATADIR%%/IcePack/Query.ice
X%%DATADIR%%/IcePatch/IcePatch.ice
X%%DATADIR%%/IceSSL/CertificateVerifier.ice
X%%DATADIR%%/IceSSL/CertificateVerifierF.ice
X%%DATADIR%%/IceSSL/Exception.ice
X%%DATADIR%%/IceSSL/Plugin.ice
X%%DATADIR%%/IceSSL/PluginF.ice
X%%DATADIR%%/IceStorm/IceStorm.ice
X@dirrm %%DATADIR%%/IceStorm
X@dirrm %%DATADIR%%/IceSSL
X@dirrm %%DATADIR%%/IcePatch
X@dirrm %%DATADIR%%/IcePack
X@dirrm %%DATADIR%%/IceBox
X@dirrm %%DATADIR%%/Ice
X@dirrm %%DATADIR%%/Glacier
X@dirrm %%DATADIR%%/Freeze
X@dirrm %%DATADIR%%
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual/stylesheet-images
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/images
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X@dirrm include/Slice
X@dirrm include/IceXML
X@dirrm include/IceUtil
X@dirrm include/IceStorm
X@dirrm include/IceSSL
X@dirrm include/IcePatch
X@dirrm include/IcePack
X@dirrm include/IceBox
X@dirrm include/Ice
X@dirrm include/Glacier
X@dirrm include/Freeze
END-of-ice/pkg-plist
exit
--- ice-1.3.0.shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1B1ctC-0005Oq-52>