summaryrefslogtreecommitdiff
path: root/java/icedtea-web/files/patch-Makefile.in
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2011-07-11 20:50:42 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2011-07-11 20:50:42 +0000
commit3fd4f7963c39d1901c4f27cfe58bcae4e82d128a (patch)
treec5d0201b340825ad44d8204d1a0a40e5f095b9b6 /java/icedtea-web/files/patch-Makefile.in
parent- Mark BROKEN: does not compile (diff)
The IcedTea-Web project provides a Free Software web browser plugin running
applets written in the Java programming language and an implementation of Java Web Start, originally based on the NetX project. WWW: http://icedtea.classpath.org/wiki/IcedTea-Web
Notes
Notes: svn path=/head/; revision=277566
Diffstat (limited to 'java/icedtea-web/files/patch-Makefile.in')
-rw-r--r--java/icedtea-web/files/patch-Makefile.in45
1 files changed, 45 insertions, 0 deletions
diff --git a/java/icedtea-web/files/patch-Makefile.in b/java/icedtea-web/files/patch-Makefile.in
new file mode 100644
index 000000000000..fb33798514d8
--- /dev/null
+++ b/java/icedtea-web/files/patch-Makefile.in
@@ -0,0 +1,45 @@
+--- Makefile.in.orig 2011-06-08 17:59:15.371244000 -0400
++++ Makefile.in 2011-07-11 16:37:49.000000000 -0400
+@@ -758,7 +758,7 @@
+
+ netx-source-files.txt:
+ find $(NETX_SRCDIR) -name '*.java' | sort > $@
+-@WITH_RHINO_FALSE@ sed -i '/RhinoBasedPacEvaluator/ d' $@
++@WITH_RHINO_FALSE@ sed -i -e '/RhinoBasedPacEvaluator/ d' $@
+
+ stamps/netx.stamp: netx-source-files.txt stamps/bootstrap-directory.stamp
+ mkdir -p $(NETX_DIR)
+@@ -897,7 +897,7 @@
+ fi
+
+ check-pac-functions: stamps/bootstrap-directory.stamp
+- ./jrunscript $(abs_top_srcdir)/tests/netx/pac/pac-funcs-test.js \
++ $(SHELL) jrunscript $(abs_top_srcdir)/tests/netx/pac/pac-funcs-test.js \
+ $$(readlink -f $(abs_top_srcdir)/netx/net/sourceforge/jnlp/runtime/pac-funcs.js)
+
+ junit-runner-source-files.txt:
+@@ -926,10 +926,11 @@
+
+ run-netx-unit-tests: stamps/netx-unit-tests-compile.stamp \
+ $(JUNIT_RUNNER_JAR)
+- cp {$(NETX_UNIT_TEST_SRCDIR),$(NETX_UNIT_TEST_DIR)}/net/sourceforge/jnlp/basic.jnlp
++ cp $(NETX_UNIT_TEST_SRCDIR)/net/sourceforge/jnlp/basic.jnlp \
++ $(NETX_UNIT_TEST_DIR)/net/sourceforge/jnlp
+ cd $(NETX_UNIT_TEST_DIR) ; \
+ class_names= ; \
+- for test in `find -type f` ; do \
++ for test in `find . -type f` ; do \
+ class_name=`echo $$test | sed -e 's|\.class$$||' -e 's|^\./||'` ; \
+ class_name=`echo $$class_name | sed -e 's|/|.|g' ` ; \
+ class_names="$$class_names $$class_name" ; \
+@@ -963,9 +964,7 @@
+ @ENABLE_PLUGIN_TRUE@ $(PLUGIN_TEST_SRCS) ;
+ @ENABLE_PLUGIN_TRUE@ $(BOOT_DIR)/bin/jar cf plugin/tests/LiveConnect/PluginTest.jar \
+ @ENABLE_PLUGIN_TRUE@ plugin/tests/LiveConnect/*.class ;
+-@ENABLE_PLUGIN_TRUE@ cp -pPR $(SRC_DIR_LINK) $(abs_top_srcdir)/plugin/tests/LiveConnect/*.{js,html} \
+-@ENABLE_PLUGIN_TRUE@ plugin/tests/LiveConnect ;
+-@ENABLE_PLUGIN_TRUE@ echo "Done. Now launch \"firefox file://`pwd`/index.html\"" ;
++@ENABLE_PLUGIN_TRUE@ echo "Done. Now launch \"firefox file://$(abs_top_srcdir)/plugin/tests/LiveConnect/index.html\"" ;
+ @ENABLE_PLUGIN_TRUE@ mkdir -p stamps
+ @ENABLE_PLUGIN_TRUE@ touch stamps/plugin-tests.stamp
+