97e1401e92
crt1.c:(.text+0x9d): undefined reference to `main' - Fix shebangs Submitted by: pkg-fallout [1] Approved by: portmgr blanket
44 lines
1.7 KiB
Makefile
44 lines
1.7 KiB
Makefile
# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mosesdecoder
|
|
PORTVERSION= 2.1.1
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= RELEASE-
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= A statistical machine translation system
|
|
|
|
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \
|
|
bjam:${PORTSDIR}/devel/boost-jam
|
|
LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \
|
|
libRandLM.so:${PORTSDIR}/textproc/randlm \
|
|
libirstlm.so:${PORTSDIR}/textproc/irstlm
|
|
RUN_DEPENDS= lmplz:${PORTSDIR}/textproc/kenlm
|
|
|
|
BROKEN_FreeBSD_9= does not link
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= moses-smt
|
|
|
|
USES= compiler:c++11-lang shebangfix
|
|
SHEBANG_FILES= scripts/analysis/weight-scan-summarize.sh \
|
|
scripts/training/wrappers/adam-suffix-array/suffix-array-extract.sh \
|
|
scripts/training/wrappers/adam-suffix-array/suffix-array-create.sh
|
|
|
|
MAKE_ENV+= BOOST_BUILD_PATH=${WRKSRC}/jam-files/boost-build
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC}/scripts \( -name "*.pl" -o -name "*.perl" -o -name "*.cgi" \) -exec \
|
|
${REINPLACE_CMD} -i '' -e '1s|${perl_OLD_CMD}|${perl_CMD}|' {} \;
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} bjam --with-boost=${LOCALBASE} --with-irstlm=${LOCALBASE} --with-randlm=${LOCALBASE} --without-tcmalloc --notrace --toolset=${CHOSEN_COMPILER_TYPE} debug-symbols=off ${_MAKE_JOBS}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} bjam --with-boost=${LOCALBASE} --with-irstlm=${LOCALBASE} --with-randlm=${LOCALBASE} --without-tcmalloc --notrace --prefix=${STAGEDIR}${PREFIX} --install-scripts=${STAGEDIR}${DATADIR} --toolset=${CHOSEN_COMPILER_TYPE} debug-symbols=off ${_MAKE_JOBS} release
|
|
cd ${STAGEDIR}${PREFIX}/bin && ${RM} build_binary filter fragment lmplz query
|
|
|
|
.include <bsd.port.mk>
|