svn commit: r467359 - head/graphics/py-exiv2

Jan Beich jbeich at FreeBSD.org
Sun Apr 15 00:41:58 UTC 2018


Author: jbeich
Date: Sun Apr 15 00:41:57 2018
New Revision: 467359
URL: https://svnweb.freebsd.org/changeset/ports/467359

Log:
  graphics/py-exiv2: unbreak with boost 1.67
  
  c++ -o build/libexiv2python.so -fstack-protector -shared build/exiv2wrapper.os build/exiv2wrapper_python.os -L/usr/local/lib -lboost_python -lexiv2
  /usr/bin/ld: cannot find -lboost_python
  
  PR:		227427
  Reported by:	antoine (via exp-run)

Modified:
  head/graphics/py-exiv2/Makefile   (contents, props changed)

Modified: head/graphics/py-exiv2/Makefile
==============================================================================
--- head/graphics/py-exiv2/Makefile	Sat Apr 14 23:59:26 2018	(r467358)
+++ head/graphics/py-exiv2/Makefile	Sun Apr 15 00:41:57 2018	(r467359)
@@ -19,7 +19,7 @@ USES=		python:2.7 scons tar:bzip2
 USE_PYTHON=	flavors
 USE_LDCONFIG=	yes
 CXXFLAGS+=	-I${LOCALBASE}/include
-MAKE_ARGS+=	prefix=${PREFIX} use_env=1
+MAKE_ARGS+=	prefix=${PREFIX} use_env=1 BOOSTLIB="${PY_BOOST_LIB}"
 
 post-patch:
 	${REINPLACE_CMD} -e 's|python_inc_path\]|python_inc_path,\


More information about the svn-ports-head mailing list