Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Oct 2014 15:23:27 +0000 (UTC)
From:      Dmitry Sivachenko <demon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r371398 - in head: comms/wsjt comms/wspr math/py-pymc science/py-obspy
Message-ID:  <201410231523.s9NFNRTN097531@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: demon
Date: Thu Oct 23 15:23:27 2014
New Revision: 371398
URL: https://svnweb.freebsd.org/changeset/ports/371398
QAT: https://qat.redports.org/buildarchive/r371398/

Log:
  Fix compilation after recent numpy patch.
  
  Patch by thierry@FreeBSD.org, pointed out by antoine.

Modified:
  head/comms/wsjt/Makefile
  head/comms/wspr/Makefile
  head/math/py-pymc/Makefile
  head/science/py-obspy/Makefile

Modified: head/comms/wsjt/Makefile
==============================================================================
--- head/comms/wsjt/Makefile	Thu Oct 23 14:36:54 2014	(r371397)
+++ head/comms/wsjt/Makefile	Thu Oct 23 15:23:27 2014	(r371398)
@@ -28,6 +28,7 @@ CONFIGURE_ARGS=	--enable-gfortran --pref
 		--with-portaudio-lib-dir=${LOCALBASE}/lib/portaudio2
 CPPFLAGS+=	-I${LOCALBASE}/include
 LIBS+=		-L${LOCALBASE}/lib
+LDFLAGS+=	-shared
 PLIST_SUB=	PYVER=${PYTHON_VERSION:S/python//} \
 		VERSION=${VERSION}
 

Modified: head/comms/wspr/Makefile
==============================================================================
--- head/comms/wspr/Makefile	Thu Oct 23 14:36:54 2014	(r371397)
+++ head/comms/wspr/Makefile	Thu Oct 23 15:23:27 2014	(r371398)
@@ -29,6 +29,7 @@ CONFIGURE_ARGS=	--with-gfortran=${FC} \
 		--with-f2py=f2py-${PYTHON_VER} \
 		--with-python3=${PYTHON_CMD}
 MAKE_ENV+=	PYTHONUSERBASE=${STAGEDIR}${PYTHONBASE}
+LDFLAGS+=	-shared
 VERSION=	4.00
 
 .include <bsd.port.pre.mk>

Modified: head/math/py-pymc/Makefile
==============================================================================
--- head/math/py-pymc/Makefile	Thu Oct 23 14:36:54 2014	(r371397)
+++ head/math/py-pymc/Makefile	Thu Oct 23 15:23:27 2014	(r371398)
@@ -34,6 +34,8 @@ USES=			python
 USE_PYTHON=		distutils autoplist
 PORTDOCS=	*
 
+LDFLAGS+=	-shared
+
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/flib.so
 	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/gp/cov_funs/distances.so

Modified: head/science/py-obspy/Makefile
==============================================================================
--- head/science/py-obspy/Makefile	Thu Oct 23 14:36:54 2014	(r371397)
+++ head/science/py-obspy/Makefile	Thu Oct 23 15:23:27 2014	(r371398)
@@ -26,6 +26,8 @@ USE_LDCONFIG=		yes
 LDFLAGS+=		-shared
 USE_PYTHON=		distutils autoplist
 
+LDFLAGS+=	-shared
+
 post-patch:
 	${REINPLACE_CMD} -e "s#FC#${FC}#g" ${WRKSRC}/setup.py
 



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