aboutsummaryrefslogtreecommitdiffstats
path: root/lang/spl/Makefile
blob: 8a53234c2a13cfb6cc13e539cad2c96d49925f7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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=   2
CATEGORIES= lang
MASTER_SITES=   http://shakespearelang.sourceforge.net/download/

MAINTAINER= ports@FreeBSD.org
COMMENT=    The Shakespeare programming language

USE_BISON=  build
USE_GMAKE=  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>