summaryrefslogtreecommitdiff
path: root/lang/moscow_ml/Makefile
diff options
context:
space:
mode:
authorChuck Robey <chuckr@FreeBSD.org>1996-07-28 02:44:11 +0000
committerChuck Robey <chuckr@FreeBSD.org>1996-07-28 02:44:11 +0000
commit5b2f4c2d0eea9adcda7b5e063f78b7ac5f016f81 (patch)
treeb9a13736207fa8de87a46c6acc08a64d763a6428 /lang/moscow_ml/Makefile
parentSubmitted by: chuckr (diff)
Submitted by: chuckr
New version of the sml programming language, based upon caml.
Notes
Notes: svn path=/head/; revision=3442
Diffstat (limited to 'lang/moscow_ml/Makefile')
-rw-r--r--lang/moscow_ml/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/lang/moscow_ml/Makefile b/lang/moscow_ml/Makefile
new file mode 100644
index 000000000000..89210c63ff00
--- /dev/null
+++ b/lang/moscow_ml/Makefile
@@ -0,0 +1,34 @@
+# New ports collection makefile for: moscow-ml
+# Version required: 1.4
+# Date created: 26 July 1996
+# Whom: chuckr
+#
+# $Id
+#
+
+DISTNAME= mos14src
+CATEGORIES+= lang
+PKGNAME= moscow_ml
+MASTER_SITES= ftp://ftp.dina.kvl.dk/pub/mosml/ \
+ ftp://ftp.csd.uu.se/pub/mirror/mosml/ \
+ ftp://ftp.dcs.ed.ac.uk/pub/ml/Moscow/
+MAINTAINER= chuckr@freefall.FreeBSD.org
+ALL_TARGET= world
+WRKSRC= ${WRKDIR}/mosml/src
+
+post-install:
+.if !defined(NOPORTDOCS)
+ mkdir -p ${PREFIX}/${PKGNAME}/doc
+ mkdir -p ${PREFIX}/${PKGNAME}/examples
+ for file in ${WRKDIR}/mosml/doc/*;do; \
+ install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/${PKGNAME}/doc;done
+ (cd ${WRKDIR}/mosml/examples; \
+ install -c -m 0444 -g bin -o bin README ${PREFIX}/${PKGNAME}/examples; \
+ for sdirs in manual mls helpsigs calc pretty lexyacc;do; \
+ mkdir -p ${PREFIX}/${PKGNAME}/examples/$${sdirs}; \
+ for file in $${sdirs}/*;do; \
+ install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/${PKGNAME}/examples/$${sdirs}; \
+ done; done;)
+.endif
+
+.include <bsd.port.mk>