diff options
author | Steve Price <steve@FreeBSD.org> | 2000-07-10 03:37:42 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-07-10 03:37:42 +0000 |
commit | d7377ebf7258e9ae5d53165a9e1fd3860233db3f (patch) | |
tree | 66484252a4df57a0130ab26e9fb04d7d91939e28 /lang/mozart/Makefile | |
parent | Adding ja-kebook version 0.3.4. (diff) |
Adding mozart version 1.1.0.20000207.
A concurrent, object-oriented, distributed language with constraint-based
inference.
PR: 19476
Submitted by: Mathias Picker <mathiasp@virtual-earth.de>
Notes
Notes:
svn path=/head/; revision=30413
Diffstat (limited to 'lang/mozart/Makefile')
-rw-r--r-- | lang/mozart/Makefile | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/lang/mozart/Makefile b/lang/mozart/Makefile new file mode 100644 index 000000000000..19da1086fc54 --- /dev/null +++ b/lang/mozart/Makefile @@ -0,0 +1,51 @@ +# New ports collection makefile for: mozart +# Date created: 23. June 2000 +# Whom: Mathias Picker <mathiasp@virtual-earth.de> +# +# $FreeBSD$ +# + +PORTNAME= mozart +PORTVERSION= 1.1.0.20000207 +CATEGORIES= lang tk80 +MASTER_SITES= ftp://ftp.mozart-oz.org/pub/mozart/${PORTVERSION}/tar/ \ + ftp://ftp.sics.se/pub/mozart/${PORTVERSION}/tar/ +EXTRACT_SUFX= -src.tar.gz + +MAINTAINER= mathiasp@virtual-earth.de + +BUILD_DEPENDS= xemacs:${PORTSDIR}/editors/xemacs21 +LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm \ + tk80.1:${PORTSDIR}/x11-toolkits/tk80 + +SCRIPTS_ENV= LN=${LN} PERL=${PERL} +ALL_TARGET= +MAKE_ARGS= PREFIX=${PREFIX}/lib/oz +USE_BISON= yes +USE_GMAKE= yes +HAS_CONFIGURE= yes +USE_XLIB= yes +# magic wand: set INSTALL to some absurd value, or else +# mozart's configure will not find the right install +# when configuring as root. +CONFIGURE_ENV= INSTALL=${CHMOD} +CONFIGURE_ARGS= --prefix=${PREFIX}/lib/oz --disable-doc \ +--with-inc-dir=${LOCALBASE}/include/tcl8.0,${LOCALBASE}/include/tk8.0 \ +--with-lib-dir=${LOCALBASE}/lib --with-tcl-lib=${LOCALBASE}/lib \ +--with-tk-lib=${LOCALBASE}/lib + +pre-extract: + @${ECHO} + @${ECHO} ----------------------------------------------------- + @${ECHO} + @${ECHO} If you have problems building mozart, + @${ECHO} deinstall any old version of mozart + @${ECHO} and unset OZHOME + @${ECHO} + @${ECHO} ---------------------------------------------------- + @${ECHO} + +post-install: + @cat ${PKGDIR}/MESSAGE + +.include <bsd.port.mk> |