freebsd-ports/lang/spl/Makefile
Hye-Shik Chang b5a1a0be87 Fix build on 7-current. This adds a hack to avoid malloc problems but
the hack has no effect to the final binaries.
2006-02-01 07:54:19 +00:00

40 lines
1017 B
Makefile

# New ports collection makefile for: spl
# Date created: 6 September 2001
# Whom: Hye-Shik Chang <perky@fallin.lv>
#
# $FreeBSD$
#
PORTNAME= spl
PORTVERSION= 1.2.1
PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= http://shakespearelang.sourceforge.net/download/
MAINTAINER= perky@FreeBSD.org
COMMENT= The Shakespeare programming language
USE_BISON= yes
USE_GMAKE= yes
USE_REINPLACE= yes
ALL_EXAMPLES= Makefile fibonacci.spl fibonacci2.spl guess.spl hello.spl \
primes.spl reverse.spl shakesbeer.spl
post-patch:
.for f in . examples
${REINPLACE_CMD} -e 's,= gcc,?= gcc,' -e 's,^CCFLAGS.*,CFLAGS += -Wall,' \
-e 's,CCFLAGS,CFLAGS,g' ${WRKSRC}/${f}/Makefile
.endfor
${REINPLACE_CMD} -e 's,\(#define STRING_LENGTH\).*,\1 25600,g' \
-e 's,free(,//free(,g' ${WRKSRC}/makescanner.c
do-install:
${TAR} -C ${WRKSRC}/spl -cf - . | ${TAR} -C ${PREFIX} -xf -
.if !defined(NOPORTDOCS)
${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC}/examples && ${INSTALL_DATA} ${ALL_EXAMPLES} ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>