e8c9eaf450
- format man pages using new jgroff, so that we can install a full set of documentation. - move INSTALL script into a separate script, so that adding a new user need not be done at the time of INSTALL. - add a few strlcpy to fix a few holes. This stuff is rather bad, though. - use terminfo instead of termcap, for better keycap names, fixing quite a few bugs that made it impossible to build that version along the way... - move scripts into /usr/local/bin instead of /usr/local/bin/Wnn4. - use @comment no checksum in packing list, even though pkg_add does not support that yet. Not quite completely ready, but getting there...
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
$OpenBSD: patch-Wnn_pubdic_Imakefile,v 1.1 2000/04/16 21:53:31 espie Exp $
|
|
--- Wnn/pubdic/Imakefile.orig Tue Aug 23 04:21:30 1994
|
|
+++ Wnn/pubdic/Imakefile Thu Apr 13 20:41:38 2000
|
|
@@ -96,11 +96,17 @@ LinkSourceFile(tankan.u,$(PUBDICSRC))
|
|
instserver:: install
|
|
|
|
WnnMakeDirectories(install,$(JWNNDICDIR))
|
|
-#if WnnInstallDicForcibly
|
|
+/*
|
|
+ * Bugfix.
|
|
+ * Because "NO" is same to "YES"!!
|
|
+ * And some additional bugfix.
|
|
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/20
|
|
+ */
|
|
+#if (WnnInstallDicForcibly == YES)
|
|
InstallMultiple($(DIC),$(JWNNPUBDICDIR))
|
|
|
|
install::
|
|
- @for i in $(DICS); \
|
|
+ @for i in $(DIC); \
|
|
do \
|
|
$(WNNTOUCH) $(DESTDIR)$(JWNNPUBDICDIR)/$$i ;\
|
|
done
|
|
@@ -108,7 +114,20 @@ install::
|
|
#else
|
|
WnnInstallDicMultiple($(DIC),$(JWNNPUBDICDIR))
|
|
#endif
|
|
+
|
|
+#if (WnnInstallDicForcibly == YES)
|
|
InstallMultiple($(FZKDATA),$(JWNNPUBDICDIR))
|
|
+
|
|
+install::
|
|
+ @for i in $(FZKDATA); \
|
|
+ do \
|
|
+ $(WNNTOUCH) $(DESTDIR)$(JWNNPUBDICDIR)/$$i ;\
|
|
+ done
|
|
+
|
|
+#else
|
|
+WnnInstallDicMultiple($(FZKDATA),$(JWNNPUBDICDIR))
|
|
+#endif
|
|
+
|
|
InstallMultiple($(FZK_SRC),$(JWNNFZKSRCDIR))
|
|
|
|
depend::
|