From owner-svn-ports-all@FreeBSD.ORG Mon May 6 09:58:09 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D877BD83; Mon, 6 May 2013 09:58:09 +0000 (UTC) (envelope-from jgh@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 CBC84340; Mon, 6 May 2013 09:58:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r469w9HG028107; Mon, 6 May 2013 09:58:09 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r469w9Ml028105; Mon, 6 May 2013 09:58:09 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201305060958.r469w9Ml028105@svn.freebsd.org> From: Jason Helfman Date: Mon, 6 May 2013 09:58:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317498 - in head/lang: python32 python33 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, 06 May 2013 09:58:09 -0000 Author: jgh Date: Mon May 6 09:58:09 2013 New Revision: 317498 URL: http://svnweb.freebsd.org/changeset/ports/317498 Log: - finish conversion for USES of gettext Modified: head/lang/python32/Makefile head/lang/python33/Makefile Modified: head/lang/python32/Makefile ============================================================================== --- head/lang/python32/Makefile Mon May 6 09:58:04 2013 (r317497) +++ head/lang/python32/Makefile Mon May 6 09:58:09 2013 (r317498) @@ -56,7 +56,7 @@ NLS_DESC= Enable Gettext support for the .include .if ${PORT_OPTIONS:MNLS} -USE_GETTEXT= yes +USES+= gettext # XXX do not set any LDFLAGS or CFLAGS - this causes pyexpat to fail building #LDFLAGS+= "-L${LOCALBASE}/lib" #CFLAGS+= "-I${LOCALBASE}/include" Modified: head/lang/python33/Makefile ============================================================================== --- head/lang/python33/Makefile Mon May 6 09:58:04 2013 (r317497) +++ head/lang/python33/Makefile Mon May 6 09:58:09 2013 (r317498) @@ -57,7 +57,7 @@ NLS_DESC= Enable Gettext support for the .include .if ${PORT_OPTIONS:MNLS} -USE_GETTEXT= yes +USES+= gettext # XXX do not set any LDFLAGS or CFLAGS - this causes pyexpat to fail building #LDFLAGS+= "-L${LOCALBASE}/lib" #CFLAGS+= "-I${LOCALBASE}/include"