diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-11-30 10:34:48 +0000 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-11-30 10:34:48 +0000 |
commit | 223f3015a8a2903b33abca254ec88dd63b120bcc (patch) | |
tree | 6a59c116d93241779190d4440614c8095efd83ab /mail/im/Makefile | |
parent | 27a245a08961b06abb432bf1c89008338abaa3d6 (diff) | |
download | ports-223f3015a8a2903b33abca254ec88dd63b120bcc.tar.gz ports-223f3015a8a2903b33abca254ec88dd63b120bcc.zip |
Notes
Diffstat (limited to 'mail/im/Makefile')
-rw-r--r-- | mail/im/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/mail/im/Makefile b/mail/im/Makefile new file mode 100644 index 000000000000..ac44f671b7c8 --- /dev/null +++ b/mail/im/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: IM +# Version required: 76 +# Date created: 13 November 1997 +# Whom: Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp> +# +# $Id$ +# + +DISTNAME= im-76 +CATEGORIES= mail +MASTER_SITES= ftp://ftp.aist-nara.ac.jp/pub/elisp/Mew/ \ + ftp://ftp.kyushu-u.ac.jp/pub/Misc/mew/ \ + ftp://ports.jp.freebsd.org/pub/FreeBSD-jp/ports-jp/LOCAL_PORTS/ + +MAINTAINER= kiri@kiri.toba-cmt.ac.jp + +USE_PERL5= yes + +GNU_CONFIGURE= yes + +MANLANG= ja_JP.EUC +MAN1= imali.1 imget.1 imsetup.1 imstore.1 + +PORTDOCDIR= ${PREFIX}/share/doc/im +SAMPLEDIR= ${PREFIX}/share/examples/im +MANFILES= imali.jis imget.jis imsetup.jis imstore.jis +PORTDOCS= 00readme imget2.jis imput imput.jis + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${PORTDOCDIR} ${SAMPLEDIR} + @(cd ${WRKSRC}; \ + (cd man; ${INSTALL_DATA} ${PORTDOCS} ${PORTDOCDIR}); \ + ${INSTALL_DATA} dot.im/* ${SAMPLEDIR}; \ + ) +.endif +.for f in ${MANFILES} + @${INSTALL_MAN} ${WRKSRC}/man/${f} \ + ${PREFIX}/man/ja_JP.EUC/man1/`${BASENAME} ${f} .jis`.1 +.endfor + +.include <bsd.port.mk> |