freebsd-ports/lang/hugs/Makefile
Gerald Pfeifer 09f9633cb6 Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.

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

PR:		222542
2018-07-29 22:18:44 +00:00

62 lines
1.8 KiB
Makefile

# Created by: Torsten Teg Grust (Torsten.Grust@uni-konstanz.de)
# $FreeBSD$
PORTNAME= hugs98
PORTVERSION= 200609
PORTREVISION= 14
CATEGORIES= lang haskell
MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/2006-09/
DISTNAME= ${PORTNAME}-plus-${HUGS_DATE}
MAINTAINER= haskell@FreeBSD.org
COMMENT= Interpreter for the functional programming language Haskell 98
BUILD_DEPENDS= bash:shells/bash
BROKEN_armv6= fails to compile: cppinput.c: invalid preprocessing directive \#!
BROKEN_armv7= fails to compile: cppinput.c: invalid preprocessing directive \#!
BROKEN_powerpc64= fails to compile: cppinput.c: detected recursion whilst expanding macro "vector"
WRKSRC= ${WRKDIR}/${DISTNAME}
HUGS_DATE= Sep2006
USES= bison gmake openal:al,alut
USE_CSTD= gnu89
USE_GCC= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-pthreads
USE_GL= glut
USE_XORG= sm ice xmu xi x11
.include <bsd.port.pre.mk>
.if ${ARCH} == i386 && ${OSVERSION} > 1200000
CFLAGS+= -O0
.endif
post-patch:
@${REINPLACE_CMD} 's/LIBS/LIBRARIES/' ${WRKSRC}/libraries/Makefile.in
@${REINPLACE_CMD} -e '/^install :: install_notes/d ; \
/^install :: install_guide/d' \
${WRKSRC}/src/MkInstal.in
@${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g' \
${WRKSRC}/packages/OpenGL/configure \
${WRKSRC}/packages/GLUT/configure \
${WRKSRC}/packages/X11/configure \
${WRKSRC}/packages/HGL/configure
@${REINPLACE_CMD} -e 's,"gcc","${CC}",g' \
${WRKSRC}/hsc2hs/Main.hs
do-build:
. for dir in src libraries docs
cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}
. endfor
do-install:
. for dir in src libraries demos docs
cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}
. endfor
.include <bsd.port.post.mk>