Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Aug 2006 00:11:47 +0600 (YEKST)
From:      Stanislav Sedov <ssedov@mbsd.msk.ru>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/102116: [NEW PORT] devel/ocaml-pomap: OCaml library to maintain a list of partially ordered elements
Message-ID:  <20060815181147.AAAE712C4A@fonon.realnet>
Resent-Message-ID: <200608152020.k7FKKNnC064030@freefall.freebsd.org>

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

>Number:         102116
>Category:       ports
>Synopsis:       [NEW PORT] devel/ocaml-pomap: OCaml library to maintain a list of partially ordered elements
>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:   Tue Aug 15 20:20:22 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Stanislav Sedov
>Release:        FreeBSD 7.0-CURRENT i386
>Organization:
MBSD labs, Inc.
>Environment:
System: FreeBSD fonon.realnet 7.0-CURRENT FreeBSD 7.0-CURRENT #1: Wed Aug  2 21:44:37 MSD
>Description:
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 <markus.mottl@gmail.com>
WWW:	http://www.ocaml.info/home/ocaml_sources.html

>How-To-Repeat:
>Fix:

--- ocaml-pomap-2.9.7.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:
#
#	ocaml-pomap
#	ocaml-pomap/pkg-descr
#	ocaml-pomap/Makefile
#	ocaml-pomap/distinfo
#
echo c - ocaml-pomap
mkdir -p ocaml-pomap > /dev/null 2>&1
echo x - ocaml-pomap/pkg-descr
sed 's/^X//' >ocaml-pomap/pkg-descr << 'END-of-ocaml-pomap/pkg-descr'
XThe Pomap-library implements an ADT that maintains maps of partially ordered
Xelements. Whereas a total order allows you to say whether some element is
Xlower, equal or greater than another one, partial orders also allow for a
X"don-t know" case.
X
XAuthor:	Markus Mottl <markus.mottl@gmail.com>
XWWW:	http://www.ocaml.info/home/ocaml_sources.html
END-of-ocaml-pomap/pkg-descr
echo x - ocaml-pomap/Makefile
sed 's/^X//' >ocaml-pomap/Makefile << 'END-of-ocaml-pomap/Makefile'
X# New ports collection makefile for:	pomap
X# Date created:		2006-08-15
X# Whom:			Stanislav Sedov <ssedov@mbsd.msk.ru>
X#
X# $MBSDlabs$
X# $FreeBSD$
X#
X
XPORTNAME=	pomap
XPORTVERSION=	2.9.7
XCATEGORIES=	devel
XMASTER_SITES=	http://www.ocaml.info/ocaml_sources/
XPKGNAMEPREFIX=	ocaml-
X
XMAINTAINER=	ssedov@mbsd.msk.ru
XCOMMENT=	OCaml library to maintain a list of partially ordered elements
X
XUSE_BZIP2=	yes
XUSE_GMAKE=	yes
XUSE_OCAML=	yes
XUSE_OCAML_FINDLIB=yes
XUSE_OCAML_WASH=	yes
X
XDOCS=		README
XDOCSDIR=	${TARGETDIR}/share/doc/ocaml/${PORTNAME}
XEXAMPLESDIR=	${TARGETDIR}/share/examples/ocaml/${PORTNAME}
X
X# XXX: exists untill it will be committed to bsd.port.mk
XCOPYTREE_SHARE=	${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \
X		2>&1) && \
X		${CHOWN} -R ${SHAREOWN}:${SHAREGRP} $$1 && \
X		${FIND} $$1/ -type d -exec ${CHMOD} 755 {} \; && \
X		${FIND} $$1/ -type f -exec ${CHMOD} ${SHAREMODE} {} \;' --
X
X.include <bsd.port.pre.mk>
X.include "${PORTSDIR}/lang/ocaml/bsd.ocaml.mk"
X
Xpost-extract:
X# For nonstandard prefixes
X.if !exists(${OCAMLFIND_DESTDIR})
X	${MKDIR} ${OCAMLFIND_DESTDIR}
X.endif
X
Xpost-install:
X	@${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \
X		${SED} "s,^${TARGETDIR}/,," >> ${TMPPLIST}
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${DOCSDIR}
X	${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
X	@${MKDIR} ${EXAMPLESDIR}
X	@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}/)
X	@${FIND} ${EXAMPLESDIR}/ ! -type d | \
X		${SED} 's,^${TARGETDIR}/,,' >> ${TMPPLIST}
X	@${FIND} ${EXAMPLESDIR}/ -type d | ${SORT} -r | \
X		${SED} 's,^${TARGETDIR}/,@dirrm ,' >> ${TMPPLIST}
X	@${FIND} ${DOCSDIR}/ ! -type d | \
X		${SED} 's,^${TARGETDIR}/,,' >> ${TMPPLIST}
X	@${FIND} ${DOCSDIR}/ -type d | ${SORT} -r | \
X		${SED} 's,^${TARGETDIR}/,@dirrm ,' >> ${TMPPLIST}
X# XXX: temporary workaround for non-standard PREFIX
X	@${ECHO_CMD} "@unexec rmdir %D/share/doc/ocaml 2>/dev/null || true" \
X		>> ${TMPPLIST}
X	@${ECHO_CMD} "@unexec rmdir %D/share/examples/ocaml 2>/dev/null||true" \
X		>> ${TMPPLIST}
X.endif
X
X.include <bsd.port.post.mk>
END-of-ocaml-pomap/Makefile
echo x - ocaml-pomap/distinfo
sed 's/^X//' >ocaml-pomap/distinfo << 'END-of-ocaml-pomap/distinfo'
XMD5 (pomap-2.9.7.tar.bz2) = b765bf2a3b09a89a34957f8566165f8f
XSHA256 (pomap-2.9.7.tar.bz2) = e62c8cf7136428013e4e8a91f62597e0b423c07e4ae7c999ac5910ec45c7c471
XSIZE (pomap-2.9.7.tar.bz2) = 36455
END-of-ocaml-pomap/distinfo
exit
--- ocaml-pomap-2.9.7.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?20060815181147.AAAE712C4A>