92 lines
2.1 KiB
Makefile
92 lines
2.1 KiB
Makefile
# New ports collection makefile for: hat
|
|
# Date created: 16 June 2002
|
|
# Whom: Oliver Braun <obraun@informatik.unibw-muenchen.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hat
|
|
PORTVERSION= 2.02
|
|
CATEGORIES= devel haskell
|
|
MASTER_SITES= ftp://ftp.cs.york.ac.uk/pub/haskell/${PORTNAME}/
|
|
PKGNAMEPREFIX= hs-
|
|
|
|
MAINTAINER= obraun@FreeBSD.org
|
|
COMMENT= A source-level tracer for Haskell 98
|
|
|
|
USE_GMAKE= yes
|
|
HAS_CONFIGURE= yes
|
|
USE_REINPLACE= yes
|
|
USE_GNOME= glib12
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_NHC98) && ${OSVERSION} >= 500000
|
|
BROKEN= "does not build with nhc98 on this platform"
|
|
.endif
|
|
|
|
.if defined(WITH_NHC98)
|
|
BUILD_DEPENDS= nhc98:${PORTSDIR}/lang/nhc98
|
|
RUN_DEPENDS= nhc98:${PORTSDIR}/lang/nhc98
|
|
.else
|
|
BUILD_DEPENDS= hmake:${PORTSDIR}/devel/hs-hmake \
|
|
ghc:${PORTSDIR}/lang/ghc
|
|
RUN_DEPENDS+= ghc:${PORTSDIR}/lang/ghc
|
|
.endif
|
|
|
|
ALL_TARGET= hat
|
|
.if defined(WITH_NHC98)
|
|
ALL_TARGET+= hat-lib-nhc
|
|
.else
|
|
ALL_TARGET+= hat-lib-ghc
|
|
.endif
|
|
|
|
.if defined(WITH_NHC98)
|
|
PLIST_SUB+= NHC98=""
|
|
PLIST_SUB+= GHC="@comment "
|
|
.else
|
|
PLIST_SUB+= NHC98="@comment "
|
|
GHC_VERSION= `${LOCALBASE}/bin/ghc --numeric-version`
|
|
PLIST_SUB+= GHC=""
|
|
PLIST_SUB+= GHC_VERSION="${GHC_VERSION}"
|
|
.endif
|
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --libdir=${PREFIX}/lib
|
|
.if defined(WITH_NHC98)
|
|
CONFIGURE_ARGS+= --buildwith=nhc98
|
|
.else
|
|
CONFIGURE_ARGS+= --buildwith=ghc
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
CONFIGURE_ARGS+= --docdir=${PREFIX}/share/doc/hat +docs
|
|
.endif
|
|
|
|
MAN1= hat-detect.1 hat-observe.1 hat-stack.1 hat-trail.1
|
|
|
|
pre-everything::
|
|
@${ECHO_CMD} ""
|
|
.if !defined(WITH_NHC98)
|
|
@${ECHO_CMD} " HAT will be built and installed with ghc."
|
|
@${ECHO_CMD} " Define WITH_NHC98 to install with nhc98."
|
|
.else
|
|
@${ECHO_CMD} " HAT will be built and installed with nhc98."
|
|
.endif
|
|
@${ECHO_CMD} ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|glib-config|${GLIB_CONFIG}|" \
|
|
${WRKSRC}/configure ${WRKSRC}/src/hattools/Makefile
|
|
|
|
post-install:
|
|
.if !defined(WITH_NHC98)
|
|
@${INSTALL_DATA} ${WRKSRC}/lib/ix86-FreeBSD/hatlib/ghc/hat-package.conf \
|
|
${PREFIX}/lib/ix86-FreeBSD
|
|
@${RM} -f ${PREFIX}/lib/ghc-${GHC_VERSION}/package.conf.old
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${RM} -rf ${PREFIX}/share/doc/hat/CVS
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|