diff options
author | Foxfair Hu <foxfair@FreeBSD.org> | 2000-10-10 02:45:07 +0000 |
---|---|---|
committer | Foxfair Hu <foxfair@FreeBSD.org> | 2000-10-10 02:45:07 +0000 |
commit | 46457e2f3f82c2514b243a6a4064c2b3be6443c1 (patch) | |
tree | 95dc8a688ad9b485afda7bd7ac98be1edc9cf0ab /chinese/telnet | |
parent | - Fix MASTER_SITES/DISTNAME (diff) |
Quick fix this port after new ports world built, change the program
name (after make) to zh-telnet, so as its man page.
Pointed out by: Asami.(-PW-)
Notes
Notes:
svn path=/head/; revision=33639
Diffstat (limited to 'chinese/telnet')
-rw-r--r-- | chinese/telnet/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chinese/telnet/Makefile b/chinese/telnet/Makefile index 6d5ac54d3775..556956027c99 100644 --- a/chinese/telnet/Makefile +++ b/chinese/telnet/Makefile @@ -23,6 +23,12 @@ do-extract: BROKEN= "You need to build this port with ${SRCDIR}" .endif -MAN1= telnet.1 +MAN1= zh-telnet.1 + +do-install: + @cd ${WRKSRC}; \ + ${CP} telnet.1 ${MAN1}; \ + ${INSTALL_PROGRAM} ${WRKSRC}/telnet ${PREFIX}/bin/zh-telnet; \ + ${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1 .include <bsd.port.mk> |