Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Feb 2004 23:25:39 -0700
From:      Greg Lewis <glewis@eyesbeyond.com>
To:        Kris Kennaway <kris@obsecurity.org>
Cc:        java@freebsd.org
Subject:   Re: Packages with diablo dependencies
Message-ID:  <20040222062539.GA50119@misty.eyesbeyond.com>
In-Reply-To: <20040222004847.GA57661@xor.obsecurity.org>
References:  <20040222004847.GA57661@xor.obsecurity.org>

next in thread | previous in thread | raw e-mail | index | archive | help

--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--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040222062539.GA50119>