Date: Tue, 10 Oct 2000 11:17:10 +0900 From: "Akinori MUSHA" <knu@idaemons.org> To: asami@freebsd.org, yasuf@bsdclub.org Cc: leeym@bsd.ce.ntu.edu.tw, knu@freebsd.org, kevlo@freebsd.org, ade@freebsd.org, reg@freebsd.org, ports@freebsd.org Subject: Re: New order check done Message-ID: <86og0twic9.wl@archon.local.idaemons.org> In-Reply-To: In your message of "Mon, 9 Oct 2000 14:50:46 -0700 (PDT)" <200010092150.e99LokA95039@silvia.hip.berkeley.edu> References: <200010092150.e99LokA95039@silvia.hip.berkeley.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
At Mon, 9 Oct 2000 14:50:46 -0700 (PDT), Satoshi Asami wrote: > http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/ruby-gtk-0.23.log > ruby-gtk, on the other hand, is either my fault or bsd.gnome.mk's. :> It was caused because someone removed the below line: CONFIGURE_ARGS= ${GTK_CONFIG} Ruby-gtk's configure script is _not_ a GNU one and it takes gtk-config's name as the first command line argument followed by some options that start with "--". I confirmed the following patch fixes it. Fukuma-san, would you approve this change? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/ruby-gtk/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 2000/10/08 10:23:45 1.15 +++ Makefile 2000/10/10 01:52:45 @@ -15,14 +15,14 @@ MAINTAINER= yasuf@bsdclub.org -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - USE_RUBY= yes USE_RUBY_EXTCONF= yes USE_XLIB= yes USE_GTK= yes WANT_IMLIB= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +CONFIGURE_ARGS= ${GTK_CONFIG} INSTALL_TARGET= site-install .include <bsd.port.pre.mk> -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86og0twic9.wl>