9f260c691c
equivalents for devel/premake4, lang/ikarus, lang/stklos and lang/ypsilon. * Add mutual conflicts to lang/ikarus - Only define NO_PACKAGE for lang/ikarus when PACKAGE_BUILDING is set (i.e. on the pointyhat cluster). PR: ports/168715 Submitted by: Vitaly Magerya <vmagerya@gmail.com> (maintainer)
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# New ports collection makefile for: ikarus
|
|
# Date created: 30 January 2009
|
|
# Whom: Vitaly Magerya <vmagerya@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ikarus
|
|
PORTVERSION= 0.0.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= http://launchpad.net/ikarus/0.0/${PORTVERSION}/+download/ \
|
|
http://www.ikarus-scheme.org/ \
|
|
http://tx97.net/pub/distfiles/ \
|
|
LOCAL/glarkin
|
|
|
|
MAINTAINER= vmagerya@gmail.com
|
|
COMMENT= Optimizing incremental native-code compiler for R6RS Scheme
|
|
|
|
LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp
|
|
|
|
# Both install bin/scheme-script
|
|
CONFLICTS= petite-chez-*
|
|
|
|
FETCH_ARGS= -Fpr
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=\
|
|
CFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
.if defined(PACKAGE_BUILDING)
|
|
NO_PACKAGE= Pointyhat cluster CPUs do not support required SSE instruction set
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !${PORT_OPTIONS:MDOCS}
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Makefile.in \
|
|
${FILESDIR}/extra-patch-doc__Makefile.in
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 700042
|
|
USE_GCC= 4.2+
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|