diff options
author | glewis <glewis@FreeBSD.org> | 2004-03-18 00:44:11 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2004-03-18 00:44:11 +0800 |
commit | d6f6641133de50bb8b27f0e7c38ca862123676b5 (patch) | |
tree | 972030d5abb64bc5dc7f0dcb5be21f735daf739e /java/diablo-jre13 | |
parent | da00bbce3d72625f4ac3daff9c26a73cc84702e4 (diff) | |
download | freebsd-ports-gnome-d6f6641133de50bb8b27f0e7c38ca862123676b5.tar.gz freebsd-ports-gnome-d6f6641133de50bb8b27f0e7c38ca862123676b5.tar.zst freebsd-ports-gnome-d6f6641133de50bb8b27f0e7c38ca862123676b5.zip |
. Try to make things non-interactive when building on bento. Works for
me, but failed when kris tried the patch on bento. I can't figure
out why, but maybe someone looking at this will have a clue.
Diffstat (limited to 'java/diablo-jre13')
-rw-r--r-- | java/diablo-jre13/pkg-install | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/java/diablo-jre13/pkg-install b/java/diablo-jre13/pkg-install index f3d91128cc49..51e7097a2c4b 100644 --- a/java/diablo-jre13/pkg-install +++ b/java/diablo-jre13/pkg-install @@ -1,9 +1,14 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/java/diablo-jre13/Attic/pkg-install,v 1.1 2003-08-25 16:53:03 glewis Exp $ +# $FreeBSD: /tmp/pcvs/ports/java/diablo-jre13/Attic/pkg-install,v 1.2 2004-03-17 16:44:11 glewis Exp $ # 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 |