diff options
Diffstat (limited to 'chinese/telnet/Makefile')
-rw-r--r-- | chinese/telnet/Makefile | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/chinese/telnet/Makefile b/chinese/telnet/Makefile index 3ced2153c814..8291e047d308 100644 --- a/chinese/telnet/Makefile +++ b/chinese/telnet/Makefile @@ -8,10 +8,21 @@ PORTNAME= telnet PORTVERSION= 1.0 CATEGORIES= chinese -MASTER_SITES= ftp://bsd.sinica.edu.tw/pub/FreeBSD/taiwan/users/woju/source/ -DISTNAME= telnet8-${PORTVERSION} -EXTRACT_SUFX= .tgz +MASTER_SITES= # none +DISTFILES= # none -MAINTAINER= woju@freebsd.ntu.edu.tw +MAINTAINER= leeym@caece.net + +SRCDIR= /usr/src/usr.bin/telnet + +do-extract: +.if exists (${SRCDIR}) + @${MKDIR} work + @${CP} -R ${SRCDIR} ${WRKSRC} +.else +BROKEN= "You need to build this port with ${SRCDIR}" +.endif + +MAN1= telnet.1 .include <bsd.port.mk> |