mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# 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
|
|
PORTREVISION= 3
|
|
CATEGORIES= lang haskell
|
|
MASTER_SITES= http://www.math.chalmers.se/~nordland/ohugs/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Interpreter for Haskell with object-oriented features
|
|
|
|
LIB_DEPENDS= readline.5:${PORTSDIR}/devel/readline
|
|
.if !defined(WITHOUT_X11)
|
|
LIB_DEPENDS+= tix8184:${PORTSDIR}/x11-toolkits/tix
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/.src//}
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
USE_BISON= yes
|
|
LDFLAGS+= -lm -lreadline -ltermcap
|
|
.if !defined(WITHOUT_X11)
|
|
CFLAGS+= -I${LOCALBASE}/include/tk8.4 -I${LOCALBASE}/include/tcl8.4 -I${LOCALBASE}/include -I${X11BASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -ltk84 -ltcl84 -ltix8184
|
|
.endif
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
|
|
INSTBIN=${PREFIX}/bin INSTLIB=${PREFIX}/lib/ohugs
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
.if defined(WITHOUT_X11)
|
|
@${PATCH} ${PATCH_ARGS} < ${FILESDIR}/extra-patch-src::prelude.h
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|