svn commit: r390925 - head/math/mosesdecoder

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon Jun 29 17:14:41 UTC 2015


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}
 


More information about the svn-ports-all mailing list