From owner-freebsd-java@FreeBSD.ORG Sat Feb 21 22:25:51 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 8252516A4CE for ; Sat, 21 Feb 2004 22:25:51 -0800 (PST) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6206243D1D for ; Sat, 21 Feb 2004 22:25:51 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.203] (helo=mgr3.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1Aun3m-00074A-02; Sat, 21 Feb 2004 23:25:50 -0700 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 4.30) id 1Aun3k-0006QX-T0; Sat, 21 Feb 2004 23:25:49 -0700 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i1M6PkN2050135; Sat, 21 Feb 2004 23:25:46 -0700 (MST) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.10/8.12.10/Submit) id i1M6PelC050134; Sat, 21 Feb 2004 23:25:40 -0700 (MST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sat, 21 Feb 2004 23:25:39 -0700 From: Greg Lewis To: Kris Kennaway Message-ID: <20040222062539.GA50119@misty.eyesbeyond.com> References: <20040222004847.GA57661@xor.obsecurity.org> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <20040222004847.GA57661@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i Content-Type: multipart/mixed; boundary="6c2NcOVqGQ03X4Wi" X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr3.xmission.com X-Spam-Level: X-Spam-Status: No, hits=0.5 required=8.0 tests=XMSubMetaS_00 autolearn=no version=2.63 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 3.1 (built Mon Jan 26 13:00:24 MST 2004) X-SA-Exim-Scanned: Yes cc: java@freebsd.org Subject: Re: Packages with diablo dependencies 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: Sun, 22 Feb 2004 06:25:51 -0000 --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Feb 21, 2004 at 04:48:47PM -0800, Kris Kennaway wrote: > It looks like 51 ports now depend on the diablo ports to build; this > means the packages cannot be built on bento, since the diablo packages > are interactive and impossible to build there. Can you please do > something about this? Last time this came up I volunteered the attached patch. Does it fix the problem or not? I didn't hear whether it did or didn't. If it does fix the problem I'll commit it. If not, can you suggest a variable the package install script can test for to workaround things on bento? -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pkg-install.diff" Index: pkg-install =================================================================== RCS file: /home/pcvs/ports/java/diablo-jdk13/pkg-install,v retrieving revision 1.1 diff -u -r1.1 pkg-install --- pkg-install 25 Aug 2003 16:54:36 -0000 1.1 +++ pkg-install 22 Feb 2004 06:23:13 -0000 @@ -4,6 +4,11 @@ # Set up a standard path PATH=/usr/bin:/bin +# Hack to prevent licensing from breaking bento. +if [ "x${PACKAGE_BUILDING}" != "x" ]; then + exit 0 +fi + # Attempt to install a link for the browser plugin during post-install if [ "$2" = "POST-INSTALL" ]; then # Plugin location variables --6c2NcOVqGQ03X4Wi--