Date: Fri, 1 Aug 2014 15:06:16 +0000 (UTC) From: Marcus von Appen <mva@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363713 - in head/devel/pypersrc: . files Message-ID: <201408011506.s71F6G2s039130@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408011506.s71F6G2s039130>