blob: 50aa5adffc8ec2537a4fe0d3b26870b961058324 (
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
|
# New ports collection makefile for: rakudo
# Date created: 15 March 2009
# Whom: Aliaksandr Zahatski <zahatski@gmail.com>
#
# $FreeBSD$
#
PORTNAME= rakudo
PORTVERSION= 2010.09
PORTEPOCH= 1
CATEGORIES= lang
MASTER_SITES= http://cloud.github.com/downloads/rakudo/star/
DISTNAME= ${PORTNAME}-star-${PORTVERSION}
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}
EXTRA_DOCS= UsingPerl6-draft.pdf cheatsheet.txt
PORTDOCS= ${EXTRA_DOCS}
do-configure:
cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}
post-install:
${INSTALL_MAN} ${WRKSRC}/perl6.1 ${MAN1PREFIX}/man/man1/perl6.1
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${EXTRA_DOCS:S!^!${WRKSRC}/docs/!} ${DOCSDIR}/
.endif
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>
|