diff options
Diffstat (limited to 'lang/ohugs/Makefile')
-rw-r--r-- | lang/ohugs/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lang/ohugs/Makefile b/lang/ohugs/Makefile new file mode 100644 index 0000000..d389ca1 --- /dev/null +++ b/lang/ohugs/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: ohugs +# Date created: 03.03.03 +# Whom: Steffen Mazanek <steffen.mazanek@unibw-muenchen.de> +# $FreeBSD$ +# + +PORTNAME= ohugs +PORTVERSION= 0.5 +CATEGORIES= lang haskell +MASTER_SITES= http://www.math.chalmers.se/~nordland/ohugs/ +DISTNAME= ${PORTNAME}-${PORTVERSION}.src + +MAINTAINER= steffen.mazanek@unibw-muenchen.de +COMMENT= Interpreter for Haskell with object-oriented features + +.if !defined(WITHOUT_X11) +LIB_DEPENDS= tix4182:${PORTSDIR}/x11-toolkits/tix +.endif + +WRKSRC= ${WRKDIR}/${DISTNAME:S/.src//} +USE_BISON= yes + +post-patch: +.if !defined(WITHOUT_X11) + cd ${WRKDIR} && ${PATCH} < ${FILESDIR}/extra-patch-graphics +.else + cd ${WRKDIR} && ${PATCH} < ${FILESDIR}/extra-patch-text +.endif + +.include <bsd.port.mk> |