freebsd-ports/lang/nhc98/Makefile
Gerald Pfeifer e59c88cece Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
   c++14-lang, c++0x, c11, or gcc-c++11-lib.

PR:		219275
2017-09-10 20:55:38 +00:00

45 lines
1.2 KiB
Makefile

# Created by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
# $FreeBSD$
PORTNAME= nhc98
PORTVERSION= 1.22
PORTREVISION= 3
CATEGORIES= lang haskell
MASTER_SITES= http://haskell.org/${PORTNAME}/
DISTFILES= ${PORTNAME}src-${PORTVERSION}${EXTRACT_SUFX}
DIST_SUBDIR= nhc98
MAINTAINER= haskell@FreeBSD.org
COMMENT= Fully-fledged compiler for Haskell 98
ONLY_FOR_ARCHS= i386
USES= gmake
USE_GCC= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --prefix=${PREFIX} --heap=4M --buildwith=gcc
MAKE_ARGS+= ARCH=
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= DOCS
DOCS_CONFIGURE_ON= --docdir=${DOCSDIR} +docs
DOCS_CONFIGURE_OFF= -docs
PORTDOCS= *
CONFLICTS= hs-cpphs-[0-9]*
post-patch:
@${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|' ${WRKSRC}/Makefile.inc
# The Makefile defines target names based on $(CC) which is
# problematic when CC=gcc5. The following patch does not affect the
# compiler used during the build, but makes sure that targets have
# the correct suffix e.g. 'basic-gcc' instead of 'basic-gcc5':
@${REINPLACE_CMD} -e 's|$$(CC)|gcc|g' ${WRKSRC}/Makefile
post-configure:
@${ECHO} "LIBDIR=${PREFIX}/lib/nhc98" \
>> ${WRKSRC}/targets/ix86-FreeBSD/config.cache
.include <bsd.port.mk>