svn commit: r363713 - in head/devel/pypersrc: . files

Marcus von Appen mva at FreeBSD.org
Fri Aug 1 15:06:17 UTC 2014


Author: mva
Date: Fri Aug  1 15:06:16 2014
New Revision: 363713
URL: http://svnweb.freebsd.org/changeset/ports/363713
QAT: https://qat.redports.org/buildarchive/r363713/

Log:
  - Use the proper libdir for linking against python, since the symlink to
    libpython.so in config/ will vanish soon
  
  PR:		192244
  With hat:	python@

Added:
  head/devel/pypersrc/files/
  head/devel/pypersrc/files/patch-tools_pythonconf.py   (contents, props changed)
Modified:
  head/devel/pypersrc/Makefile

Modified: head/devel/pypersrc/Makefile
==============================================================================
--- head/devel/pypersrc/Makefile	Fri Aug  1 15:05:22 2014	(r363712)
+++ head/devel/pypersrc/Makefile	Fri Aug  1 15:06:16 2014	(r363713)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pypersrc
 PORTVERSION=	20120106
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	http://www.jimbrooks.org/software/pypersrc/
 DISTNAME=	${PORTNAME}_${PORTVERSION}

Added: head/devel/pypersrc/files/patch-tools_pythonconf.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pypersrc/files/patch-tools_pythonconf.py	Fri Aug  1 15:06:16 2014	(r363713)
@@ -0,0 +1,11 @@
+--- ./tools/pythonconf.py.orig	2012-01-05 18:59:30.000000000 +0100
++++ ./tools/pythonconf.py	2014-08-01 16:40:40.000000000 +0200
+@@ -47,7 +47,7 @@
+         else:
+             # GNU
+             # ldlibflags: last char must stay a space
+-            ldlibflags = "-L" + sys.prefix + "/lib/python" + str(pythonVersion) + "/config" + " -lpython" + str(pythonVersion) + " "
++            ldlibflags = "-L" + sys.prefix + "/lib" + " -lpython" + str(pythonVersion) + " "
+             if find( sys.platform, "bsd" ) != -1:
+                 ldlibflags += "-pthread "
+             else:


More information about the svn-ports-head mailing list