Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jun 2015 17:14:40 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390925 - head/math/mosesdecoder
Message-ID:  <201506291714.t5THEeU1048254@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Jun 29 17:14:40 2015
New Revision: 390925
URL: https://svnweb.freebsd.org/changeset/ports/390925

Log:
  - Mark BROKEN on 9.x: does not link [1]:
  
  crt1.c:(.text+0x9d): undefined reference to `main'
  
  - Fix shebangs
  
  Submitted by:	pkg-fallout [1]
  Approved by:	portmgr blanket

Modified:
  head/math/mosesdecoder/Makefile

Modified: head/math/mosesdecoder/Makefile
==============================================================================
--- head/math/mosesdecoder/Makefile	Mon Jun 29 16:56:06 2015	(r390924)
+++ head/math/mosesdecoder/Makefile	Mon Jun 29 17:14:40 2015	(r390925)
@@ -3,6 +3,7 @@
 
 PORTNAME=	mosesdecoder
 PORTVERSION=	2.1.1
+PORTREVISION=	1
 DISTVERSIONPREFIX=	RELEASE-
 CATEGORIES=	math
 
@@ -16,13 +17,22 @@ LIB_DEPENDS=	libboost_thread.so:${PORTSD
 		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
+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}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506291714.t5THEeU1048254>