freebsd-ports/lang/racket/Makefile
2017-04-28 19:06:29 +00:00

66 lines
2 KiB
Makefile

# Created by: Joseph Koshy <jkoshy@FreeBSD.org>
# $FreeBSD$
PORTNAME= racket
PORTVERSION= 6.9
CATEGORIES= lang scheme
MASTER_SITES= http://mirror.racket-lang.org/installers/${PORTVERSION}/ \
http://www.cs.utah.edu/plt/installers/${PORTVERSION}/ \
http://www.eecs.northwestern.edu/racket/${PORTVERSION}/ \
http://mirror.csclub.uwaterloo.ca/racket/racket-installers/${PORTVERSION}/ \
http://mirror.informatik.uni-tuebingen.de/mirror/racket/${PORTVERSION}/ \
http://racket.infogroep.be/${PORTVERSION}/
DISTNAME= ${PORTNAME}-${PORTVERSION}-src-builtpkgs
DIST_SUBDIR= ${PORTNAME}/${PORTVERSION}
MAINTAINER= olgeni@FreeBSD.org
COMMENT= Interactive, integrated, graphical Scheme programming environment
LICENSE= LGPL3
LIB_DEPENDS= libffi.so:devel/libffi \
libcairo.so:graphics/cairo \
libpng.so:graphics/png
BROKEN_armv6= does not build: error: GNU lightning does not support the current target
BROKEN_aarch64= does not build: error: Unported platform
BROKEN_sparc64= does not build
BROKEN_FreeBSD_10_i386= segfaults during build
BROKEN_FreeBSD_11_i386= segfaults during build
BROKEN_FreeBSD_12_i386= segfaults during build
MAKE_JOBS_UNSAFE=yes
CONFLICTS= racket-minimal-[0-9]*
GNU_CONFIGURE= yes
CONFIGURE_ARGS= -enable-libffi --enable-pthread --enable-places --enable-shared
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib
WRKSRC= ${WRKDIR}/racket-${PORTVERSION}/src
PATCH_WRKSRC= ${WRKDIR}/racket-${PORTVERSION}
USES= iconv jpeg libtool sqlite tar:tgz
USE_LDCONFIG= yes
REINPLACE_ARGS= -i ""
USE_GNOME= cairo pango
OPTIONS_DEFINE= FUTURES
OPTIONS_DEFAULT=FUTURES
OPTIONS_DEFINE_amd64= JIT
OPTIONS_DEFINE_i386= JIT
OPTIONS_DEFAULT_amd64= JIT
OPTIONS_DEFAULT_i386= JIT
FUTURES_DESC= Enable futures
JIT_DESC= Enable JIT compiler
JIT_CFLAGS= -msse -msse2 -mfpmath=sse
FUTURES_CONFIGURE_ENABLE= futures
JIT_CONFIGURE_ENABLE= jit
post-install:
${FIND} ${STAGEDIR}${PREFIX} -type d -empty -delete
${REINPLACE_CMD} -e "s@${STAGEDIR}@@" ${STAGEDIR}${PREFIX}/share/applications/*.desktop
.include <bsd.port.mk>