61 lines
1.8 KiB
Makefile
61 lines
1.8 KiB
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= parrot
|
|
PORTVERSION= 7.0.0
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.parrot.org/pub/parrot/releases/stable/${PORTVERSION}/ \
|
|
ftp://ftp.parrot.org/pub/parrot/releases/supported/${PORTVERSION}/ \
|
|
LOCAL/sunpoet
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Parrot - virtual machine for dynamic languages
|
|
|
|
LICENSE= ART20
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
|
|
${LOCALBASE}/bin/gm4:${PORTSDIR}/devel/m4 \
|
|
${LOCALBASE}/bin/pcre-config:${PORTSDIR}/devel/pcre
|
|
LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \
|
|
libicudata.so:${PORTSDIR}/devel/icu
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
ALL_TARGET= installable
|
|
CONFIGURE_ARGS= --cc=${CC} --ccflags="${CFLAGS}" --cxx=${CXX} --link=${CXX} \
|
|
--ld=${CC} --ldflags="${LDFLAGS} -L${LIBDIR} -L${LOCALBASE}/lib" \
|
|
--gc=gms --inline --optimize --parrot_is_shared --verbose \
|
|
--prefix=${PREFIX} \
|
|
--icu-config=${LOCALBASE}/bin/icu-config \
|
|
--lex=${LOCALBASE}/bin/flex \
|
|
--yacc=${LOCALBASE}/bin/bison
|
|
CONFIGURE_SCRIPT= Configure.pl
|
|
INSTALL_TARGET= install-dev
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= bison gmake perl5 tar:bzip2
|
|
|
|
PARROT_SHARE_DIR= share/doc/${PORTNAME}/${PORTVERSION}
|
|
PARROT_DOCS= ${PARROT_SHARE_DIR}
|
|
PLIST_SUB= PARROT_VER="${PORTVERSION}" \
|
|
PARROT_DOCS="${PARROT_DOCS}"
|
|
|
|
BROKEN_ia64= Does not compile on ia64
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${REINPLACE_CMD} -e '/^installable: / s| docs | |' ${WRKSRC}/config/gen/makefiles/root.in
|
|
.endif
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* ${STAGEDIR}${PREFIX}/lib/libparrot.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/parrot/${PORTVERSION}/dynext/*.so
|
|
|
|
regression-test test: build
|
|
cd ${WRKSRC} && ${MAKE} test
|
|
|
|
.include <bsd.port.mk>
|