aboutsummaryrefslogtreecommitdiffstats
path: root/lang/parrot/Makefile
blob: d6fa35dc66a38c05a77897625840994e9d7fcdff (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# New ports collection makefile for:    parrot
# Date created:    15 April 2005
# Whom:        Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$
#

PORTNAME=   parrot
PORTVERSION=    ${PARROT_VERSION}
CATEGORIES= lang
MASTER_SITES=   ftp://ftp.parrot.org/pub/parrot/releases/devel/${PORTVERSION}/

MAINTAINER= perl@FreeBSD.org
COMMENT=    Parrot - virtual machine for dynamic languages

BUILD_DEPENDS=  gm4:${PORTSDIR}/devel/m4 \
        ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
        ${LOCALBASE}/bin/pcre-config:${PORTSDIR}/devel/pcre
LIB_DEPENDS=    gmp.10:${PORTSDIR}/math/gmp \
        icudata.46:${PORTSDIR}/devel/icu

LICENSE=    ART20

MAKE_JOBS_UNSAFE=   yes

USE_BZIP2=  yes
USE_BISON=  build
USE_PERL5=  5.8.0+
USE_GMAKE=  yes

USE_LDCONFIG=   yes

CONFIGURE_SCRIPT=   Configure.pl
CONFIGURE_ARGS= --cc=${CC} --ld=${CC} --ccflags="${CFLAGS}" \
        --ldflags="${LDFLAGS} -L/usr/lib -L${LOCALBASE}/lib" \
        --icu-config=${LOCALBASE}/bin/icu-config \
        --optimize --parrot_is_shared --inline --gc=gms \
        --lex=${LOCALBASE}/bin/flex \
        --yacc=${LOCALBASE}/bin/bison \
        --verbose \
        --prefix=${PREFIX}

INSTALL_TARGET= install-dev
ALL_TARGET= installable

.include "${.CURDIR}/Makefile.common"

PARROT_SHARE_DIR=   share/doc/${PORTNAME}/${PORTVERSION}
PARROT_DOCS=        ${PARROT_SHARE_DIR}
PLIST_SUB+= PARROT_VER="${PORTVERSION}" \
        PARROT_DOCS="${PARROT_DOCS}"

do-configure:
    cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}

test:
    cd ${WRKSRC} && ${MAKE} test

x-generate-plist:
    (${PORTSDIR}/Tools/scripts/plist -d -m ${MTREE_FILE} ${PREFIX} \
    | ${SED} -E \
        's,.*share/nls/.+$$,,g \
        ;s,${PARROT_DOCS}(/.+)?$$,%%PARROT_DOCS%%\1,g \
        ;s,${PARROT_SHARE_DIR}(/.+)?$$,%%DOCSDIR%%\1,g \
        ;s,${PORTVERSION}(/.+)?$$,%%PARROT_VER%%\1,g \
        ' | ${TR} -s '\n') > temp-pkg-plist

.include <bsd.port.pre.mk>

.if ${ARCH} == ia64
BROKEN=     Does not compile on ia64
.endif

.include <bsd.port.post.mk>