18f61aa1c5
In file included from moses/LM/Rand.cpp:37: In file included from /usr/local/include/RandLM/RandLM.h:23: /usr/local/include/RandLM/RandLMQuantiser.h:41:24: error: in-class initializer for static data member of type 'const float' requires 'constexpr' specifier [-Wstatic-float-init] static const float kFloatErr = 0.00001f; ^ ~~~~~~~~ Reported by: pkg-fallout
45 lines
1.6 KiB
Makefile
45 lines
1.6 KiB
Makefile
# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mosesdecoder
|
|
PORTVERSION= 2.1.1
|
|
DISTVERSIONPREFIX= RELEASE-
|
|
PORTREVISION= 13
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= Statistical machine translation system
|
|
|
|
BROKEN= fails to build
|
|
|
|
BUILD_DEPENDS= bash:shells/bash \
|
|
bjam:devel/boost-jam
|
|
LIB_DEPENDS= libboost_thread.so:devel/boost-libs \
|
|
libRandLM.so:textproc/randlm \
|
|
libirstlm.so:textproc/irstlm
|
|
RUN_DEPENDS= lmplz:textproc/kenlm
|
|
|
|
USES= compiler:c++11-lang python shebangfix
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= moses-smt
|
|
SHEBANG_REGEX= ./scripts/.*\.(sh|pl|perl|cgi)
|
|
SHEBANG_FILES= scripts/analysis/extract-target-trees.py \
|
|
scripts/ems/support/mml-filter.py \
|
|
scripts/training/flexibility_score.py \
|
|
scripts/training/filter-rule-table.py \
|
|
scripts/training/create_count_tables.py
|
|
|
|
MAKE_ENV+= BOOST_BUILD_PATH=${WRKSRC}/jam-files/boost-build
|
|
|
|
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
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
|
|
|
|
.include <bsd.port.mk>
|