From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 14 16:50:03 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A506106568A for ; Wed, 14 Jan 2009 16:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 26F248FC0A for ; Wed, 14 Jan 2009 16:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n0EGo32j037065 for ; Wed, 14 Jan 2009 16:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n0EGo2Am037058; Wed, 14 Jan 2009 16:50:02 GMT (envelope-from gnats) Date: Wed, 14 Jan 2009 16:50:02 GMT Message-Id: <200901141650.n0EGo2Am037058@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: wahjava@gmail.com (Ashish SHUKLA) Cc: Subject: Re: ports/130475: allow x11/libxcb and x11/xcb-proto to build with python 2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ashish SHUKLA List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jan 2009 16:50:04 -0000 The following reply was made to PR ports/130475; it has been noted by GNATS. From: wahjava@gmail.com (Ashish SHUKLA) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/130475: allow x11/libxcb and x11/xcb-proto to build with python 2.6 Date: Wed, 14 Jan 2009 22:19:56 +0530 --=-=-= Hi, I'm approving the changes. And attached is the patch which needs to be committed. Thanks -- Ashish SHUKLA --=-=-= Content-Disposition: attachment; filename=libxcb_xcb-proto.diff Content-Description: diff diff --git /usr/ports/libxcb/Makefile libxcb/Makefile new file mode 100644 index 7f72174..6d18a47 100644 --- /usr/ports/libxcb/Makefile +++ libxcb/Makefile @@ -28,7 +28,7 @@ USE_GNOME= gnomehack USE_GMAKE= yes USE_LDCONFIG= yes USE_XORG= xau xdmcp -USE_PYTHON= 2.5 +USE_PYTHON= 2.5+ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-check=${LOCALBASE} diff --git /usr/ports/xcb-proto/Makefile xcb-proto/Makefile new file mode 100644 index 118a47e..74369ff 100644 --- /usr/ports/xcb-proto/Makefile +++ xcb-proto/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= xmllint:${PORTSDIR}/textproc/libxml2 USE_BZIP2= yes USE_GNOME= gnomehack -USE_PYTHON= 2.5 +USE_PYTHON= 2.5+ GNU_CONFIGURE= yes DATADIR= ${PREFIX}/share/xcb --=-=-=--