blob: 8a396f47f629579baad0d0e80bcf9830b334da28 (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# New ports collection makefile for: ghc
# Date created: 28 August 1999
# Whom: Simon Marlow <simonmar@microsoft.com>
#
# $FreeBSD$
PORTNAME= ghc
PORTVERSION= 6.4.1
PORTREVISION= 1
CATEGORIES= lang haskell
MASTER_SITES= http://www.haskell.org/ghc/dist/${PORTVERSION}/:source \
http://www.haskell.org/ghc/dist/${PORTVERSION}/FreeBSD/:boot
PATCH_SITES= http://www-i2.informatik.rwth-aachen.de/~stolz/FreeBSD/
PATCHFILES= patch-ghc-libraries_OpenAL.diff
ONLY_FOR_ARCHS= i386
SRC_DIST= ghc-${PORTVERSION}-src${EXTRACT_SUFX}:source
BOOT_DIST= ghc-${PORTVERSION}-i386-unknown-freebsd-boot${EXTRACT_SUFX}:boot
BOOT_DIST5= ghc-${PORTVERSION}-i386-unknown-freebsd5-boot${EXTRACT_SUFX}:boot
USE_BZIP2= yes
OPTIONS= PROFILE "Compile for profiling as well" on
.include <bsd.port.pre.mk>
DISTFILES= ${SRC_DIST}
.if ${OSVERSION} < 500000
DISTFILES+= ${BOOT_DIST}
.else
DISTFILES+= ${BOOT_DIST5}
.if ${OSVERSION} >= 600000
LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x
.endif
.endif
.if ${PERL_LEVEL} < 500600
IGNORE= requires newer version of perl
.endif
USE_AUTOTOOLS= autoconf:259:env
LIB_DEPENDS+= gmp.6:${PORTSDIR}/math/libgmp4 \
readline.5:${PORTSDIR}/devel/readline
MAINTAINER= simonmar@microsoft.com
COMMENT= A Compiler for the functional language Haskell
USE_PERL5= yes
USE_REINPLACE= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
.if defined(WITHOUT_X11)
CONFIGURE_ARGS+=--without-x --without-x11 --without-openal --without-hgl --without-opengl --without-glut
PLIST_SUB+= X11="@comment " OPENAL="@comment "
PKGNAMESUFFIX= -nox11
.else
LIB_DEPENDS+= glut.4:${PORTSDIR}/graphics/libglut \
openal.0:${PORTSDIR}/audio/openal
USE_GL= yes
PLIST_SUB+= X11="" OPENAL=""
CONFIGURE_ARGS+=--enable-openal
.endif
PLIST_SUB+= GHC_VERSION=${PORTVERSION}
.if defined(WITHOUT_PROFILE)
PLIST_SUB+= PROFILE="@comment "
.else
PLIST_SUB+= PROFILE=""
.endif
# This port builds by downloading a minimal binary distribution of GHC and
# using that to bootstrap.
BOOT_DIR= ${WRKDIR}/ghc-${PORTVERSION}-boot
BOOT_GHC= ${BOOT_DIR}/bin/i386-unknown-freebsd/ghc-${PORTVERSION}
CONFIGURE_ARGS+= --with-ghc=${BOOT_GHC} --with-gcc=${CC}
# specifying CONFIGURE_TARGET doesn't work for some reason.
CONFIGURE_TARGET=
# libgmp:
CONFIGURE_ENV+= CFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib
# override TMPDIR because /tmp often doesn't have enough space
# to build some of the larger libraries.
TMPDIR= ${WRKSRC}/tmp
MAKE_ENV+= TMPDIR=${TMPDIR}
# Just do a stage1 build
ALL_TARGET= stage1
MAKE_ENV += stage=1
.if defined(WITHOUT_PROFILE)
post-extract:
@${ECHO} >>${WRKSRC}/mk/build.mk GhcLibWays=
.endif
post-patch:
@${REINPLACE_CMD} s+%%LOCALBASE%%+${LOCALBASE}+ \
${WRKSRC}/ghc/rts/package.conf.in
pre-configure:
@(cd ${WRKSRC}/libraries/OpenAL && ${AUTOCONF})
@(cd ${BOOT_DIR} && ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS})
@(cd ${BOOT_DIR} && ${MAKE} in-place)
post-configure:
.if defined(WITHOUT_X11)
.for d in GLUT HGL OpenGL X11
${REINPLACE_CMD} -e 's/^\(.*BUILD_PACKAGE\)=yes/\1=no/' ${WRKSRC}/libraries/${d}/config.mk
.endfor
.endif
pre-build:
@${MKDIR} ${TMPDIR}
.include <bsd.port.post.mk>
|