From owner-cvs-all Mon Aug 10 04:27:44 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA25616 for cvs-all-outgoing; Mon, 10 Aug 1998 04:27:44 -0700 (PDT) (envelope-from owner-cvs-all) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA25574; Mon, 10 Aug 1998 04:27:17 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id NAA17050; Mon, 10 Aug 1998 13:26:46 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id NAA16244; Mon, 10 Aug 1998 13:26:45 +0200 (CEST) To: asami@FreeBSD.ORG (Satoshi Asami) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/x11/pygtk Makefile References: <199808101020.DAA01204@silvia.hip.berkeley.edu> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 10 Aug 1998 13:26:43 +0200 In-Reply-To: asami@FreeBSD.ORG's message of "Mon, 10 Aug 1998 03:20:28 -0700 (PDT)" Message-ID: <87n29daxho.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 37 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami@FreeBSD.ORG (Satoshi Asami) writes: > * Depends on whether configure finds /usr/local/bin/gtk-config first or > * /usr/X11R6/bin/gtk-config. I hate it. > > And that depends on? (Yes, I hate it too.) $PATH. Or a command-line switch to configure as I just noticed. Does this patch work for you? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/pygtk/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 1998/08/07 23:56:51 1.9 +++ Makefile 1998/08/10 11:25:51 @@ -17,13 +17,12 @@ MAINTAINER= ports@FreeBSD.ORG -BUILD_DEPENDS= python:${PORTSDIR}/lang/python +BUILD_DEPENDS= python:${PORTSDIR}/lang/python \ + ${X11BASE}/bin/gtk-config:${PORTSDIR}/x11-toolkits/gtk RUN_DEPENDS= python:${PORTSDIR}/lang/python -LIB_DEPENDS= gtk\\.1\\.:${PORTSDIR}/x11-toolkits/gtk -BROKEN= glib.h - GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-gtk-config=${X11BASE}/bin/gtk-config ALL_TARGET= sharedmods MAKE_FLAGS= OPT="${CFLAGS}" tg