mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
3d5ba49705
Also add it to ports/LEGAL.
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# New ports collection makefile for: ztelnet
|
|
# Date created: 15 Mar 1998
|
|
# Whom: CHOI Junho <junker@jazz.snu.ac.kr>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# In this ports..
|
|
# - new compilation diff for FreeBSD(now we can upload!)
|
|
# - linux patch(implied -8 and stairway effect) is applied
|
|
# - improved sz and rz patch, and new ztelnet manpage(cmascott patch)
|
|
# Thanks to Carl Mascott <cmascott@world.std.com>
|
|
# NOTE: in first post-patch, we can ignore warnings.
|
|
|
|
PORTNAME= ztelnet
|
|
PORTVERSION= 1.0.p3
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.kr.freebsd.org/pub/users/cjh/unix-app/net/ztelnet/
|
|
DISTFILES= ztelnet-linux.tar.gz ztelnet-patch.tar.gz \
|
|
ztelnet-patch-cmascott.tar.gz
|
|
|
|
MAINTAINER= cjh@FreeBSD.org
|
|
|
|
RESTRICTED= "zmodem code has restrictive copyright"
|
|
|
|
NO_WRKSUBDIR= yes
|
|
PATCH_STRIP= -p1
|
|
MAN1= ztelnet.1
|
|
|
|
post-patch:
|
|
# we can ignore warnings
|
|
@( cd ${WRKSRC}/ztelnet && \
|
|
${PATCH} -s -p1 < ${WRKSRC}/ztelnet.patch || \
|
|
${TRUE} ) > /dev/null 2>&1
|
|
# but it is not
|
|
@cd ${WRKSRC}/ztelnet && \
|
|
${PATCH} -s -p1 < ${WRKSRC}/rz.patch && \
|
|
${PATCH} -s -p1 < ${WRKSRC}/sz.patch
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}/ztelnet && \
|
|
${MAKE} clean && \
|
|
${MAKE} 4.4bsd
|
|
|
|
do-install:
|
|
@cd ${WRKSRC}/ztelnet; \
|
|
${MKDIR} ${PREFIX}/bin; \
|
|
${INSTALL_PROGRAM} telnet/telnet ${PREFIX}/bin/ztelnet
|
|
${INSTALL_MAN} ${WRKSRC}/ztelnet.1 ${PREFIX}/man/man1/ztelnet.1
|
|
|
|
.include <bsd.port.mk>
|