From owner-svn-ports-all@FreeBSD.ORG Fri Aug 1 15:06:17 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 356BCE96; Fri, 1 Aug 2014 15:06:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 230BB2B7F; Fri, 1 Aug 2014 15:06:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s71F6HSM039132; Fri, 1 Aug 2014 15:06:17 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s71F6G2s039130; Fri, 1 Aug 2014 15:06:16 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201408011506.s71F6G2s039130@svn.freebsd.org> From: Marcus von Appen Date: Fri, 1 Aug 2014 15:06:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363713 - in head/devel/pypersrc: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Aug 2014 15:06:17 -0000 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: