From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 31 04:00:17 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 C09E21065694 for ; Mon, 31 Aug 2009 04:00:17 +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 40D4F8FC2C for ; Mon, 31 Aug 2009 04:00:17 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7V40H9N095809 for ; Mon, 31 Aug 2009 04:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7V40GJr095804; Mon, 31 Aug 2009 04:00:16 GMT (envelope-from gnats) Date: Mon, 31 Aug 2009 04:00:16 GMT Message-Id: <200908310400.n7V40GJr095804@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: wahjava@gmail.com (Ashish SHUKLA) Cc: Subject: Re: ports/138361: x11/libxcb: alleviate dependency on python 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: Mon, 31 Aug 2009 04:00:17 -0000 The following reply was made to PR ports/138361; it has been noted by GNATS. From: wahjava@gmail.com (Ashish SHUKLA) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/138361: x11/libxcb: alleviate dependency on python Date: Mon, 31 Aug 2009 09:21:47 +0530 --=-=-= Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" --==-=-= Content-Transfer-Encoding: quoted-printable Hi MOROHOSHI, Thanks for the suggestion. I've implemented it and now python no more appears in RUN_DEPENDS. But python will still be required (both at build-time and the runtime by some python modules) by the xcb-proto on which libxcb depends. Attached is the diff file which fixes libxcb for this. I've tested it, and so it can be committed. Thanks =2D-=20 Ashish SHUKLA --==-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) iEYEARECAAYFAkqbSNgACgkQHy+EEHYuXnRxzgCffDf4VObiZXvyW+g+JtBf8ITs ijUAoLKuiCEIfR8a+OPtcatMYkHQ8b5k =UmLw -----END PGP SIGNATURE----- --==-=-=-- --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=libxcb.diff Content-Description: x11/libxcb diff file diff -urN /usr/ports/x11/libxcb/Makefile libxcb/Makefile --- /usr/ports/x11/libxcb/Makefile 2009-08-01 06:51:09.000000000 +0530 +++ libxcb/Makefile 2009-08-31 09:06:34.000000000 +0530 @@ -7,8 +7,8 @@ PORTNAME= libxcb PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= x11 python -#MASTER_SITES= XORG/current/src/extras MASTER_SITES= http://xcb.freedesktop.org/dist/ MAINTAINER= wahjava@gmail.com @@ -30,7 +30,7 @@ USE_GMAKE= yes USE_LDCONFIG= yes USE_XORG= xau xdmcp -USE_PYTHON= 2.5+ +USE_PYTHON_BUILD= 2.5+ GNU_CONFIGURE= yes .for f in XPROTO_CFLAGS XPROTO_LIBS XDMCP_CFLAGS XDMCP_LIBS NEEDED_CFLAGS NEEDED_LIBS --=-=-=--