From owner-cvs-all@FreeBSD.ORG Mon Aug 21 10:54:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B046B16A4DF; Mon, 21 Aug 2006 10:54:58 +0000 (UTC) (envelope-from krion@voodoo.bawue.com) Received: from voodoo.bawue.com (voodoo.bawue.com [212.9.161.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9BF443D4C; Mon, 21 Aug 2006 10:54:57 +0000 (GMT) (envelope-from krion@voodoo.bawue.com) Received: from krion by voodoo.bawue.com with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GF7Qw-0004FG-T3; Mon, 21 Aug 2006 12:55:06 +0200 Date: Mon, 21 Aug 2006 12:55:06 +0200 From: Kirill Ponomarew To: Ion-Mihai Tetcu Message-ID: <20060821105506.GG9699@voodoo.bawue.com> References: <200608200647.k7K6lqov073660@repoman.freebsd.org> <20060820064756.4741916A5D4@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060820064756.4741916A5D4@hub.freebsd.org> X-NIC-HDL: KP869-RIPE Keywords: 477273987 Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: [ports] cvs commit: ports/devel Makefile ports/devel/ocaml-pomap Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 10:54:58 -0000 On Sun, Aug 20, 2006 at 06:47:56AM +0000, Ion-Mihai Tetcu wrote: > itetcu 2006-08-20 06:47:52 UTC > > FreeBSD ports repository > > Modified files: > devel Makefile > Added files: > devel/ocaml-pomap Makefile distinfo pkg-descr > Log: > The Pomap-library implements an ADT that maintains maps of partially ordered > elements. Whereas a total order allows you to say whether some element is > lower, equal or greater than another one, partial orders also allow for a > "don-t know" case. > > Author: Markus Mottl > WWW: http://www.ocaml.info/home/ocaml_sources.html > > PR: ports/102116 > Submitted by: Stanislav Sedov > > Revision Changes Path > 1.2420 +1 -0 ports/devel/Makefile > 1.1 +67 -0 ports/devel/ocaml-pomap/Makefile (new) > 1.1 +3 -0 ports/devel/ocaml-pomap/distinfo (new) > 1.1 +7 -0 ports/devel/ocaml-pomap/pkg-descr (new) > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > > > Index: ports/devel/Makefile > diff -u ports/devel/Makefile:1.2419 ports/devel/Makefile:1.2420 > --- ports/devel/Makefile:1.2419 Fri Aug 18 09:39:46 2006 > +++ ports/devel/Makefile Sun Aug 20 06:47:51 2006 > @@ -705,6 +705,7 @@ > SUBDIR += ocaml-magic > SUBDIR += ocaml-ounit > SUBDIR += ocaml-pcre > + SUBDIR += ocaml-pomap > SUBDIR += ocaml-sdl > SUBDIR += ocaml-sem > SUBDIR += ocaml-sexplib > Index: ports/devel/ocaml-pomap/Makefile > diff -u /dev/null ports/devel/ocaml-pomap/Makefile:1.1 > --- /dev/null Sun Aug 20 06:47:56 2006 > +++ ports/devel/ocaml-pomap/Makefile Sun Aug 20 06:47:52 2006 > @@ -0,0 +1,67 @@ > +# New ports collection makefile for: pomap > +# Date created: 2006-08-15 > +# Whom: Stanislav Sedov > +# > +# $MBSDlabs$ > +# $FreeBSD$ > +# > + > +PORTNAME= pomap > +PORTVERSION= 2.9.7 > +CATEGORIES= devel > +MASTER_SITES= http://www.ocaml.info/ocaml_sources/ > +PKGNAMEPREFIX= ocaml- > + > +MAINTAINER= ssedov@mbsd.msk.ru > +COMMENT= OCaml library to maintain a list of partially ordered elements > + > +USE_BZIP2= yes > +USE_GMAKE= yes > +USE_OCAML= yes > +USE_OCAML_FINDLIB=yes > +USE_OCAML_WASH= yes > + > +DOCS= README > +DOCSDIR= ${TARGETDIR}/share/doc/ocaml/${PORTNAME} > +EXAMPLESDIR= ${TARGETDIR}/share/examples/ocaml/${PORTNAME} Shouldn't we stop committing TARGETDIR changes for now until all issues are fixed ? -Kirill