1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00
freebsd-ports/lang/hugs/Makefile
Niclas Zeising 7be404eb3f Add USES=xorg USES=gl, ports categories l
Add USES=xorg and USES=gl to ports in categories starting with 'l'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
2019-11-06 18:06:40 +00:00

64 lines
1.7 KiB
Makefile

# Created by: Torsten Teg Grust (Torsten.Grust@uni-konstanz.de)
# $FreeBSD$
PORTNAME= hugs98
PORTVERSION= 200609
PORTREVISION= 16
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
BROKEN= unfetchable
BROKEN_armv6= fails to compile: cppinput.c: invalid preprocessing directive \#!
BROKEN_armv7= fails to compile: cppinput.c: invalid preprocessing directive \#!
BUILD_DEPENDS= bash:shells/bash
WRKSRC= ${WRKDIR}/${DISTNAME}
HUGS_DATE= Sep2006
USES= bison gl gmake openal:al,alut xorg
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>