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
75
76
77
78
79
80
81
82
|
# New ports collection makefile for: parrot
# Date created: 15 April 2005
# Whom: Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$
#
PORTNAME= parrot
PORTVERSION= 0.6.0
CATEGORIES= lang perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= ../../authors/id/B/BS/BSCHMAL/
MAINTAINER= skv@FreeBSD.org
COMMENT= Parrot - virtual machine for dynamic languages
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \
bison:${PORTSDIR}/devel/bison \
${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \
icudata:${PORTSDIR}/devel/icu
USE_BISON= build
USE_GCC= 3.4+
USE_PERL5= 5.8.0+
USE_GMAKE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= reallyinstall
CONFIGURE_SCRIPT= Configure.pl
CONFIGURE_ARGS= --cc=${CC} --cxx=${CXX} --ld=${CC} --ccflags="${CFLAGS}" \
--ldflags="${LDFLAGS} -L/usr/lib -L${LOCALBASE}/lib" \
--icu-config=${LOCALBASE}/bin/icu-config \
--optimize --parrot_is_shared \
--lex=${LOCALBASE}/bin/flex \
--yacc=${LOCALBASE}/bin/bison \
--verbose \
--prefix=${PREFIX}
PARROT_SHARE_DIR= share/doc/${PORTNAME}
PARROT_DOCS= ${PARROT_SHARE_DIR}/docs
PARROT_EXAMPLES= ${PARROT_SHARE_DIR}/examples
PLIST_SUB+= SHLIB_VER="${PORTVERSION}" \
PARROT_DOCS="${PARROT_DOCS}" \
PARROT_EXAMPLES="${PARROT_EXAMPLES}"
post-patch:
${PERL} -pi -e "s=libdir}, 'pkgconfig=prefix}, 'libdata/pkgconfig=" \
${WRKSRC}/tools/dev/install_files.pl
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_EXAMPLES}(/.+)?$$,%%PARROT_EXAMPLES%%\1,g \
;s,${PARROT_SHARE_DIR}(/.+)?$$,%%DOCSDIR%%\1,g \
;s,${PORTVERSION}(/.+)?$$,%%SHLIB_VER%%\1,g \
' | ${TR} -s '\n') > temp-pkg-plist
.include <bsd.port.pre.mk>
# JIT only works on x86
.if ${ARCH} == "i386" || ${ARCH} == "amd64"
CONFIGURE_ARGS+= --jitcapable
PLIST_SUB+= JIT=""
.else
PLIST_SUB+= JIT="@comment "
.endif
.if ${ARCH} == ia64
BROKEN= Does not compile on ia64
.endif
.include <bsd.port.post.mk>
|