aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/confregdecode/files
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2001-05-29 17:02:57 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2001-05-29 17:02:57 +0000
commit17863b3fc99a8b46ab4ef6df895f357208bb4ea7 (patch)
tree2a64d76681248d9607b693868830270d7a0df7b3 /net-mgmt/confregdecode/files
parentcfe6e9364d9d1a80e7dd437aa2d6bfad4ed77d09 (diff)
Notes
Diffstat (limited to 'net-mgmt/confregdecode/files')
-rw-r--r--net-mgmt/confregdecode/files/confregdecode14
-rw-r--r--net-mgmt/confregdecode/files/patch-ab13
2 files changed, 27 insertions, 0 deletions
diff --git a/net-mgmt/confregdecode/files/confregdecode b/net-mgmt/confregdecode/files/confregdecode
new file mode 100644
index 000000000000..bc401781ca8a
--- /dev/null
+++ b/net-mgmt/confregdecode/files/confregdecode
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+#
+# Copyright (c)2000-2001 by MarcusCom, Inc. All rights reserved.
+# $Id: confregdecode.sh,v 1.3 2001/05/24 20:22:44 jmarcus Exp $
+#
+
+# Change this to your path to jre
+JRE=%%LOCALBASE%%/bin/javavm
+# End changeable things
+
+CLASSPATH=%%PREFIX%%/share/java/confregdecode.jar:${CLASSPATH}
+
+exec ${JRE} -classpath ${CLASSPATH} com.marcuscom.confregdecode.ConfregDecode
diff --git a/net-mgmt/confregdecode/files/patch-ab b/net-mgmt/confregdecode/files/patch-ab
new file mode 100644
index 000000000000..d6d7acf981b5
--- /dev/null
+++ b/net-mgmt/confregdecode/files/patch-ab
@@ -0,0 +1,13 @@
+--- Makefile.orig Thu May 24 22:06:27 2001
++++ Makefile Thu May 24 22:06:42 2001
+@@ -12,8 +12,8 @@
+ $(JAVAC) $(JAVAC_FLAGS) com/marcuscom/confregdecode/ConfregDecode.java
+
+ jar: all
+- jar -cvf cd.jar com/marcuscom/confregdecode/*.class
++ jar -cvf confregdecode.jar com/marcuscom/confregdecode/*.class
+
+ clean:
+ $(RM) -f com/marcuscom/confregdecode/*.class
+- $(RM) -f cd.jar
++ $(RM) -f cconfregdecode.jar