Packages with diablo dependencies

Greg Lewis glewis at eyesbeyond.com
Sat Feb 21 22:25:51 PST 2004


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 at eyesbeyond.com
Eyes Beyond                         Web     : http://www.eyesbeyond.com
Information Technology              FreeBSD : glewis at FreeBSD.org

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


More information about the freebsd-java mailing list