Initial import of mico-2.3.5

Port Maintainer : Andre S. Barbosa <andre@ravel.ufrj.br>
---
Mico is a freely available and complete CORBA-compliant implementation.
It allows applications to interoperate in a distributed and
heterogeneous environment, regardless of the locations of the
applications, operating systems and programming language.

WWW: http://www.mico.org
This commit is contained in:
shell 2001-06-28 19:59:03 +00:00
parent d640c091bf
commit e38f8ebe1a
20 changed files with 1263 additions and 0 deletions

47
devel/mico/Makefile Normal file
View File

@ -0,0 +1,47 @@
# $OpenBSD: Makefile,v 1.1.1.1 2001/06/28 19:59:03 shell Exp $
COMMENT= "free and complete CORBA-compliant implementation"
DISTNAME= mico-2.3.5
CATEGORIES= devel
NEED_VERSION= 1.417
HOMEPAGE= http://www.mico.org/
MASTER_SITES= ${HOMEPAGE}
MAINTAINER= Andre S. Barbosa <andre@ravel.ufrj.br>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
USE_GMAKE= Yes
CONFIGURE_STYLE= gnu
FAKE_FLAGS= prefix="${WRKINST}${PREFIX}"
WRKDIST= ${WRKDIR}/mico
FLAVORS=ssl qt gtk tcl
FLAVOR?=
.if ${FLAVOR:L:Mssl}
CONFIGURE_ARGS+= --with-ssl
.endif
.if ${FLAVOR:L:Mqt}
LIB_DEPENDS+= qt.2::x11/qt2
CONFIGURE_ARGS+= --with-qt
.endif
.if ${FLAVOR:L:Mgtk}
LIB_DEPENDS+= gtk.1.2::x11/gtk+
CONFIGURE_ARGS+= --with-gtk
.endif
.if ${FLAVOR:L:Mtcl}
LIB_DEPENDS+= tcl.8::lang/tcl
CONFIGURE_ARGS+= --with-tcl
.endif
.include <bsd.port.mk>

3
devel/mico/files/md5 Normal file
View File

@ -0,0 +1,3 @@
MD5 (mico-2.3.5.tar.gz) = 3cf3812cadb3a64bca943ba232497e78
RMD160 (mico-2.3.5.tar.gz) = 0f7e118d029efbf402c36edabd4f9c5019f90255
SHA1 (mico-2.3.5.tar.gz) = cb165f98fdda493f3acc49ed81499f34e183f95d

View File

@ -0,0 +1,11 @@
--- MakeVars.in.orig Fri Mar 24 11:48:51 2000
+++ MakeVars.in Wed Jun 27 02:21:12 2001
@@ -25,7 +25,7 @@ prefix = @prefix@
exec_prefix = @exec_prefix@
SRCDIR = @ABSSRCDIR@
INSTDIR = $(exec_prefix)
-SHARED_INSTDIR = $(prefix)
+SHARED_INSTDIR = $(prefix)/share
HAVE_REPO = @HAVE_REPO@

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-Makefile,v 1.1.1.1 2001/06/28 19:59:07 shell Exp $
--- Makefile.orig Sat Mar 24 17:38:06 2001
+++ Makefile Sat Mar 24 17:41:01 2001
@@ -62,7 +62,6 @@ install:
$(IDIRCMD) $(SHARED_INSTDIR)/doc/mico; \
$(IMANCMD) doc/doc.ps $(SHARED_INSTDIR)/doc/mico/manual.ps; \
fi
- -ldconfig
install-cd:
for i in $(INSTALLDIRS); do $(MAKE) -C $$i install-cd || exit 1; done

View File

@ -0,0 +1,361 @@
$OpenBSD: patch-codec_cc,v 1.1.1.1 2001/06/28 19:59:08 shell Exp $
--- orb/codec.cc.orig Mon Dec 4 13:53:52 2000
+++ orb/codec.cc Thu Mar 15 19:47:00 2001
@@ -983,13 +983,13 @@ CORBA::DataDecoder::byteorder (CORBA::By
/**************************** CDREncoder ******************************/
-static inline void swap2 (void *d, const void *s)
+static inline void swapp2 (void *d, const void *s)
{
((CORBA::Octet *)d)[0] = ((CORBA::Octet *)s)[1];
((CORBA::Octet *)d)[1] = ((CORBA::Octet *)s)[0];
}
-static inline void swap4 (void *d, const void *s)
+static inline void swapp4 (void *d, const void *s)
{
((CORBA::Octet *)d)[0] = ((CORBA::Octet *)s)[3];
((CORBA::Octet *)d)[1] = ((CORBA::Octet *)s)[2];
@@ -997,7 +997,7 @@ static inline void swap4 (void *d, const
((CORBA::Octet *)d)[3] = ((CORBA::Octet *)s)[0];
}
-static inline void swap8 (void *d, const void *s)
+static inline void swapp8 (void *d, const void *s)
{
((CORBA::Octet *)d)[0] = ((CORBA::Octet *)s)[7];
((CORBA::Octet *)d)[1] = ((CORBA::Octet *)s)[6];
@@ -1009,7 +1009,7 @@ static inline void swap8 (void *d, const
((CORBA::Octet *)d)[7] = ((CORBA::Octet *)s)[0];
}
-static inline void swap16 (void *d, const void *s)
+static inline void swapp16 (void *d, const void *s)
{
((CORBA::Octet *)d)[0] = ((CORBA::Octet *)s)[15];
((CORBA::Octet *)d)[1] = ((CORBA::Octet *)s)[14];
@@ -1065,7 +1065,7 @@ MICO::CDREncoder::put_short (CORBA::Shor
buf->put2 (&s);
} else {
CORBA::Short s2;
- swap2 (&s2, &s);
+ swapp2 (&s2, &s);
buf->put2 (&s2);
}
}
@@ -1077,7 +1077,7 @@ MICO::CDREncoder::put_ushort (CORBA::USh
buf->put2 (&us);
} else {
CORBA::UShort us2;
- swap2 (&us2, &us);
+ swapp2 (&us2, &us);
buf->put2 (&us2);
}
}
@@ -1089,7 +1089,7 @@ MICO::CDREncoder::put_long (CORBA::Long
buf->put4 (&l);
} else {
CORBA::Long l2;
- swap4 (&l2, &l);
+ swapp4 (&l2, &l);
buf->put4 (&l2);
}
}
@@ -1101,7 +1101,7 @@ MICO::CDREncoder::put_longlong (CORBA::L
buf->put8 (&l);
} else {
CORBA::LongLong l2;
- swap8 (&l2, &l);
+ swapp8 (&l2, &l);
buf->put8 (&l2);
}
}
@@ -1113,7 +1113,7 @@ MICO::CDREncoder::put_ulong (CORBA::ULon
buf->put4 (&ul);
} else {
CORBA::ULong ul2;
- swap4 (&ul2, &ul);
+ swapp4 (&ul2, &ul);
buf->put4 (&ul2);
}
}
@@ -1125,7 +1125,7 @@ MICO::CDREncoder::put_ulonglong (CORBA::
buf->put8 (&ul);
} else {
CORBA::ULongLong ul2;
- swap8 (&ul2, &ul);
+ swapp8 (&ul2, &ul);
buf->put8 (&ul2);
}
}
@@ -1138,7 +1138,7 @@ MICO::CDREncoder::put_float (CORBA::Floa
buf->put4 (&f);
} else {
CORBA::Float f2;
- swap4 (&f2, &f);
+ swapp4 (&f2, &f);
buf->put4 (&f2);
}
#else
@@ -1148,7 +1148,7 @@ MICO::CDREncoder::put_float (CORBA::Floa
buf->put4 (b);
} else {
CORBA::Octet b2[4];
- swap4 (b2, b);
+ swapp4 (b2, b);
buf->put4 (b2);
}
#endif
@@ -1162,7 +1162,7 @@ MICO::CDREncoder::put_double (CORBA::Dou
buf->put8 (&d);
} else {
CORBA::Double d2;
- swap8 (&d2, &d);
+ swapp8 (&d2, &d);
buf->put8 (&d2);
}
#else
@@ -1172,7 +1172,7 @@ MICO::CDREncoder::put_double (CORBA::Dou
buf->put8 (b);
} else {
CORBA::Octet b2[8];
- swap8 (b2, b);
+ swapp8 (b2, b);
buf->put8 (b2);
}
#endif
@@ -1186,7 +1186,7 @@ MICO::CDREncoder::put_longdouble (CORBA:
buf->put16 (&d);
} else {
CORBA::LongDouble d2;
- swap16 (&d2, &d);
+ swapp16 (&d2, &d);
buf->put16 (&d2);
}
#else
@@ -1196,7 +1196,7 @@ MICO::CDREncoder::put_longdouble (CORBA:
buf->put16 (b);
} else {
CORBA::Octet b2[16];
- swap16 (b2, b);
+ swapp16 (b2, b);
buf->put16 (b2);
}
#endif
@@ -1250,7 +1250,7 @@ MICO::CDREncoder::put_shorts (const CORB
buf->resize (2*l);
CORBA::Short *d = (CORBA::Short *)buf->wdata();
for (CORBA::Long i = l; --i >= 0; ++d, ++p)
- swap2 (d, p);
+ swapp2 (d, p);
buf->wseek_rel (2*l);
}
}
@@ -1265,7 +1265,7 @@ MICO::CDREncoder::put_ushorts (const COR
buf->resize (2*l);
CORBA::UShort *d = (CORBA::UShort *)buf->wdata();
for (CORBA::Long i = l; --i >= 0; ++d, ++p)
- swap2 (d, p);
+ swapp2 (d, p);
buf->wseek_rel (2*l);
}
}
@@ -1280,7 +1280,7 @@ MICO::CDREncoder::put_longs (const CORBA
buf->resize (4*l);
CORBA::Long *d = (CORBA::Long *)buf->wdata();
for (CORBA::Long i = l; --i >= 0; ++d, ++p)
- swap4 (d, p);
+ swapp4 (d, p);
buf->wseek_rel (4*l);
}
}
@@ -1295,7 +1295,7 @@ MICO::CDREncoder::put_longlongs (const C
buf->resize (8*l);
CORBA::LongLong *d = (CORBA::LongLong *)buf->wdata();
for (CORBA::Long i = l; --i >= 0; ++d, ++p)
- swap8 (d, p);
+ swapp8 (d, p);
buf->wseek_rel (8*l);
}
}
@@ -1310,7 +1310,7 @@ MICO::CDREncoder::put_ulongs (const CORB
buf->resize (4*l);
CORBA::ULong *d = (CORBA::ULong *)buf->wdata();
for (CORBA::Long i = l; --i >= 0; ++d, ++p)
- swap4 (d, p);
+ swapp4 (d, p);
buf->wseek_rel (4*l);
}
}
@@ -1325,7 +1325,7 @@ MICO::CDREncoder::put_ulonglongs (const
buf->resize (8*l);
CORBA::ULongLong *d = (CORBA::ULongLong *)buf->wdata();
for (CORBA::Long i = l; --i >= 0; ++d, ++p)
- swap8 (d, p);
+ swapp8 (d, p);
buf->wseek_rel (8*l);
}
}
@@ -1541,7 +1541,7 @@ MICO::CDRDecoder::get_short (CORBA::Shor
CORBA::Short s2;
if (!buf->get2 (&s2))
return FALSE;
- swap2 (&s, &s2);
+ swapp2 (&s, &s2);
return TRUE;
}
@@ -1554,7 +1554,7 @@ MICO::CDRDecoder::get_ushort (CORBA::USh
CORBA::UShort us2;
if (!buf->get2 (&us2))
return FALSE;
- swap2 (&us, &us2);
+ swapp2 (&us, &us2);
return TRUE;
}
@@ -1567,7 +1567,7 @@ MICO::CDRDecoder::get_long (CORBA::Long
CORBA::Long l2;
if (!buf->get4 (&l2))
return FALSE;
- swap4 (&l, &l2);
+ swapp4 (&l, &l2);
return TRUE;
}
@@ -1580,7 +1580,7 @@ MICO::CDRDecoder::get_longlong (CORBA::L
CORBA::LongLong l2;
if (!buf->get8 (&l2))
return FALSE;
- swap8 (&l, &l2);
+ swapp8 (&l, &l2);
return TRUE;
}
@@ -1593,7 +1593,7 @@ MICO::CDRDecoder::get_ulong (CORBA::ULon
CORBA::ULong ul2;
if (!buf->get4 (&ul2))
return FALSE;
- swap4 (&ul, &ul2);
+ swapp4 (&ul, &ul2);
return TRUE;
}
@@ -1606,7 +1606,7 @@ MICO::CDRDecoder::get_ulonglong (CORBA::
CORBA::ULongLong ul2;
if (!buf->get8 (&ul2))
return FALSE;
- swap8 (&ul, &ul2);
+ swapp8 (&ul, &ul2);
return TRUE;
}
@@ -1620,7 +1620,7 @@ MICO::CDRDecoder::get_float (CORBA::Floa
CORBA::Float f2;
if (!buf->get4 (&f2))
return FALSE;
- swap4 (&f, &f2);
+ swapp4 (&f, &f2);
#else
CORBA::Octet b[4];
if (data_bo == mach_bo) {
@@ -1633,7 +1633,7 @@ MICO::CDRDecoder::get_float (CORBA::Floa
CORBA::Octet b2[4];
if (!buf->get4 (b2))
return FALSE;
- swap4 (&b, &b2);
+ swapp4 (&b, &b2);
mico_ieee2float (b, f);
#endif
return TRUE;
@@ -1649,7 +1649,7 @@ MICO::CDRDecoder::get_double (CORBA::Dou
CORBA::Double d2;
if (!buf->get8 (&d2))
return FALSE;
- swap8 (&d, &d2);
+ swapp8 (&d, &d2);
#else
CORBA::Octet b[8];
if (data_bo == mach_bo) {
@@ -1662,7 +1662,7 @@ MICO::CDRDecoder::get_double (CORBA::Dou
CORBA::Octet b2[8];
if (!buf->get8 (b2))
return FALSE;
- swap8 (&b, &b2);
+ swapp8 (&b, &b2);
mico_ieee2double (b, d);
#endif
return TRUE;
@@ -1678,7 +1678,7 @@ MICO::CDRDecoder::get_longdouble (CORBA:
CORBA::LongDouble d2;
if (!buf->get16 (&d2))
return FALSE;
- swap16 (&d, &d2);
+ swapp16 (&d, &d2);
#else
CORBA::Octet b[16];
if (data_bo == mach_bo) {
@@ -1691,7 +1691,7 @@ MICO::CDRDecoder::get_longdouble (CORBA:
CORBA::Octet b2[16];
if (!buf->get16 (b2))
return FALSE;
- swap16 (&b, &b2);
+ swapp16 (&b, &b2);
mico_ieee2ldouble (b, d);
#endif
return TRUE;
@@ -1749,7 +1749,7 @@ MICO::CDRDecoder::get_shorts (CORBA::Sho
CORBA::Short *s = (CORBA::Short *)buf->data();
for (CORBA::Long i = l; --i >= 0; ++p, ++s)
- swap2 (p, s);
+ swapp2 (p, s);
buf->rseek_rel (2*l);
return TRUE;
@@ -1769,7 +1769,7 @@ MICO::CDRDecoder::get_ushorts (CORBA::US
CORBA::UShort *s = (CORBA::UShort *)buf->data();
for (CORBA::Long i = l; --i >= 0; ++p, ++s)
- swap2 (p, s);
+ swapp2 (p, s);
buf->rseek_rel (2*l);
return TRUE;
@@ -1789,7 +1789,7 @@ MICO::CDRDecoder::get_longs (CORBA::Long
CORBA::Long *s = (CORBA::Long *)buf->data();
for (CORBA::Long i = l; --i >= 0; ++p, ++s)
- swap4 (p, s);
+ swapp4 (p, s);
buf->rseek_rel (4*l);
return TRUE;
@@ -1809,7 +1809,7 @@ MICO::CDRDecoder::get_longlongs (CORBA::
CORBA::LongLong *s = (CORBA::LongLong *)buf->data();
for (CORBA::Long i = l; --i >= 0; ++p, ++s)
- swap8 (p, s);
+ swapp8 (p, s);
buf->rseek_rel (8*l);
return TRUE;
@@ -1829,7 +1829,7 @@ MICO::CDRDecoder::get_ulongs (CORBA::ULo
CORBA::ULong *s = (CORBA::ULong *)buf->data();
for (CORBA::Long i = l; --i >= 0; ++p, ++s)
- swap4 (p, s);
+ swapp4 (p, s);
buf->rseek_rel (4*l);
return TRUE;
@@ -1849,7 +1849,7 @@ MICO::CDRDecoder::get_ulonglongs (CORBA:
CORBA::ULongLong *s = (CORBA::ULongLong *)buf->data();
for (CORBA::Long i = l; --i >= 0; ++p, ++s)
- swap8 (p, s);
+ swapp8 (p, s);
buf->rseek_rel (8*l);
return TRUE;

View File

@ -0,0 +1,26 @@
$OpenBSD: patch-coss_time_TimeService_help_cc,v 1.1.1.1 2001/06/28 19:59:07 shell Exp $
--- coss/time/TimeService_help.cc.orig Wed Mar 21 01:48:35 2001
+++ coss/time/TimeService_help.cc Wed Mar 21 02:22:53 2001
@@ -27,7 +27,7 @@
#include <mico/CosNaming.h>
#include <mico/util.h>
#include <time.h>
-#include <sys/timeb.h>
+#include <sys/time.h>
//
//Helper functions, mainly wrappers around the time function
@@ -60,10 +60,10 @@ TimeBase::TimeT getInaccuracy()
TimeBase::TimeT getTimezone()
{
//obtain timezone
- timeb timestruct;
- ftime(&timestruct);
+ struct timezone tzone;
+ gettimeofday(NULL, &tzone);
- TimeBase::TdfT displacementV = timestruct.timezone;
+ TimeBase::TdfT displacementV = tzone.tz_minuteswest;
return displacementV;
}

View File

@ -0,0 +1,20 @@
--- demo/MakeVars.orig Thu Jun 28 02:22:00 2001
+++ demo/MakeVars Thu Jun 28 02:43:34 2001
@@ -78,14 +78,14 @@ COS_DEPS = $(DIR_PREFIX)../../coss/l
endif
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/$(INSTALL_DIR)
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/$(INSTALL_DIR)
test -z "$(INSTALL_SRCS)" || \
eval 'for i in $(INSTALL_SRCS); do \
- $(ISRCCMD) $$i $(INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
+ $(ISRCCMD) $$i $(SHARED_INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
done'
test -z "$(INSTALL_SCRIPTS)" || \
eval 'for i in $(INSTALL_SCRIPTS); do \
- $(ISCRIPTCMD) $$i $(INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
+ $(ISCRIPTCMD) $$i $(SHARED_INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
done'
ifeq (.depend, $(wildcard .depend))

View File

@ -0,0 +1,18 @@
--- demo/Makefile.orig Thu Jun 28 02:04:25 2001
+++ demo/Makefile Thu Jun 28 02:44:24 2001
@@ -45,12 +45,12 @@ clean:
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples
sed -e s/@MICO_VERSION@/$(VERSION)/g \
< MakeVars.install > MakeVars.install.ver
- $(ISRCCMD) MakeVars.install.ver $(INSTDIR)/doc/mico/examples/MakeVars
+ $(ISRCCMD) MakeVars.install.ver $(SHARED_INSTDIR)/doc/mico/examples/MakeVars
rm -f MakeVars.install.ver
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples
for i in $(INST_DIRS); do $(MAKE) -C $$i install || exit 1; done
install-cd: install

View File

@ -0,0 +1,13 @@
--- demo/boa/Makefile.orig Thu Jun 28 02:48:21 2001
+++ demo/boa/Makefile Thu Jun 28 02:48:48 2001
@@ -31,7 +31,7 @@ clean:
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/boa
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/boa
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/boa
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/boa
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/boa
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/boa
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done

View File

@ -0,0 +1,14 @@
--- demo/dispatcher/Makefile.orig Thu Jun 28 02:49:28 2001
+++ demo/dispatcher/Makefile Thu Jun 28 02:49:51 2001
@@ -27,8 +27,8 @@ clean:
rm -f *.o core *~ .depend
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/dispatcher
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/dispatcher
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/dispatcher
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/dispatcher
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/dispatcher
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/dispatcher
test -z "$(DIRS)" || \
eval 'for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done'

View File

@ -0,0 +1,13 @@
--- demo/interop/Makefile.orig Thu Jun 28 02:50:23 2001
+++ demo/interop/Makefile Thu Jun 28 02:50:47 2001
@@ -30,7 +30,7 @@ clean:
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/interop
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/interop
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/interop
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/interop
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/interop
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/interop
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done

View File

@ -0,0 +1,13 @@
--- demo/obv/Makefile.orig Thu Jun 28 02:51:10 2001
+++ demo/obv/Makefile Thu Jun 28 02:51:37 2001
@@ -13,7 +13,7 @@ clean:
rm -f *.o core *~ .depend
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/obv
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/obv
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/obv
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/obv
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/obv
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/obv
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done

View File

@ -0,0 +1,13 @@
--- demo/poa/Makefile.orig Thu Jun 28 02:52:04 2001
+++ demo/poa/Makefile Thu Jun 28 02:52:24 2001
@@ -13,7 +13,7 @@ clean:
rm -f *.o core *~ .depend
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/poa
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/poa
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/poa
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/poa
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/poa
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/poa
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done

View File

@ -0,0 +1,13 @@
--- demo/redlich/Makefile.orig Thu Jun 28 02:52:44 2001
+++ demo/redlich/Makefile Thu Jun 28 02:53:11 2001
@@ -33,7 +33,7 @@ clean:
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/redlich
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/redlich
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/redlich
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/redlich
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/redlich
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/redlich
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done

View File

@ -0,0 +1,13 @@
--- demo/services/Makefile.orig Thu Jun 28 02:53:39 2001
+++ demo/services/Makefile Thu Jun 28 02:53:57 2001
@@ -13,7 +13,7 @@ clean:
rm -f *.o core *~ .depend
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/services
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/services
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/services
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/services
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/services
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/services
for i in $(DIRS) stream-sound; do $(MAKE) -C $$i install || exit 1; done

View File

@ -0,0 +1,13 @@
--- demo/siegel/Makefile.orig Thu Jun 28 02:54:18 2001
+++ demo/siegel/Makefile Thu Jun 28 02:54:38 2001
@@ -33,7 +33,7 @@ clean:
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
install:
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/siegel
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/siegel
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/siegel
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/siegel
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/siegel
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/siegel
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done

View File

@ -0,0 +1,14 @@
--- man/Makefile.orig Thu Jun 28 03:02:08 2001
+++ man/Makefile Thu Jun 28 03:02:40 2001
@@ -26,9 +26,9 @@ DIRS = man1 man5 man8
install:
for i in $(DIRS); do \
- $(IDIRCMD) $(SHARED_INSTDIR)/man/$$i; \
+ $(IDIRCMD) $(INSTDIR)/man/$$i; \
for j in $$i/*.[1-9]; do $(IMANCMD) $$j \
- $(SHARED_INSTDIR)/man/$$i/; done; \
+ $(INSTDIR)/man/$$i/; done; \
done
install-cd: install

6
devel/mico/pkg/DESCR Normal file
View File

@ -0,0 +1,6 @@
Mico is a freely available and complete CORBA-compliant implementation.
It allows applications to interoperate in a distributed and
heterogeneous environment, regardless of the locations of the
applications, operating systems and programming language.
WWW: ${HOMEPAGE}

View File

@ -0,0 +1,6 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2001/06/28 19:59:06 shell Exp $
lib/libmico2.3.5.so.1.0
lib/libmicoaux2.3.5.so.1.0
lib/libmicocoss2.3.5.so.1.0
lib/libmicox2.3.5.so.1.0
DYNLIBDIR(%B)

635
devel/mico/pkg/PLIST Normal file
View File

@ -0,0 +1,635 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/06/28 19:59:06 shell Exp $
bin/containmentd
bin/eventd
bin/idl
bin/imr
bin/iordump
bin/ird
bin/mico-ar
bin/mico-c++
bin/mico-cpp
bin/mico-ld
bin/micod
bin/noded
bin/nsadmin
bin/nsd
bin/propertyd
bin/proxyd
bin/randomd
bin/referenced
bin/timed
bin/traderd
bin/traversald
include/CORBA-SMALL.h
include/CORBA.h
include/mico/CompoundExternalization_impl.h
include/mico/CosCompoundLifeCycle.idl
include/mico/CosContainment.h
include/mico/CosContainment.idl
include/mico/CosContainment_impl.h
include/mico/CosEventChannelAdmin.h
include/mico/CosEventChannelAdmin.idl
include/mico/CosEventComm.h
include/mico/CosEventComm.idl
include/mico/CosExternalization.idl
include/mico/CosExternalizationContainment.idl
include/mico/CosExternalizationReference.idl
include/mico/CosGraphs.h
include/mico/CosGraphs.idl
include/mico/CosGraphsExtension.h
include/mico/CosGraphsExtension.idl
include/mico/CosLifeCycle.idl
include/mico/CosLifeCycleContainment.idl
include/mico/CosLifeCycleReference.idl
include/mico/CosNaming.h
include/mico/CosNaming.idl
include/mico/CosObjectIdentity.h
include/mico/CosObjectIdentity.idl
include/mico/CosReference.h
include/mico/CosReference.idl
include/mico/CosReference_impl.h
include/mico/CosRelationships.h
include/mico/CosRelationships.idl
include/mico/CosStream_impl.h
include/mico/CosTime.h
include/mico/CosTime.idl
include/mico/CosTrading.h
include/mico/CosTrading.idl
include/mico/CosTradingRepos.h
include/mico/CosTradingRepos.idl
include/mico/EdgeIterator_impl.h
include/mico/ExternalizationContainment_impl.h
include/mico/ExternalizationPropagationCriteriaFactory_impl.h
include/mico/ExternalizationReference_impl.h
include/mico/ExternalizationTraversalCriteria_impl.h
include/mico/Externalization_impl.h
include/mico/FactoryFinder_impl.h
include/mico/GenericCriteriaFactory_impl.h
include/mico/GenericFactory_impl.h
include/mico/GraphsRole_impl.h
include/mico/IdentifiableObject_impl.h
include/mico/InterfaceDefsHelper.h
include/mico/LifeContainment_impl.h
include/mico/LifeNode_impl.h
include/mico/LifePropagationCriteriaFactory_impl.h
include/mico/LifeReference_impl.h
include/mico/LifeRelationship_impl.h
include/mico/LifeRole_impl.h
include/mico/LifeTraversalCriteria_impl.h
include/mico/NamedRoleTypesHelper.h
include/mico/NodeFactory_impl.h
include/mico/NodeStreamableFactory_impl.h
include/mico/Node_impl.h
include/mico/OperationsFactory_impl.h
include/mico/Operations_impl.h
include/mico/PropertyService.h
include/mico/PropertyService.idl
include/mico/PropertyService_impl.h
include/mico/RandomGenerator.h
include/mico/RandomGenerator.idl
include/mico/RandomGenerator_impl.h
include/mico/RegisterHelper.h
include/mico/RelationshipFactory_impl.h
include/mico/RelationshipIterator_impl.h
include/mico/Relationship_impl.h
include/mico/RoleFactory_impl.h
include/mico/Role_impl.h
include/mico/TraversalCriteria_impl.h
include/mico/TraversalFactory_impl.h
include/mico/Traversal_impl.h
include/mico/address.h
include/mico/address_impl.h
include/mico/any.h
include/mico/array.h
include/mico/assert.h
include/mico/basic.h
include/mico/basic_seq.h
include/mico/basic_seq.idl
include/mico/boa.h
include/mico/boa_impl.h
include/mico/buffer.h
include/mico/code_set_registry.h
include/mico/codec.h
include/mico/codec_impl.h
include/mico/codeset.h
include/mico/codeset_impl.h
include/mico/config-win32.h
include/mico/config.h
include/mico/config.h.in
include/mico/conv_frame.idl
include/mico/current.h
include/mico/current.idl
include/mico/dii.h
include/mico/dispatch.h
include/mico/dsi.h
include/mico/dynany.h
include/mico/dynany.idl
include/mico/dynany_impl.h
include/mico/except.h
include/mico/fixed.h
include/mico/fltkmico.h
include/mico/gtkmico.h
include/mico/impl.h
include/mico/imr.h
include/mico/imr.idl
include/mico/imr_impl.h
include/mico/intercept.h
include/mico/intercept.idl
include/mico/iop.h
include/mico/ioptypes.h
include/mico/ioptypes.idl
include/mico/ior.h
include/mico/ior_impl.h
include/mico/ir.h
include/mico/ir.idl
include/mico/ir_base.h
include/mico/ir_base.idl
include/mico/ir_fwd.h
include/mico/ir_impl.h
include/mico/lmath.h
include/mico/magic.h
include/mico/memtrace.h
include/mico/native.h
include/mico/object.h
include/mico/operators.h
include/mico/orb.h
include/mico/orb.idl
include/mico/orb_excepts.h
include/mico/orb_excepts.idl
include/mico/orb_fwd.h
include/mico/orb_impl.h
include/mico/orb_mico.h
include/mico/os-math.h
include/mico/os-misc.h
include/mico/os-net.h
include/mico/poa.h
include/mico/poa.idl
include/mico/poa_base.h
include/mico/poa_impl.h
include/mico/poa_stubs.h
include/mico/policy.h
include/mico/policy.idl
include/mico/policy2.h
include/mico/policy2.idl
include/mico/policy_impl.h
include/mico/process.h
include/mico/process_impl.h
include/mico/qtmico.h
include/mico/random.h
include/mico/random.idl
include/mico/rtti.h
include/mico/sequence.h
include/mico/sequence_special.h
include/mico/service_info.h
include/mico/service_info.idl
include/mico/shlib.h
include/mico/shlib_impl.h
include/mico/ssl.h
include/mico/ssliop.h
include/mico/ssliop.idl
include/mico/static-dispatch.h
include/mico/static.h
include/mico/stream.h
include/mico/stream.idl
include/mico/stream_impl.h
include/mico/string.h
include/mico/sysexc.h
include/mico/tcconst.h
include/mico/tckind.h
include/mico/tckind.idl
include/mico/tclmico.h
include/mico/template.h
include/mico/template_impl.h
include/mico/throw.h
include/mico/transport.h
include/mico/transport_impl.h
include/mico/typecode.h
include/mico/types.h
include/mico/util.h
include/mico/value.h
include/mico/valuetype.h
include/mico/valuetype.idl
include/mico/valuetype_impl.h
include/mico/version.h
include/mico/x11.h
include/ministl/algo.h
include/ministl/algorithm
include/ministl/bool.h
include/ministl/bstring.h
include/ministl/defalloc.h
include/ministl/function
include/ministl/function.h
include/ministl/list
include/ministl/list.h
include/ministl/map
include/ministl/map.h
include/ministl/ministl.h
include/ministl/pair
include/ministl/pair.h
include/ministl/set
include/ministl/set.h
include/ministl/simplevec.h
include/ministl/string
include/ministl/vector
include/ministl/vector.h
lib/libmico2.3.5.a
lib/libmicoaux2.3.5.a
lib/libmicocoss2.3.5.a
lib/libmicox2.3.5.a
lib/mico-setup.csh
lib/mico-setup.sh
man/man1/idl.1
man/man1/imr.1
man/man1/nsadmin.1
man/man5/micorc.5
man/man8/ird.8
man/man8/micod.8
man/man8/nsd.8
share/doc/mico/examples/MakeVars
share/doc/mico/examples/README
share/doc/mico/examples/bench/Makefile
share/doc/mico/examples/bench/bench
share/doc/mico/examples/bench/bench.idl
share/doc/mico/examples/bench/bench_impl.h
share/doc/mico/examples/bench/client.cc
share/doc/mico/examples/bench/server.cc
share/doc/mico/examples/boa/Makefile
share/doc/mico/examples/boa/README
share/doc/mico/examples/boa/account/Makefile
share/doc/mico/examples/boa/account/account.idl
share/doc/mico/examples/boa/account/main.cc
share/doc/mico/examples/boa/account2/Makefile
share/doc/mico/examples/boa/account2/account
share/doc/mico/examples/boa/account2/account.idl
share/doc/mico/examples/boa/account2/client.cc
share/doc/mico/examples/boa/account2/server.cc
share/doc/mico/examples/boa/account3/Makefile
share/doc/mico/examples/boa/account3/account
share/doc/mico/examples/boa/account3/account.idl
share/doc/mico/examples/boa/account3/client.cc
share/doc/mico/examples/boa/account3/server.cc
share/doc/mico/examples/boa/account4/Makefile
share/doc/mico/examples/boa/account4/account
share/doc/mico/examples/boa/account4/account.idl
share/doc/mico/examples/boa/account4/client.cc
share/doc/mico/examples/boa/account4/server.cc
share/doc/mico/examples/boa/activate/Makefile
share/doc/mico/examples/boa/activate/client.cc
share/doc/mico/examples/boa/activate/hello-permethod
share/doc/mico/examples/boa/activate/hello-shared
share/doc/mico/examples/boa/activate/hello-unshared
share/doc/mico/examples/boa/activate/hello.idl
share/doc/mico/examples/boa/activate/server.cc
share/doc/mico/examples/codesets/Makefile
share/doc/mico/examples/codesets/client.cc
share/doc/mico/examples/codesets/hello.idl
share/doc/mico/examples/codesets/runit
share/doc/mico/examples/codesets/server.cc
share/doc/mico/examples/dispatcher/Makefile
share/doc/mico/examples/dispatcher/README
share/doc/mico/examples/dispatcher/x11/Makefile
share/doc/mico/examples/dispatcher/x11/client.cc
share/doc/mico/examples/dispatcher/x11/hello.idl
share/doc/mico/examples/dispatcher/x11/server.cc
share/doc/mico/examples/dispatcher/x11/xhello
share/doc/mico/examples/dynany/Makefile
share/doc/mico/examples/dynany/dynany.cc
share/doc/mico/examples/dynany/dynanytest.cc
share/doc/mico/examples/dynany/test.idl
share/doc/mico/examples/externalization/Makefile
share/doc/mico/examples/externalization/client.cc
share/doc/mico/examples/externalization/hello.idl
share/doc/mico/examples/externalization/runit
share/doc/mico/examples/externalization/server.cc
share/doc/mico/examples/generic/Makefile
share/doc/mico/examples/generic/client.cc
share/doc/mico/examples/generic/run_test
share/doc/mico/examples/generic/server.cc
share/doc/mico/examples/generic/test.idl
share/doc/mico/examples/generic/test_cases
share/doc/mico/examples/henning/README
share/doc/mico/examples/henning/diffs
share/doc/mico/examples/interceptor/Makefile
share/doc/mico/examples/interceptor/client.cc
share/doc/mico/examples/interceptor/hello.idl
share/doc/mico/examples/interceptor/runit
share/doc/mico/examples/interceptor/server.cc
share/doc/mico/examples/interop/Makefile
share/doc/mico/examples/interop/README
share/doc/mico/examples/interop/jacorb/Account.idl
share/doc/mico/examples/interop/jacorb/Client.java
share/doc/mico/examples/interop/jacorb/ClientApplet.html.in
share/doc/mico/examples/interop/jacorb/ClientApplet.java
share/doc/mico/examples/interop/jacorb/Makefile
share/doc/mico/examples/interop/jacorb/README
share/doc/mico/examples/interop/jacorb/Server.java
share/doc/mico/examples/interop/jacorb/account
share/doc/mico/examples/interop/jacorb/client.cc
share/doc/mico/examples/interop/jacorb/run_applet
share/doc/mico/examples/interop/jacorb/server.cc
share/doc/mico/examples/interop/jdk/Account.idl
share/doc/mico/examples/interop/jdk/Client.java
share/doc/mico/examples/interop/jdk/ClientApplet.html.in
share/doc/mico/examples/interop/jdk/ClientApplet.java
share/doc/mico/examples/interop/jdk/Makefile
share/doc/mico/examples/interop/jdk/README
share/doc/mico/examples/interop/jdk/account
share/doc/mico/examples/interop/jdk/main.cc
share/doc/mico/examples/interop/jdk/run_applet
share/doc/mico/examples/interop/orbix/Makefile
share/doc/mico/examples/interop/orbix/README
share/doc/mico/examples/interop/orbix/grid.idl
share/doc/mico/examples/interop/orbix/main.cc
share/doc/mico/examples/interop/visibroker/Account.idl
share/doc/mico/examples/interop/visibroker/Client.java
share/doc/mico/examples/interop/visibroker/ClientApplet.html.in
share/doc/mico/examples/interop/visibroker/ClientApplet.java
share/doc/mico/examples/interop/visibroker/Makefile
share/doc/mico/examples/interop/visibroker/README
share/doc/mico/examples/interop/visibroker/account
share/doc/mico/examples/interop/visibroker/main.cc
share/doc/mico/examples/interop/visibroker/run_applet
share/doc/mico/examples/lifecycle/Makefile
share/doc/mico/examples/lifecycle/client.cc
share/doc/mico/examples/lifecycle/hello.idl
share/doc/mico/examples/lifecycle/runit
share/doc/mico/examples/lifecycle/server.cc
share/doc/mico/examples/mcast/Makefile
share/doc/mico/examples/mcast/client.cc
share/doc/mico/examples/mcast/hello.idl
share/doc/mico/examples/mcast/runit
share/doc/mico/examples/mcast/server.cc
share/doc/mico/examples/obv/Makefile
share/doc/mico/examples/obv/README
share/doc/mico/examples/obv/abstract/Makefile
share/doc/mico/examples/obv/abstract/README
share/doc/mico/examples/obv/abstract/abstract
share/doc/mico/examples/obv/abstract/abstract.idl
share/doc/mico/examples/obv/abstract/abstract_impl.h
share/doc/mico/examples/obv/abstract/client.cc
share/doc/mico/examples/obv/abstract/server.cc
share/doc/mico/examples/obv/custom/Makefile
share/doc/mico/examples/obv/custom/README
share/doc/mico/examples/obv/custom/custom
share/doc/mico/examples/obv/custom/custom.idl
share/doc/mico/examples/obv/custom/custom_impl.cc
share/doc/mico/examples/obv/custom/custom_impl.h
share/doc/mico/examples/obv/custom/test.cc
share/doc/mico/examples/obv/date/Makefile
share/doc/mico/examples/obv/date/calendar.idl
share/doc/mico/examples/obv/date/client.cc
share/doc/mico/examples/obv/date/date
share/doc/mico/examples/obv/date/date.idl
share/doc/mico/examples/obv/date/date_impl.cc
share/doc/mico/examples/obv/date/date_impl.h
share/doc/mico/examples/obv/date/server.cc
share/doc/mico/examples/obv/tree/Makefile
share/doc/mico/examples/obv/tree/client.cc
share/doc/mico/examples/obv/tree/server.cc
share/doc/mico/examples/obv/tree/tree
share/doc/mico/examples/obv/tree/tree.idl
share/doc/mico/examples/obv/tree/tree_impl.cc
share/doc/mico/examples/obv/tree/tree_impl.h
share/doc/mico/examples/obv/tricky/Makefile
share/doc/mico/examples/obv/tricky/client.cc
share/doc/mico/examples/obv/tricky/server.cc
share/doc/mico/examples/obv/tricky/tricky
share/doc/mico/examples/obv/tricky/tricky.idl
share/doc/mico/examples/obv/tricky/tricky_impl.cc
share/doc/mico/examples/obv/tricky/tricky_impl.h
share/doc/mico/examples/poa/Makefile
share/doc/mico/examples/poa/README
share/doc/mico/examples/poa/account-1/Makefile
share/doc/mico/examples/poa/account-1/account
share/doc/mico/examples/poa/account-1/account.idl
share/doc/mico/examples/poa/account-1/client.cc
share/doc/mico/examples/poa/account-1/server.cc
share/doc/mico/examples/poa/account-2/Makefile
share/doc/mico/examples/poa/account-2/account
share/doc/mico/examples/poa/account-2/account.idl
share/doc/mico/examples/poa/account-2/client.cc
share/doc/mico/examples/poa/account-2/server.cc
share/doc/mico/examples/poa/account-3/Makefile
share/doc/mico/examples/poa/account-3/account
share/doc/mico/examples/poa/account-3/account.idl
share/doc/mico/examples/poa/account-3/client.cc
share/doc/mico/examples/poa/account-3/server.cc
share/doc/mico/examples/poa/hello-1/Makefile
share/doc/mico/examples/poa/hello-1/client.cc
share/doc/mico/examples/poa/hello-1/hello
share/doc/mico/examples/poa/hello-1/hello.idl
share/doc/mico/examples/poa/hello-1/server.cc
share/doc/mico/examples/poa/hello-2/Makefile
share/doc/mico/examples/poa/hello-2/client.cc
share/doc/mico/examples/poa/hello-2/hello
share/doc/mico/examples/poa/hello-2/hello.idl
share/doc/mico/examples/poa/hello-2/server.cc
share/doc/mico/examples/poa/inherit/Makefile
share/doc/mico/examples/poa/inherit/client.cc
share/doc/mico/examples/poa/inherit/inherit
share/doc/mico/examples/poa/inherit/inherit.idl
share/doc/mico/examples/poa/inherit/server.cc
share/doc/mico/examples/random/Makefile
share/doc/mico/examples/random/client.cc
share/doc/mico/examples/random/random.idl
share/doc/mico/examples/redlich/Calc-1/Makefile
share/doc/mico/examples/redlich/Calc-1/calc.idl
share/doc/mico/examples/redlich/Calc-1/client.cc
share/doc/mico/examples/redlich/Calc-1/server.cc
share/doc/mico/examples/redlich/Calc-2/Makefile
share/doc/mico/examples/redlich/Calc-2/calc.idl
share/doc/mico/examples/redlich/Calc-2/client.cc
share/doc/mico/examples/redlich/Calc-2/server.cc
share/doc/mico/examples/redlich/Calc-3/Makefile
share/doc/mico/examples/redlich/Calc-3/calc.idl
share/doc/mico/examples/redlich/Calc-3/client.cc
share/doc/mico/examples/redlich/Calc-3/server.cc
share/doc/mico/examples/redlich/Calc-4/Makefile
share/doc/mico/examples/redlich/Calc-4/calc.idl
share/doc/mico/examples/redlich/Calc-4/client.cc
share/doc/mico/examples/redlich/Calc-4/server.cc
share/doc/mico/examples/redlich/Hello-1/Makefile
share/doc/mico/examples/redlich/Hello-1/client.cc
share/doc/mico/examples/redlich/Hello-1/server.cc
share/doc/mico/examples/redlich/Hello-1/tty.idl
share/doc/mico/examples/redlich/Hello-2/Makefile
share/doc/mico/examples/redlich/Hello-2/client.cc
share/doc/mico/examples/redlich/Hello-2/server.cc
share/doc/mico/examples/redlich/Hello-2/tty.idl
share/doc/mico/examples/redlich/Hello-3/Makefile
share/doc/mico/examples/redlich/Hello-3/client.cc
share/doc/mico/examples/redlich/Hello-3/server.cc
share/doc/mico/examples/redlich/Hello-3/tty.idl
share/doc/mico/examples/redlich/Hello-3/ttyplus.idl
share/doc/mico/examples/redlich/Hello-4/Makefile
share/doc/mico/examples/redlich/Hello-4/client.cc
share/doc/mico/examples/redlich/Hello-4/server.cc
share/doc/mico/examples/redlich/Hello-4/tty.idl
share/doc/mico/examples/redlich/Hello-4/ttyplus.idl
share/doc/mico/examples/redlich/Makefile
share/doc/mico/examples/redlich/README
share/doc/mico/examples/services/Makefile
share/doc/mico/examples/services/README
share/doc/mico/examples/services/events/Makefile
share/doc/mico/examples/services/events/client.cc
share/doc/mico/examples/services/events/client2.cc
share/doc/mico/examples/services/events/runit
share/doc/mico/examples/services/events/server.cc
share/doc/mico/examples/services/events/server2.cc
share/doc/mico/examples/services/events/server3.cc
share/doc/mico/examples/services/naming/Makefile
share/doc/mico/examples/services/naming/account.idl
share/doc/mico/examples/services/naming/account_test
share/doc/mico/examples/services/naming/client.cc
share/doc/mico/examples/services/naming/server.cc
share/doc/mico/examples/services/property-daemon/Makefile
share/doc/mico/examples/services/property-daemon/README
share/doc/mico/examples/services/property-daemon/bank.idl
share/doc/mico/examples/services/property-daemon/get_properties.cc
share/doc/mico/examples/services/property-daemon/set_properties.cc
share/doc/mico/examples/services/property-daemon/start_demo
share/doc/mico/examples/services/relship/Documents.idl
share/doc/mico/examples/services/relship/DocumentsServer.cc
share/doc/mico/examples/services/relship/Documents_impl.cc
share/doc/mico/examples/services/relship/Documents_impl.h
share/doc/mico/examples/services/relship/Makefile
share/doc/mico/examples/services/relship/README
share/doc/mico/examples/services/relship/Test.idl
share/doc/mico/examples/services/relship/TestServer.cc
share/doc/mico/examples/services/relship/Test_impl.cc
share/doc/mico/examples/services/relship/Test_impl.h
share/doc/mico/examples/services/relship/daemons-start
share/doc/mico/examples/services/relship/daemons-stop
share/doc/mico/examples/services/relship/rundemo
share/doc/mico/examples/services/relship/servers-start
share/doc/mico/examples/services/relship/simple-test.cc
share/doc/mico/examples/services/relship/stop-servers
share/doc/mico/examples/services/relship/test
share/doc/mico/examples/services/stream-bench/Makefile
share/doc/mico/examples/services/stream-bench/bench
share/doc/mico/examples/services/stream-bench/req.idl
share/doc/mico/examples/services/stream-bench/req_client.cc
share/doc/mico/examples/services/stream-bench/req_server.cc
share/doc/mico/examples/services/stream-bench/stream_client.cc
share/doc/mico/examples/services/stream-bench/stream_server.cc
share/doc/mico/examples/services/stream-sound/Makefile
share/doc/mico/examples/services/stream-sound/client.cc
share/doc/mico/examples/services/stream-sound/server.cc
share/doc/mico/examples/services/stream-sound/sound.h
share/doc/mico/examples/services/trader/Makefile
share/doc/mico/examples/services/trader/demo.idl
share/doc/mico/examples/services/trader/main.cc
share/doc/mico/examples/services/trader/run
share/doc/mico/examples/shlib/Makefile
share/doc/mico/examples/shlib/client.cc
share/doc/mico/examples/shlib/hello
share/doc/mico/examples/shlib/hello.idl
share/doc/mico/examples/shlib/server.cc
share/doc/mico/examples/siegel/Makefile
share/doc/mico/examples/siegel/README
share/doc/mico/examples/siegel/central/DepotData.cc
share/doc/mico/examples/siegel/central/DepotData.h
share/doc/mico/examples/siegel/central/DepotImpl.cc
share/doc/mico/examples/siegel/central/DepotImpl.h
share/doc/mico/examples/siegel/central/Makefile
share/doc/mico/examples/siegel/central/TreeNode.h
share/doc/mico/examples/siegel/central/depot.dat
share/doc/mico/examples/siegel/central/depot_server.cc
share/doc/mico/examples/siegel/idl/Central.idl
share/doc/mico/examples/siegel/idl/Makefile
share/doc/mico/examples/siegel/idl/POS.idl
share/doc/mico/examples/siegel/idl/Store.idl
share/doc/mico/examples/siegel/pos/InputMediaImpl.cc
share/doc/mico/examples/siegel/pos/InputMediaImpl.h
share/doc/mico/examples/siegel/pos/Makefile
share/doc/mico/examples/siegel/pos/OutputMediaImpl.cc
share/doc/mico/examples/siegel/pos/OutputMediaImpl.h
share/doc/mico/examples/siegel/pos/POSTerminalImpl.cc
share/doc/mico/examples/siegel/pos/POSTerminalImpl.h
share/doc/mico/examples/siegel/pos/POS_Client.cc
share/doc/mico/examples/siegel/pos/POS_Server.cc
share/doc/mico/examples/siegel/primer_utils/Makefile
share/doc/mico/examples/siegel/primer_utils/NsPublisher.cc
share/doc/mico/examples/siegel/primer_utils/NsPublisher.h
share/doc/mico/examples/siegel/store/Makefile
share/doc/mico/examples/siegel/store/StoreAccessImpl.cc
share/doc/mico/examples/siegel/store/StoreAccessImpl.h
share/doc/mico/examples/siegel/store/StoreImpl.cc
share/doc/mico/examples/siegel/store/StoreImpl.h
share/doc/mico/examples/siegel/store/TaxImpl.cc
share/doc/mico/examples/siegel/store/TaxImpl.h
share/doc/mico/examples/siegel/store/store_server.cc
share/doc/mico/examples/ssl/Makefile
share/doc/mico/examples/ssl/cert.pem
share/doc/mico/examples/ssl/client.cc
share/doc/mico/examples/ssl/hello.idl
share/doc/mico/examples/ssl/key.pem
share/doc/mico/examples/ssl/server.cc
share/doc/mico/examples/ssl/ssl
share/doc/mico/manual.ps
%%SHARED%%
@dirrm share/doc/mico/examples/ssl
@dirrm share/doc/mico/examples/siegel/store
@dirrm share/doc/mico/examples/siegel/primer_utils
@dirrm share/doc/mico/examples/siegel/pos
@dirrm share/doc/mico/examples/siegel/idl
@dirrm share/doc/mico/examples/siegel/central
@dirrm share/doc/mico/examples/siegel
@dirrm share/doc/mico/examples/shlib
@dirrm share/doc/mico/examples/services/trader
@dirrm share/doc/mico/examples/services/stream-sound
@dirrm share/doc/mico/examples/services/stream-bench
@dirrm share/doc/mico/examples/services/relship
@dirrm share/doc/mico/examples/services/property-daemon
@dirrm share/doc/mico/examples/services/naming
@dirrm share/doc/mico/examples/services/events
@dirrm share/doc/mico/examples/services
@dirrm share/doc/mico/examples/redlich/Hello-4
@dirrm share/doc/mico/examples/redlich/Hello-3
@dirrm share/doc/mico/examples/redlich/Hello-2
@dirrm share/doc/mico/examples/redlich/Hello-1
@dirrm share/doc/mico/examples/redlich/Calc-4
@dirrm share/doc/mico/examples/redlich/Calc-3
@dirrm share/doc/mico/examples/redlich/Calc-2
@dirrm share/doc/mico/examples/redlich/Calc-1
@dirrm share/doc/mico/examples/redlich
@dirrm share/doc/mico/examples/random
@dirrm share/doc/mico/examples/poa/inherit
@dirrm share/doc/mico/examples/poa/hello-2
@dirrm share/doc/mico/examples/poa/hello-1
@dirrm share/doc/mico/examples/poa/account-3
@dirrm share/doc/mico/examples/poa/account-2
@dirrm share/doc/mico/examples/poa/account-1
@dirrm share/doc/mico/examples/poa
@dirrm share/doc/mico/examples/obv/tricky
@dirrm share/doc/mico/examples/obv/tree
@dirrm share/doc/mico/examples/obv/date
@dirrm share/doc/mico/examples/obv/custom
@dirrm share/doc/mico/examples/obv/abstract
@dirrm share/doc/mico/examples/obv
@dirrm share/doc/mico/examples/mcast
@dirrm share/doc/mico/examples/lifecycle
@dirrm share/doc/mico/examples/interop/visibroker
@dirrm share/doc/mico/examples/interop/orbix
@dirrm share/doc/mico/examples/interop/jdk
@dirrm share/doc/mico/examples/interop/jacorb
@dirrm share/doc/mico/examples/interop
@dirrm share/doc/mico/examples/interceptor
@dirrm share/doc/mico/examples/henning
@dirrm share/doc/mico/examples/generic
@dirrm share/doc/mico/examples/externalization
@dirrm share/doc/mico/examples/dynany
@dirrm share/doc/mico/examples/dispatcher/x11
@dirrm share/doc/mico/examples/dispatcher
@dirrm share/doc/mico/examples/codesets
@dirrm share/doc/mico/examples/boa/activate
@dirrm share/doc/mico/examples/boa/account4
@dirrm share/doc/mico/examples/boa/account3
@dirrm share/doc/mico/examples/boa/account2
@dirrm share/doc/mico/examples/boa/account
@dirrm share/doc/mico/examples/boa
@dirrm share/doc/mico/examples/bench
@dirrm share/doc/mico/examples
@dirrm share/doc/mico
@dirrm include/ministl
@dirrm include/mico