1 # $NetBSD: Makefile,v 1.42 2008/07/07 14:58:00 kristerw Exp $
3 DISTNAME= ghc-${VERSION}
6 MASTER_SITES= http://www.haskell.org/ghc/dist/${VERSION}/
7 MAINTAINER= kristerw@NetBSD.org
8 HOMEPAGE= http://www.haskell.org/ghc/
9 COMMENT= Compiler for the functional language Haskell
12 DISTFILES= ${DISTNAME}-src.tar.bz2
13 DISTFILES+= ${DISTNAME}-boot-i386-unknown-freebsd.tar.bz2
14 DISTFILES+= ${DISTNAME}-boot-i386-unknown-netbsd.tar.bz2
15 DISTFILES+= ${DISTNAME}-boot-powerpc-apple-darwin.tar.bz2
18 SITES.${DISTNAME}-boot-i386-unknown-netbsd.tar.bz2 = http://static.cielonegro.org/archive/
19 SITES.${DISTNAME}-boot-i386-unknown-freebsd.tar.bz2 = http://static.cielonegro.org/archive/
20 SITES.${DISTNAME}-boot-powerpc-apple-darwin.tar.bz2 = http://static.cielonegro.org/archive/
22 PKG_DESTDIR_SUPPORT= user-destdir
24 .include "../../mk/bsd.prefs.mk"
26 # Unregisterised HC packages are architecture dependent. We have to
27 # create more HC packages to support more architectures. Note that
28 # these packages are built with integer-simple, not integer-gmp, to
29 # reduce some complexity by not depending on the GMP. The resulting
30 # registerised GHC uses integer-gmp so this won't be a problem.
32 # If you want to build HC packages yourself, follow instructions in
34 ONLY_FOR_PLATFORM= NetBSD-*-i386 FreeBSD-*-i386 Darwin-*-powerpc
36 # We must provide the real pass to gcc to the ./configure script,
37 # because GHC has a runtime dependency on it. Aren't there any ways
39 .include "../../mk/compiler.mk"
41 WARNINGS+= "This package depends on pkgsrc's undocumented variable \
42 CCPATH but it disappeared somehow."
43 WARNINGS+= "Using hard-coded /usr/bin/gcc as the C compiler..."
44 CONFIGURE_ARGS+= --with-gcc=/usr/bin/gcc
46 CONFIGURE_ARGS+= --with-gcc=${CCPATH}
49 USE_TOOLS+= gmake gtar perl:run
50 CONFIGURE_ENV+= PerlCmd=${PERL5:Q}
52 # We don't want to extract all of the DISTFILEs.
53 EXTRACT_ONLY= ${DISTNAME}-src.tar.bz2
58 --target=${PLATFORM} \
60 --mandir=${PREFIX}/${PKGMANDIR} \
61 --with-gmp-includes=${PREFIX}/include \
62 --with-gmp-libraries=${PREFIX}/lib \
63 --with-iconv-includes=${PREFIX}/include \
64 --with-iconv-libraries=${PREFIX}/lib
66 # Build an unregisterised bootstrap compiler and install it directly
67 # into the .buildlink directory. But we can't use "make install"
68 # because we don't build it in a standard way (./configure && make).
70 # To install it, we just copy ghc and ghc-pkg from
71 # "work/bootstrap/ghc-${VERSION}/inplace/bin" to
72 # "${BUILDLINK_DIR}/bin". Note that in-place ghc isn't usable before
73 # running "ghc-pkg recache".
75 .if ${MACHINE_ARCH} == "i386" && ${OPSYS} == "NetBSD"
76 BOOTSTRAP_BUILD_MK = ${PKGDIR}/files/bootstrap-bsd.mk
77 PLATFORM = i386-unknown-netbsd
79 .elif ${MACHINE_ARCH} == "i386" && ${OPSYS} == "FreeBSD"
80 BOOTSTRAP_BUILD_MK = ${PKGDIR}/files/bootstrap-bsd.mk
81 PLATFORM = i386-unknown-freebsd
83 .elif ${MACHINE_ARCH} == "powerpc" && ${OPSYS} == "Darwin"
84 BOOTSTRAP_BUILD_MK = ${PKGDIR}/files/bootstrap.mk
85 PLATFORM = powerpc-apple-darwin
86 # Existence of libelf makes LeadingUnderscore being "NO", which is
87 # incorrect for this platform. See ghc-6.12.1/aclocal.m4
88 # (FP_LEADING_UNDERSCORE)
89 CONFLICTS= libelf-[0-9]*
92 PKG_FAIL_REASON+= "internal error: unsupported platform"
95 BOOTSTRAP_TARBALL = ${DISTNAME}-boot-${PLATFORM}.tar.bz2
97 pre-configure: ${WRKDIR}/stamp-bootstrap-ghc
99 ${WRKDIR}/stamp-prepare-bootstrap:
100 ${RUN} cd ${WRKDIR} && \
101 ${PHASE_MSG} "Preparing bootstrap compiler for ${PKGNAME}" && \
102 ${RM} -rf bootstrap && \
103 ${MKDIR} -p bootstrap/${DISTNAME}/utils/ghc-pwd/dist-boot && \
104 ${GTAR} -cf - ${DISTNAME} | ${GTAR} -C bootstrap -xpf - && \
105 ${LN} -sf ${PWD_CMD} bootstrap/${DISTNAME}/utils/ghc-pwd/dist-boot/ghc-pwd && \
108 ${WRKDIR}/stamp-configure-hc-boot: ${WRKDIR}/stamp-prepare-bootstrap
109 ${RUN} cd ${WRKDIR}/bootstrap/${DISTNAME} && \
110 ${PHASE_MSG} "Configuring bootstrap compiler for ${PKGNAME}" && \
111 ${SETENV} ${CONFIGURE_ENV} ./configure --enable-hc-boot --with-ghc="" ${CONFIGURE_ARGS} && \
114 ${WRKDIR}/stamp-extract-hc: ${WRKDIR}/stamp-configure-hc-boot
115 ${RUN} cd ${WRKDIR}/bootstrap/${DISTNAME} && \
116 ${PHASE_MSG} "Extracting bootstrap HC archive for ${PKGNAME}" && \
117 (cd .. && ${GTAR} -jxf ${DISTDIR}/${BOOTSTRAP_TARBALL}) && \
121 ${WRKDIR}/stamp-rewrite-hc-paths: ${WRKDIR}/stamp-extract-hc
122 ${RUN} cd ${WRKDIR}/bootstrap/${DISTNAME} && \
123 ${PHASE_MSG} "Rewriting source paths in bootstrap compiler for ${PKGNAME}" && \
124 ${SED} -e "s#\\[\\[PREFIX\\]\\]#${PREFIX}#g" ${BOOTSTRAP_BUILD_MK} > mk/build.mk && \
125 for c in libraries/*/configure; do \
126 (cd `${DIRNAME} $$c` && ${SETENV} ${CONFIGURE_ENV} ${SH} configure ${CONFIGURE_ARGS}); \
128 for i in inplace/lib/package.conf.d/*.conf */*/package-data.mk */*/*/package-data.mk; do \
129 ${SED} -e "s#\\[\\[PREFIX\\]\\]#${PREFIX}#g" \
130 -e "s#\\[\\[GHC_SOURCE_PATH\\]\\]#`${PWD_CMD}`#g" $$i > $$i.tmp; \
131 ${MV} -f $$i.tmp $$i; \
133 ${TOUCH} -r inplace/lib/package.conf.d */*/package-data.mk */*/*/package-data.mk && \
136 ${WRKDIR}/stamp-bootstrap-ghc: ${WRKDIR}/stamp-rewrite-hc-paths
137 ${RUN} cd ${WRKDIR}/bootstrap/${DISTNAME} && \
138 ${PHASE_MSG} "Building bootstrap compiler for ${PKGNAME}" && \
139 ${GMAKE} bootstrapping-files && \
140 ${GMAKE} all_ghc_stage2 && \
141 ${GMAKE} inplace/bin/ghc-pkg && \
142 ${GMAKE} inplace/lib/unlit && \
143 inplace/bin/ghc-pkg recache && \
144 ${CP} -f inplace/bin/ghc-stage2 ${BUILDLINK_DIR}/bin/ghc && \
145 ${CP} -f inplace/bin/ghc-pkg ${BUILDLINK_DIR}/bin/ghc-pkg && \
149 # Seemingly by mistake, ghc-7.0.3 has a prebuilt
150 # utils/ghc-pwd/dist-boot/ghc-pwd for amd64 GNU/Linux.
151 ${RUN} cd ${WRKSRC} && \
152 rm -rf utils/ghc-pwd/dist-boot
153 ${RUN} cd ${WRKSRC} && \
154 ${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS}
155 # We need to tell the libraries/terminfo/configure that our ncurses is
156 # in a non-standard path. Without that, the resulting GHC tries to
157 # link programs by executing ld(1) without passing it -L${PREFIX}/lib.
158 ${RUN} ${ECHO} "libraries/terminfo_CONFIGURE_OPTS += \
159 --configure-option=--with-curses-includes=${PREFIX}/include \
160 --configure-option=--with-curses-libraries=${PREFIX}/lib" >> ${WRKSRC}/mk/build.mk
161 # The ghc compiler does normally split the generated asm files into small
162 # parts before sending them to gcc, to enable the linker to eliminate
163 # unused parts. This does however not play nice with the pkgsrc
164 # framework, and the result is that the build takes more than 5 times
165 # as long than when the files are not split. See
166 # http://mail-index.netbsd.org/tech-pkg/2006/07/30/0005.html
167 # for a description of the problem.
168 # Disable file splitting until pkgsrc gets improved.
169 ${RUN} ${ECHO} "SplitObjs = NO" >> ${WRKSRC}/mk/build.mk
170 # If we don't explicitly disable HsColour, PLIST gets changed
171 # depending on whether we have installed it or not.
172 ${RUN} ${ECHO} "HSCOLOUR_SRCS = NO" >> ${WRKSRC}/mk/build.mk
173 # To avoid powerpc crash...
174 # See http://hackage.haskell.org/trac/ghc/ticket/4034
175 #.if ${MACHINE_ARCH} == "powerpc" && ${OPSYS} == "Darwin"
176 # ${RUN} ${ECHO} "GhcRtsHcOpts = -optc-O0 -optc-g" >> ${WRKSRC}/mk/build.mk
177 # ${RUN} ${ECHO} "GhcRtsCcOpts = -O0 -g" >> ${WRKSRC}/mk/build.mk
180 # Substitutions for INSTALL and DEINSTALL.
181 FILES_SUBST+= DISTNAME=${DISTNAME}
183 # There is an unused script which don't pass the portability test.
184 CHECK_PORTABILITY_SKIP+= distrib/prep-bin-dist-mingw
186 # GHC currently *requires* ${PREFIX}/lib to be in
187 # "/etc/ld-elf.so.conf". See
188 # http://hackage.haskell.org/trac/ghc/ticket/2933
189 CHECK_SHLIBS_SUPPORTED= no
191 # I guess pdcurses works well but not tested.
193 .include "../../devel/ncurses/buildlink3.mk"
195 BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
196 BUILDLINK_DEPMETHOD.libxslt = build
197 .include "../../converters/libiconv/buildlink3.mk"
198 .include "../../devel/gmp/buildlink3.mk"
199 .include "../../textproc/libxslt/buildlink3.mk"
200 .include "../../mk/pthread.buildlink3.mk"
201 .include "../../mk/bsd.pkg.mk"