Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Aug 2020 01:33:27 +0000 (UTC)
From:      Greg Lewis <glewis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r544356 - in head/java/icedtea-web: . files
Message-ID:  <202008080133.0781XR4L076486@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glewis
Date: Sat Aug  8 01:33:27 2020
New Revision: 544356
URL: https://svnweb.freebsd.org/changeset/ports/544356

Log:
  Fix rust launchers and bash completion
  
  PR:		244976
  Submitted by:	Lars Herschke <lhersch@dssgmbh.de>

Added:
  head/java/icedtea-web/files/patch-completion_javaws.bash.in   (contents, props changed)
  head/java/icedtea-web/files/patch-completion_policyeditor.bash.in   (contents, props changed)
Modified:
  head/java/icedtea-web/Makefile

Modified: head/java/icedtea-web/Makefile
==============================================================================
--- head/java/icedtea-web/Makefile	Sat Aug  8 00:53:15 2020	(r544355)
+++ head/java/icedtea-web/Makefile	Sat Aug  8 01:33:27 2020	(r544356)
@@ -38,7 +38,7 @@ CONFIGURE_ARGS+=	--with-jdk-home="${JAVA_HOME}"
 CONFIGURE_ARGS+=	--with-junit="${JUNIT_JAR}"
 CONFIGURE_ARGS+=	--with-rhino="${RHINO_JAR}"
 CONFIGURE_ARGS+=	--with-tagsoup="${TAGSOUP_JAR}"
-CONFIGURE_ARGS+=	--with-itw-libs="BUNDLED"
+CONFIGURE_ARGS+=	--with-itw-libs="DISTRIBUTION"
 CONFIGURE_ARGS+=	--enable-shell-launchers
 .for opt in asm chrome chromium ecj epiphany firefox jacoco midori opera
 CONFIGURE_ARGS+=	--without-${opt}

Added: head/java/icedtea-web/files/patch-completion_javaws.bash.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/icedtea-web/files/patch-completion_javaws.bash.in	Sat Aug  8 01:33:27 2020	(r544356)
@@ -0,0 +1,8 @@
+--- completion/javaws.bash.in.orig	2020-06-04 13:08:14.000000000 +0200
++++ completion/javaws.bash.in	2020-07-31 20:16:56.895261000 +0200
+@@ -28,4 +28,4 @@
+       return 0
+     fi
+ }
+-complete -F _javaws javaws
++complete -F _javaws itweb-javaws

Added: head/java/icedtea-web/files/patch-completion_policyeditor.bash.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/icedtea-web/files/patch-completion_policyeditor.bash.in	Sat Aug  8 01:33:27 2020	(r544356)
@@ -0,0 +1,8 @@
+--- completion/policyeditor.bash.in.orig	2020-06-04 13:08:14.000000000 +0200
++++ completion/policyeditor.bash.in	2020-07-31 20:02:45.694743000 +0200
+@@ -10,4 +10,4 @@
+     COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
+     return 0
+ }
+-complete -F _policyeditor policyeditor
++complete -F _policyeditor itweb-policyeditor



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