Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Apr 2018 08:34:06 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r467693 - head/games/vegastrike
Message-ID:  <201804180834.w3I8Y6jI019542@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed Apr 18 08:34:06 2018
New Revision: 467693
URL: https://svnweb.freebsd.org/changeset/ports/467693

Log:
  games/vegastrike: unbreak with boost 1.67
  
  /usr/bin/ld: cannot find -lboost_python
  c++: error: linker command failed with exit code 1 (use -v to see invocation)
  gmake[2]: *** [Makefile:3504: vegastrike] Error 1
  
  PR:		227427
  Reported by:	antoine (via exp-run)

Modified:
  head/games/vegastrike/Makefile   (contents, props changed)

Modified: head/games/vegastrike/Makefile
==============================================================================
--- head/games/vegastrike/Makefile	Wed Apr 18 08:33:48 2018	(r467692)
+++ head/games/vegastrike/Makefile	Wed Apr 18 08:34:06 2018	(r467693)
@@ -54,6 +54,8 @@ BROKEN_aarch64=		Fails to compile: POSH cannot determi
 post-patch:
 	@${REINPLACE_CMD} -E 's,/usr/(local|X11R6),${LOCALBASE},' \
 		${WRKSRC}/configure
+	@${REINPLACE_CMD} -e 's/-lboost_python/-l${PY_BOOST_LIB}/' \
+		${WRKSRC}/Makefile.in
 
 do-install:
 	${INSTALL_PROGRAM} ${BIN_FILES:S|bin|${WRKSRC}|} \



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