1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
freebsd-ports/chinese/telnet/Makefile
Foxfair Hu 46457e2f3f 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-)
2000-10-10 02:45:07 +00:00

35 lines
668 B
Makefile

# New ports collection makefile for: telnet8
# Date created: 13 Feb 1999
# Whom: Ching-Hong Wu <woju@freebsd.ntu.edu.tw>
#
# $FreeBSD$
#
PORTNAME= telnet
PORTVERSION= 1.0
CATEGORIES= chinese
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= leeym@cae.ce.ntu.edu.tw
SRCDIR= /usr/src/usr.bin/telnet
do-extract:
.if exists (${SRCDIR})
@${MKDIR} ${WRKDIR}
@${CP} -R ${SRCDIR} ${WRKSRC}
.else
BROKEN= "You need to build this port with ${SRCDIR}"
.endif
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>