From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jun 23 05:07:57 2003 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB24B37B401; Mon, 23 Jun 2003 05:07:57 -0700 (PDT) Received: from mail.ciam.ru (main.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21DE243FAF; Mon, 23 Jun 2003 05:07:56 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from exim by mail.ciam.ru with drweb-scanned (Exim 4.20) id 19UQ6z-0003KV-Uv; Mon, 23 Jun 2003 16:07:53 +0400 Received: from sem.ciam.ru ([192.168.45.10] helo=ciam.ru) by mail.ciam.ru with esmtp (Exim 4.20) id 19UQ6z-0003KL-AM; Mon, 23 Jun 2003 16:07:53 +0400 Message-ID: <3EF6EDA1.20106@ciam.ru> Date: Mon, 23 Jun 2003 16:08:01 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; ru-RU; rv:1.3) Gecko/20030309 X-Accept-Language: ru-ru, ru MIME-Version: 1.0 To: Erwin Lansing References: <200306230843.h5N8hISG048544@freefall.freebsd.org> In-Reply-To: <200306230843.h5N8hISG048544@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------070204010801070902010908" cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/53623: devel/mico: change obsoleted port description and comment X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2003 12:07:58 -0000 This is a multi-part message in MIME format. --------------070204010801070902010908 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit !!! I'v broke mico build on -STABLE. Sorry. Fix is included in this patch. Erwin Lansing wrote: > Could you have a look at the following portlint warnings: > > WARN: /usr/home/erwin/tmp/FreeBSD/ports/devel/mico/pkg-descr exceeds 24 lines, make it shorter if possible.(currently 42 lines) I'v decreased message to 30 lines. Only sufficient features left. > WARN: use ".if !defined(NOPORTDOCS)" to wrap installation of files into /usr/local/share/doc. It's not quite trivial. May be I'll take a maintainreship on this port and make this and more? ---- Sem. --------------070204010801070902010908 Content-Type: text/plain; name="mico.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="mico.patch" diff -ruN mico.orig/Makefile mico/Makefile --- mico.orig/Makefile Mon Jun 23 14:36:50 2003 +++ mico/Makefile Mon Jun 23 15:46:44 2003 @@ -11,7 +11,7 @@ MASTER_SITES= http://www.mico.org/ MAINTAINER= ports@FreeBSD.org -COMMENT= A CORBA 2.0 implementation which goal is freely available +COMMENT= An Open Source CORBA 2.3 implementation WRKSRC= ${WRKDIR}/mico INSTALLS_SHLIB= yes diff -ruN mico.orig/files/patch-as mico/files/patch-as --- mico.orig/files/patch-as Mon Jun 23 14:36:50 2003 +++ mico/files/patch-as Mon Jun 23 15:25:07 2003 @@ -1,9 +1,10 @@ --- include/mico/os-math.h.orig Mon May 26 14:55:46 2003 -+++ include/mico/os-math.h Sun Jun 22 13:16:51 2003 -@@ -275,6 +275,18 @@ ++++ include/mico/os-math.h Mon Jun 23 15:22:04 2003 +@@ -275,6 +275,20 @@ }; #else // neither _WIN32 nor _POCKET_PC ++#if (defined(__FreeBSD__) && __FreeBSD_version >= 500035) +#ifndef fpclassify +#define fpclassify(x) \ + ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \ @@ -15,6 +16,7 @@ +#endif +#ifndef isnan +#define isnan(x) (fpclassify(x) == FP_NAN) ++#endif +#endif #include diff -ruN mico.orig/pkg-descr mico/pkg-descr --- mico.orig/pkg-descr Mon Jun 23 14:36:50 2003 +++ mico/pkg-descr Mon Jun 23 15:47:32 2003 @@ -1,4 +1,30 @@ -a CORBA 2.0 implementation which goal is freely available +The acronym MICO expands to MICO Is CORBA. The intention of this project +is to provide a freely available and fully compliant implementation of +the latest CORBA standard. -WWW: http://diamant.vsb.cs.uni-frankfurt.de/~mico/ - http://www.mico.org +Here is some of MICO features: + * IDL to C++ mapping + * Dynamic Invocation Interface (DII) + * Dynamic Skeleton Interface (DSI) + * graphical Interface Repository browser + * Interface Repository (IR) + * IIOP as native protocol (ORB prepared for multiprotocol support) + * Portable Object Adapter (POA) + * Objects by Value (OBV) + * CORBA Components (CCM) + * Dynamic Any + * Portable Interceptors (PI) + * Support for secure communication and authentication using SSL + * Support for nested method invocations + * Any offers an interface for inserting and extracting constructed + types that were not known at compile time + * CORBA Services: + o Interoperable Naming service + o Trading service + o Event service + o Relationship service + o Property service + o Time service + o Security service + +WWW: http://www.mico.org --------------070204010801070902010908--