aboutsummaryrefslogtreecommitdiffstats
path: root/lang/rakudo/Makefile
blob: 4a72bab13c5d024729af80f8971733be36667d3d (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
# New ports collection makefile for:    rakudo
# Date created:    15 March 2009
# Whom:            Aliaksandr Zahatski <zahatski@gmail.com>
#
# $FreeBSD$
#

PORTNAME=   rakudo
PORTVERSION=    2010.06
PORTEPOCH=  1
CATEGORIES= lang
MASTER_SITES=   http://cloud.github.com/downloads/rakudo/rakudo/

MAINTAINER= perl@FreeBSD.org
COMMENT=    The Rakudo Perl 6 Compiler targets the Parrot Virtual Machine

BUILD_DEPENDS=  parrot>=${PARROT_VERSION}:${PORTSDIR}/lang/parrot
LIB_DEPENDS=    icudata:${PORTSDIR}/devel/icu
RUN_DEPENDS=    parrot>=${PARROT_VERSION}:${PORTSDIR}/lang/parrot

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 700000
BROKEN= dependency devel/icu is broken on 6.x
.endif

USE_BISON=  build
USE_PERL5_BUILD=    5.8.0+
USE_GMAKE=  yes

INSTALL_TARGET= install

MAN1=       perl6.1 rakudo.1
MANCOMPRESSED=  no

PARROTCONFIG?=  ${LOCALBASE}/bin/parrot_config
CONFIGURE_SCRIPT=   Configure.pl
CONFIGURE_ARGS= --parrot-config=${PARROTCONFIG}
PLIST_SUB+= PARROT_VERSION=${PARROT_VERSION}

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

post-install:
    ${INSTALL_MAN} ${WRKSRC}/perl6.1 ${MAN1PREFIX}/man/man1/perl6.1

test: build
    ${MAKE} -C ${WRKSRC} test

regression-test: test

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

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

.include <bsd.port.post.mk>