diff options
author | asami <asami@FreeBSD.org> | 1997-06-07 11:20:00 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-06-07 11:20:00 +0000 |
commit | ec451a714f14f5864deb693c2660c1235b32ed01 (patch) | |
tree | 4941a088611a99b0e2cb0ae28813774aa7b1fba1 /japanese/skk/Makefile | |
parent | c3ebb0e82fd923b92d616511f48a4bad16b4adc9 (diff) | |
download | FreeBSD-ports-ec451a714f14f5864deb693c2660c1235b32ed01.zip FreeBSD-ports-ec451a714f14f5864deb693c2660c1235b32ed01.tar.gz |
Properly install-info'ify this port. Everything is done from the
Makefile and PLIST, since the texinfo source contains Japanese and
our makeinfo chokes on it.
Diffstat (limited to 'japanese/skk/Makefile')
-rw-r--r-- | japanese/skk/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/japanese/skk/Makefile b/japanese/skk/Makefile index 82e2cf3..0f8d8e1 100644 --- a/japanese/skk/Makefile +++ b/japanese/skk/Makefile @@ -3,7 +3,7 @@ # Date created: 04 Mar 1997 # Whom: Makoto Matsushita <matusita@jp.freebsd.org> # -# $Id: Makefile,v 1.4 1997/03/04 09:17:05 asami Exp $ +# $Id: Makefile,v 1.5 1997/03/04 09:34:37 asami Exp $ # DISTNAME= skk9.6 @@ -36,5 +36,10 @@ post-install: echo "fi" >> ${STARTUP_SCRIPT}; \ chmod 755 ${STARTUP_SCRIPT}; \ fi + if [ ! -f ${PREFIX}/info/dir ]; then \ + sed -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ + fi +# Our makeinfo can't handle files with Japanese characters. :< + install-info --section="The Emacs editor and associated tools" --entry="* Skk: (skk.info). Yet another Japanese Inputting Method. (Japanese)" ${PREFIX}/info/skk.info ${PREFIX}/info/dir .include <bsd.port.mk> |