# Created by: Rob Zinkov # $FreeBSD$ PORTNAME= gambit-c PORTVERSION= 4.8.8 PORTREVISION= 2 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= lang MAINTAINER= olgeni@FreeBSD.org COMMENT= Gambit programming system where the compiler generates portable C code LICENSE= APACHE20 LGPL21 LICENSE_COMB= dual USE_GITHUB= yes GH_ACCOUNT= feeley GH_PROJECT= gambit USES= compiler gmake GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-single-host \ --enable-gcc-opts \ --docdir=${DOCSDIR} \ --includedir=${PREFIX}/include/gambit-c \ --libdir=${PREFIX}/lib/gambit-c \ --enable-compiler-name=gsc-gambit \ --enable-interpreter-name=gsi-gambit MAKEFILE= makefile USE_LDCONFIG= ${PREFIX}/lib/gambit-c INFO= gambit OPTIONS_DEFINE= GCC OPTIONS_DEFAULT=GCC GCC_DESC= Build with GCC .include .if ${PORT_OPTIONS:MGCC} USE_GCC= any .endif .if ${COMPILER_TYPE} == gcc # This is needed because 4.2 < gcc -v < 4.4 has optimisations that make the # build take more than 20Gb of virtual memory. CFLAGS+= -fno-move-loop-invariants .endif post-patch: .for i in makefile.in gsc/makefile.in gsi/makefile.in lib/makefile.in @${REINPLACE_CMD} -e \ 's|^\(FLAGS_OBJ = \).*|\1 ${CFLAGS}| ; \ s|^\(FLAGS_DYN = \).*|\1 ${CFLAGS}|' ${WRKSRC}/${i} .endfor post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gs[ci]-gambit .include