diff options
Diffstat (limited to 'mail/im/Makefile')
-rw-r--r-- | mail/im/Makefile | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/mail/im/Makefile b/mail/im/Makefile index d1fad1b04841..5c23c0e01e5a 100644 --- a/mail/im/Makefile +++ b/mail/im/Makefile @@ -1,12 +1,12 @@ # New ports collection makefile for: IM -# Version required: 76 +# Version required: 100 # Date created: 13 November 1997 # Whom: Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp> # -# $Id: Makefile,v 1.2 1998/01/09 21:37:57 max Exp $ +# $Id: Makefile,v 1.3 1998/06/06 03:47:23 itojun Exp $ # -DISTNAME= im-76 +DISTNAME= im-100 CATEGORIES= mail MASTER_SITES= ftp://ftp.mew.org/pub/Mew/ \ ftp://ftp.kyushu-u.ac.jp/pub/Misc/mew/ \ @@ -17,26 +17,21 @@ MAINTAINER= kiri@kiri.toba-cmt.ac.jp USE_PERL5= yes GNU_CONFIGURE= yes - -MANLANG= ja -MAN1= imali.1 imget.1 imsetup.1 imstore.1 +CONFIGURE_ARGS= --libdir=${PREFIX}/etc +# If you use RPOP instead of APOP, comment out following line. +#CONFIGURE_ARGS+=--enable-rpop 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 +PORTDOCS= 00changes 00copyright 00copyright.jis 00perl 00readme 00usage post-install: .if !defined(NOPORTDOCS) - @${MKDIR} ${PORTDOCDIR} ${SAMPLEDIR} - @(cd ${WRKSRC}; \ - (cd man; ${INSTALL_DATA} ${PORTDOCS} ${PORTDOCDIR}); \ - ${INSTALL_DATA} dot.im/* ${SAMPLEDIR}; \ - ) + @${MKDIR} ${PORTDOCDIR}/man ${SAMPLEDIR} + @cd ${WRKSRC}; \ + ${INSTALL_DATA} ${PORTDOCS} ${PORTDOCDIR}; \ + ${INSTALL_DATA} man/* ${PORTDOCDIR}/man; \ + ${INSTALL_DATA} dot.im/* ${SAMPLEDIR} .endif -.for f in ${MANFILES} - @${INSTALL_MAN} ${WRKSRC}/man/${f} \ - ${PREFIX}/man/ja/man1/`${BASENAME} ${f} .jis`.1 -.endfor .include <bsd.port.mk> |