From owner-svn-ports-all@FreeBSD.ORG Mon Dec 10 19:51:57 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A27F5928; Mon, 10 Dec 2012 19:51:57 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6C5B98FC08; Mon, 10 Dec 2012 19:51:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBAJpvfv099168; Mon, 10 Dec 2012 19:51:57 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBAJpvCL099166; Mon, 10 Dec 2012 19:51:57 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201212101951.qBAJpvCL099166@svn.freebsd.org> From: Marcus von Appen Date: Mon, 10 Dec 2012 19:51:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308634 - in head/devel/gobject-introspection: . 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.14 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: Mon, 10 Dec 2012 19:51:57 -0000 Author: mva Date: Mon Dec 10 19:51:56 2012 New Revision: 308634 URL: http://svnweb.freebsd.org/changeset/ports/308634 Log: - Fix lang/python27's PTH option knob handling. Since gobject-introspection does not use python-config correctly and PTH does not add itself properly to the python-config --includes knob, python-config --cflags are needed. PR: ports/172190 ports/170754 Submitted by: Waitman Gobble Shawn Wilson Modified: head/devel/gobject-introspection/Makefile (contents, props changed) head/devel/gobject-introspection/files/patch-configure (contents, props changed) Modified: head/devel/gobject-introspection/Makefile ============================================================================== --- head/devel/gobject-introspection/Makefile Mon Dec 10 19:27:51 2012 (r308633) +++ head/devel/gobject-introspection/Makefile Mon Dec 10 19:51:56 2012 (r308634) @@ -8,7 +8,7 @@ PORTNAME= gobject-introspection PORTVERSION= 0.10.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/devel/gobject-introspection/files/patch-configure ============================================================================== --- head/devel/gobject-introspection/files/patch-configure Mon Dec 10 19:27:51 2012 (r308633) +++ head/devel/gobject-introspection/files/patch-configure Mon Dec 10 19:51:56 2012 (r308634) @@ -5,7 +5,7 @@ py_prefix=`$PYTHON -c "import sys; print sys.prefix"` py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` -PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}" -+PYTHON_INCLUDES=`python${PYTHON_VERSION}-config --includes` ++PYTHON_INCLUDES=`python${PYTHON_VERSION}-config --cflags` if test "$py_prefix" != "$py_exec_prefix"; then PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}" fi