diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-05-21 07:24:28 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-05-21 07:24:28 +0000 |
commit | f9046b3982346eddafd5cfcce6ad0ca8b2414935 (patch) | |
tree | 47a9651ba309201e5fa90d4bec584991e66a0ba2 /japanese/mule-freewnn | |
parent | e45394aa06e3aa4f1184c27927da7c6dfcefaeb8 (diff) | |
download | ports-f9046b3982346eddafd5cfcce6ad0ca8b2414935.tar.gz ports-f9046b3982346eddafd5cfcce6ad0ca8b2414935.zip |
Notes
Diffstat (limited to 'japanese/mule-freewnn')
-rw-r--r-- | japanese/mule-freewnn/Makefile | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/japanese/mule-freewnn/Makefile b/japanese/mule-freewnn/Makefile index 5dedba42f286..ceb29352e8a6 100644 --- a/japanese/mule-freewnn/Makefile +++ b/japanese/mule-freewnn/Makefile @@ -3,7 +3,7 @@ # Date created: 22 November 1994 # Whom: Satoshi Asami (asami) # -# $Id: Makefile,v 1.25 1996/11/11 10:12:33 max Exp $ +# $Id: Makefile,v 1.26 1996/11/13 12:41:04 asami Exp $ # DISTNAME= mule-2.3 @@ -32,11 +32,20 @@ pre-build: post-install: # note that rcs-checkn and any2ps are scripts - strip ${PREFIX}/bin/b2m - strip ${PREFIX}/bin/coco - strip ${PREFIX}/bin/ctags - strip ${PREFIX}/bin/etags - strip ${PREFIX}/bin/m2ps - strip ${PREFIX}/bin/mule-19.28 +.for file in b2m coco ctags etags m2ps mule-19.28 + strip ${PREFIX}/bin/${file} +.endfor + if [ ! -f ${PREFIX}/info/dir ]; then \ + sed -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ + fi +.for info in emacs vip forms gnus cl sc + install-info ${PREFIX}/info/${info} ${PREFIX}/info/dir +.endfor +# Our makeinfo can't handle files with Japanese characters. :< + install-info --section="The Emacs editor and associated tools" --entry="* Antenews-jp: (antenews-jp). Version 19 Antenews. (Japanese)" ${PREFIX}/info/antenews-jp ${PREFIX}/info/dir + install-info --section="The Emacs editor and associated tools" --entry="* Mule: (mule). Multilingual Enhancement to GNU Emacs." ${PREFIX}/info/mule ${PREFIX}/info/dir + install-info --section="The Emacs editor and associated tools" --entry="* Mule-jp: (mule-jp). Multilingual Enhancement to GNU Emacs. (Japanese)" ${PREFIX}/info/mule-jp ${PREFIX}/info/dir + install-info --section="The Emacs editor and associated tools" --entry="* Egg-jp: (egg-jp). Japanese/Chinese Inputting Method. (Japanese)" ${PREFIX}/info/egg-jp ${PREFIX}/info/dir + install-info --section="The Emacs editor and associated tools" --entry="* Canna-jp: (canna-jp). Another Japanese Inputting Method. (Japanese)" ${PREFIX}/info/canna-jp ${PREFIX}/info/dir .include <bsd.port.mk> |