summaryrefslogtreecommitdiff
path: root/lang/mercury/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lang/mercury/Makefile')
-rw-r--r--lang/mercury/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/lang/mercury/Makefile b/lang/mercury/Makefile
new file mode 100644
index 00000000000..7b67e4b2173
--- /dev/null
+++ b/lang/mercury/Makefile
@@ -0,0 +1,37 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/05/15 21:09:44 jtb Exp $
+
+DISTNAME= mercury-compiler-0.10.1
+PKGNAME= mercury-0.10.1
+CATEGORIES= lang
+MASTER_SITES= ftp://ftp.mercury.cs.mu.oz.au/pub/mercury/ \
+ ${MASTER_SITE_SUNSITE:=devel/lang/mercury/}
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://www.cs.mu.oz.au/mercury/
+COMMENT= modern logic/functional programming language
+
+GNU_CONFIGURE= yes
+USE_GMAKE= yes
+
+INFO_FILES= mercury.info
+
+BOEHM_GC_DIR_DEFAULT= ${LOCALBASE}
+EVAL_PREFIX= BOEHM_GC_DIR=boehm-gc
+CONFIGURE_ENV+= BOEHM_GC_DIR=${BOEHM_GC_DIR}
+
+# We need this. Some of the scripts test CC and use special settings for gcc.
+CONFIGURE_ENV+= CC=gcc
+
+post-install:
+ ${INSTALL_DATA_DIR} ${PREFIX}/lib/mercury/lib/${MACHINE_ARCH}--${LOWER_OPSYS}
+ ${LN} -sf ${PREFIX}/lib/libgc.a \
+ ${PREFIX}/lib/mercury/lib/${MACHINE_ARCH}--${LOWER_OPSYS}/libgc.a
+ ${LN} -sf ${PREFIX}/include/gc.h ${PREFIX}/lib/mercury/inc/gc.h
+ ${FIND} ${WRKSRC} -type d -name "CVS" | xargs ${RM} -fr
+ ${FIND} ${WRKSRC} -type f -name ".cvsignore" | xargs ${RM} -f
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mercury
+ ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${WRKSRC}/samples
+ (cd ${WRKSRC}/samples; ${GTAR} cpf - . ) | \
+ (cd ${PREFIX}/share/examples/mercury; ${GTAR} xpf -)
+
+.include "../../mk/bsd.pkg.mk"