summaryrefslogtreecommitdiff
path: root/devel/hs-hat/Makefile
blob: d02afcca7f69af2e0173c6714f2b64ae16d342ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# 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
PORTREVISION=	1
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_SIZE=	yes
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-5.04.3:${PORTSDIR}/lang/ghc5
RUN_DEPENDS+=	ghc-5.04.3:${PORTSDIR}/lang/ghc5
.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>