From owner-svn-ports-all@FreeBSD.ORG Mon Jul 23 17:00:47 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5846D106566B; Mon, 23 Jul 2012 17:00:47 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D3EF8FC1B; Mon, 23 Jul 2012 17:00:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q6NH0k6n029734; Mon, 23 Jul 2012 17:00:46 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q6NH0kkh029732; Mon, 23 Jul 2012 17:00:46 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201207231700.q6NH0kkh029732@svn.freebsd.org> From: Marcus von Appen Date: Mon, 23 Jul 2012 17:00:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r301403 - head/textproc/py-libxml2 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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, 23 Jul 2012 17:00:47 -0000 Author: mva Date: Mon Jul 23 17:00:46 2012 New Revision: 301403 URL: http://svn.freebsd.org/changeset/ports/301403 Log: - Fix includes and linker settings for lang/python2*'s PTH options PR: ports/156425 Reported by: Iwao, Koichiro Modified: head/textproc/py-libxml2/Makefile (contents, props changed) Modified: head/textproc/py-libxml2/Makefile ============================================================================== --- head/textproc/py-libxml2/Makefile Mon Jul 23 16:11:06 2012 (r301402) +++ head/textproc/py-libxml2/Makefile Mon Jul 23 17:00:46 2012 (r301403) @@ -5,7 +5,7 @@ # $FreeBSD$ # -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc gnome python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,6 +20,8 @@ PLIST= ${.CURDIR}/pkg-plist USE_GNOME= gnomehack libxml2 USE_PYTHON= yes +CPPFLAGS+= `${PYTHON_VERSION}-config --cflags` +LDFLAGS+= `${PYTHON_VERSION}-config --libs` CONFIGURE_ARGS= --with-iconv=${LOCALBASE} \ --with-html-dir=${PREFIX}/share/doc \ --with-html-subdir=${PORTNAME} \