From owner-freebsd-java@FreeBSD.ORG Fri Nov 5 23:32:12 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8734D16A4CE; Fri, 5 Nov 2004 23:32:12 +0000 (GMT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A77643D41; Fri, 5 Nov 2004 23:32:12 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.1/8.13.1/NinthNine) with SMTP id iA5NW8pN054656; Sat, 6 Nov 2004 08:32:08 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 6 Nov 2004 08:32:08 +0900 (JST) Message-Id: <200411052332.iA5NW8pN054656@sakura.ninth-nine.com> From: Norikatsu Shigemura To: Kris Kennaway In-Reply-To: <20041105221926.GA43879@xor.obsecurity.org> References: <20041105195532.GB10879@xor.obsecurity.org> <418BF928.2090501@gldis.ca> <20041105221926.GA43879@xor.obsecurity.org> X-Mailer: Sylpheed version 0.9.99-gtk2-20041024 (GTK+ 2.4.9; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.11 (sakura.ninth-nine.com [219.127.74.121]); Sat, 06 Nov 2004 08:32:08 +0900 (JST) cc: java@FreeBSD.org cc: nork@FreeBSD.org cc: gldisater@gldis.ca cc: kris@obsecurity.org Subject: Re: [ports-i386@pointyhat.freebsd.org: eclipse-3.0.1 failed on i386 6] X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Nov 2004 23:32:12 -0000 On Fri, 5 Nov 2004 14:19:26 -0800 Kris Kennaway wrote: > > | FYI; can you please investigate and/or report to the developers? > > | Kris > > | ----- Forwarded message from User Ports-i386 > > ----- > > > > | ===> Generating temporary packing list > > | ===> Checking if java/eclipse already installed > > | ===> Installing Eclipse platform. > > | /usr/local/bin/unzip result/freebsd-gtk-x86-sdk.zip -d /usr/local > > | gmake: /usr/local/bin/unzip: Command not found > > | gmake: *** [install] Error 127 > > | *** Error code 2 > > | Stop in /a/ports/java/eclipse. > > | ================================================================ > > | build ended at Fri Nov 5 15:30:36 UTC 2004 > > | ----- End forwarded message ----- > > How was the distfile unzipped when unzip isn't installed? > EXTRACT_DEPENDS may not be present later in the build. If you need it > to build/install, it must be listed as a BUILD_DEPENDS also. Yes, it is the good strict check:-). How about following patch? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/java/eclipse/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- Makefile 27 Oct 2004 16:57:48 -0000 1.24 +++ Makefile 5 Nov 2004 23:28:59 -0000 @@ -19,6 +19,7 @@ BUILD_DEPENDS= ant:${PORTSDIR}/devel/apache-ant \ zip:${PORTSDIR}/archivers/zip +BUILD_DEPENDS+= ${EXTRACT_DEPENDS} ONLY_FOR_ARCHS= i386 USE_GMAKE= yes