Stub out camlp4, which has been included in ocaml.
This commit is contained in:
parent
3e98d5ff11
commit
d5a02e2b01
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.54 2002/06/30 17:50:28 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.55 2002/08/25 20:55:49 naddy Exp $
|
||||
# $FreeBSD: Makefile,v 1.89 1997/11/24 09:24:06 tg Exp $
|
||||
#
|
||||
|
||||
@ -7,7 +7,6 @@
|
||||
# SUBDIR += Sather
|
||||
# SUBDIR += atlast
|
||||
# SUBDIR += bwbasic
|
||||
SUBDIR += camlp4
|
||||
# SUBDIR += cim
|
||||
SUBDIR += clisp
|
||||
# SUBDIR += cmucl
|
||||
|
@ -1,48 +1,14 @@
|
||||
# $OpenBSD: Makefile,v 1.19 2002/03/21 21:09:17 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.20 2002/08/25 20:55:49 naddy Exp $
|
||||
|
||||
COMMENT= "Pre-Processor-Pretty-Printer for Objective Caml"
|
||||
COMMENT-doc= "Camlp4 documentation"
|
||||
COMMENT= "has been included in ocaml"
|
||||
|
||||
VERSION= 3.02
|
||||
DISTNAME= camlp4-${VERSION}
|
||||
PKGNAME= camlp4-${VERSION}
|
||||
PKGNAME-doc= camlp4-doc-${VERSION}
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
||||
${DISTNAME}-refman.html${EXTRACT_SUFX} \
|
||||
${DISTNAME}-tutorial.html${EXTRACT_SUFX}
|
||||
PKGNAME= camlp4
|
||||
CATEGORIES= lang
|
||||
NEED_VERSION= 1.515
|
||||
MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/cristal/camlp4/ \
|
||||
http://cristal.inria.fr/~ddr/Camlp4/ftp/
|
||||
IGNORE= "has been included in ocaml"
|
||||
|
||||
HOMEPAGE= http://caml.inria.fr/camlp4/
|
||||
|
||||
MAINTAINER= Angelos D. Keromytis <angelos@openbsd.org>
|
||||
|
||||
BUILD_DEPENDS= ::lang/ocaml
|
||||
RUN_DEPENDS= ::lang/ocaml
|
||||
|
||||
# License: BSD
|
||||
PERMIT_PACKAGE_CDROM= No
|
||||
PERMIT_PACKAGE_FTP= No
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MULTI_PACKAGES= -doc
|
||||
SUBPACKAGE?=
|
||||
|
||||
do-configure:
|
||||
@sed -e s,@PREFIX@,${PREFIX}, <${FILESDIR}/Makefile.cnf.template >${WRKSRC}/config/Makefile.cnf
|
||||
@cd ${WRKSRC}/config && echo ""| cat Makefile.tpl - Makefile.cnf >>Makefile
|
||||
|
||||
USE_GMAKE= Yes
|
||||
ALL_TARGET= world bootstrap opt
|
||||
|
||||
WRKDIST= ${WRKDIR}/camlp4-${VERSION}
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/camlp4
|
||||
cd ${PREFIX}/share/doc/camlp4 && pax -s /${DISTNAME}-refman.html/refman/ -rzf ${DISTDIR}/${DISTNAME}-refman.html${EXTRACT_SUFX}
|
||||
cd ${PREFIX}/share/doc/camlp4 && pax -s /${DISTNAME}-tutorial.html/tutorial/ -rzf ${DISTDIR}/${DISTNAME}-tutorial.html${EXTRACT_SUFX}
|
||||
PERMIT_PACKAGE_CDROM=
|
||||
PERMIT_PACKAGE_FTP=
|
||||
PERMIT_DISTFILES_CDROM=
|
||||
PERMIT_DISTFILES_FTP=
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,9 +0,0 @@
|
||||
MD5 (camlp4-3.02-refman.html.tar.gz) = d30e06c1e84a4b341ce7770d8fe483d4
|
||||
MD5 (camlp4-3.02-tutorial.html.tar.gz) = 188dbc170f0b43e3b38f9a894b070a6d
|
||||
MD5 (camlp4-3.02.tar.gz) = aa4e733599ed67acea48e3a1a659c383
|
||||
RMD160 (camlp4-3.02-refman.html.tar.gz) = d22aeb2d7e49ad73b266a248b8a68e00af2eae3e
|
||||
RMD160 (camlp4-3.02-tutorial.html.tar.gz) = 890903cba00a78b439a4f6ff73ea6a702710ac16
|
||||
RMD160 (camlp4-3.02.tar.gz) = 8c8a069a1c4582d0b209342bfa094e38b9a2ec9a
|
||||
SHA1 (camlp4-3.02-refman.html.tar.gz) = 041a08231d6cd3a9cb4c111c693874f94d4708a1
|
||||
SHA1 (camlp4-3.02-tutorial.html.tar.gz) = fb106883d381717920eebe412ae433a46072ef25
|
||||
SHA1 (camlp4-3.02.tar.gz) = c04ddabbc2bf3136832625ff732334a89c452fa9
|
@ -1,6 +0,0 @@
|
||||
OTOP=../ocaml_stuff
|
||||
OPT=
|
||||
OLIBDIR=$(DESTDIR)@PREFIX@/lib/ocaml
|
||||
BINDIR=$(DESTDIR)@PREFIX@/bin
|
||||
LIBDIR=$(DESTDIR)@PREFIX@/lib/camlp4
|
||||
MANDIR=$(DESTDIR)@PREFIX@/man/man1
|
@ -1,7 +0,0 @@
|
||||
Camlp4 is a Pre-Processor-Pretty-Printer for Objective Caml.
|
||||
It offers tools for syntax (grammars) and the ability to modify
|
||||
the concrete syntax of the language (quotations, syntax extensions).
|
||||
Camlp4 can parse normal Ocaml concrete syntax or any other
|
||||
user-definable syntax.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
@ -1,3 +0,0 @@
|
||||
Camlp4 documentation, refman.html and tutorial.html.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
@ -1,83 +0,0 @@
|
||||
@comment $OpenBSD: PLIST,v 1.4 2001/09/11 12:16:32 heko Exp $
|
||||
bin/camlp4
|
||||
bin/camlp4o
|
||||
bin/camlp4r
|
||||
bin/mkcamlp4
|
||||
bin/ocpp
|
||||
bin/odyl
|
||||
lib/camlp4/ast2pt.cmi
|
||||
lib/camlp4/camlp4.cma
|
||||
lib/camlp4/camlp4_top.cma
|
||||
lib/camlp4/camlp4o.cma
|
||||
lib/camlp4/camlp4r.cma
|
||||
lib/camlp4/crc.cmo
|
||||
lib/camlp4/extfun.cmi
|
||||
lib/camlp4/extfun.cmx
|
||||
lib/camlp4/extfun.mli
|
||||
lib/camlp4/fstream.cmi
|
||||
lib/camlp4/fstream.cmx
|
||||
lib/camlp4/fstream.mli
|
||||
lib/camlp4/gramext.cmi
|
||||
lib/camlp4/gramext.cmx
|
||||
lib/camlp4/gramext.mli
|
||||
lib/camlp4/gramlib.a
|
||||
lib/camlp4/gramlib.cma
|
||||
lib/camlp4/gramlib.cmxa
|
||||
lib/camlp4/grammar.cmi
|
||||
lib/camlp4/grammar.cmx
|
||||
lib/camlp4/grammar.mli
|
||||
lib/camlp4/lib.sml
|
||||
lib/camlp4/mLast.cmi
|
||||
lib/camlp4/mLast.mli
|
||||
lib/camlp4/ocpp.cmo
|
||||
lib/camlp4/odyl.cma
|
||||
lib/camlp4/odyl.cmo
|
||||
lib/camlp4/pa_extend.cmo
|
||||
lib/camlp4/pa_extend_m.cmo
|
||||
lib/camlp4/pa_extfun.cmo
|
||||
lib/camlp4/pa_format.cmo
|
||||
lib/camlp4/pa_fstream.cmo
|
||||
lib/camlp4/pa_ifdef.cmi
|
||||
lib/camlp4/pa_ifdef.cmo
|
||||
lib/camlp4/pa_lisp.cmo
|
||||
lib/camlp4/pa_o.cmi
|
||||
lib/camlp4/pa_o.cmo
|
||||
lib/camlp4/pa_olabl.cmo
|
||||
lib/camlp4/pa_oop.cmo
|
||||
lib/camlp4/pa_op.cmo
|
||||
lib/camlp4/pa_r.cmo
|
||||
lib/camlp4/pa_rp.cmo
|
||||
lib/camlp4/pa_ru.cmo
|
||||
lib/camlp4/pa_sml.cmo
|
||||
lib/camlp4/pcaml.cmi
|
||||
lib/camlp4/pcaml.mli
|
||||
lib/camlp4/plexer.cmi
|
||||
lib/camlp4/plexer.cmx
|
||||
lib/camlp4/plexer.mli
|
||||
lib/camlp4/pr_depend.cmo
|
||||
lib/camlp4/pr_dump.cmo
|
||||
lib/camlp4/pr_extend.cmo
|
||||
lib/camlp4/pr_extfun.cmo
|
||||
lib/camlp4/pr_null.cmo
|
||||
lib/camlp4/pr_o.cmo
|
||||
lib/camlp4/pr_op.cmo
|
||||
lib/camlp4/pr_r.cmo
|
||||
lib/camlp4/pr_rp.cmo
|
||||
lib/camlp4/q_MLast.cmo
|
||||
lib/camlp4/q_phony.cmo
|
||||
lib/camlp4/quotation.cmi
|
||||
lib/camlp4/quotation.mli
|
||||
lib/camlp4/spretty.cmi
|
||||
lib/camlp4/spretty.mli
|
||||
lib/camlp4/stdpp.cmi
|
||||
lib/camlp4/stdpp.cmx
|
||||
lib/camlp4/stdpp.mli
|
||||
lib/camlp4/token.cmi
|
||||
lib/camlp4/token.cmx
|
||||
lib/camlp4/token.mli
|
||||
man/man1/camlp4.1
|
||||
man/man1/camlp4o.1
|
||||
man/man1/camlp4r.1
|
||||
man/man1/mkcamlp4.1
|
||||
man/man1/ocpp.1
|
||||
@dirrm lib/camlp4
|
@ -1,28 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-doc,v 1.1 2001/09/11 12:16:32 heko Exp $
|
||||
share/doc/camlp4/refman/contents_motif.gif
|
||||
share/doc/camlp4/refman/index.html
|
||||
share/doc/camlp4/refman/manual001.html
|
||||
share/doc/camlp4/refman/manual002.html
|
||||
share/doc/camlp4/refman/manual003.html
|
||||
share/doc/camlp4/refman/manual004.html
|
||||
share/doc/camlp4/refman/manual005.html
|
||||
share/doc/camlp4/refman/manual006.html
|
||||
share/doc/camlp4/refman/manual007.html
|
||||
share/doc/camlp4/refman/manual008.html
|
||||
share/doc/camlp4/refman/manual009.html
|
||||
share/doc/camlp4/refman/next_motif.gif
|
||||
share/doc/camlp4/refman/previous_motif.gif
|
||||
share/doc/camlp4/tutorial/contents_motif.gif
|
||||
share/doc/camlp4/tutorial/index.html
|
||||
share/doc/camlp4/tutorial/next_motif.gif
|
||||
share/doc/camlp4/tutorial/previous_motif.gif
|
||||
share/doc/camlp4/tutorial/tutorial001.html
|
||||
share/doc/camlp4/tutorial/tutorial002.html
|
||||
share/doc/camlp4/tutorial/tutorial003.html
|
||||
share/doc/camlp4/tutorial/tutorial004.html
|
||||
share/doc/camlp4/tutorial/tutorial005.html
|
||||
share/doc/camlp4/tutorial/tutorial006.html
|
||||
share/doc/camlp4/tutorial/tutorial007.html
|
||||
@dirrm share/doc/camlp4/tutorial
|
||||
@dirrm share/doc/camlp4/refman
|
||||
@dirrm share/doc/camlp4
|
Loading…
Reference in New Issue
Block a user