mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
b92c42351e
instead. The hack fell over on the Alpha architecture anyway. Quoting Frank da Cruz <fdc@watsun.cc.columbia.edu>: ``P.S. The "default" man page is ckuker.nr. You only need to run ckuker.cpp through "make manpage" if you are building a custom man page (like the one that we make for HP-UX). Since FreeBSD does not have a custom man page, there is no need to do this.'' The Kermit port is now fully Alpha-ready, too.
34 lines
814 B
Sed
34 lines
814 B
Sed
PROG= kermit
|
|
CFLAGS+= -I${.CURDIR} -DBSD44 -DCK_CURSES -DTCPSOCKET \
|
|
-DNOCOTFMC -DTPUTSARGTYPE=int -DUSE_STRERROR -DFREEBSD3 \
|
|
-DUSE_UU_LOCK \
|
|
-funsigned-char
|
|
SRCS= ckcmai.c ckucmd.c ckuusr.c ckuus2.c ckuus3.c ckuus4.c ckuus5.c \
|
|
ckuus6.c ckuus7.c ckuusx.c ckuusy.c ckcpro.c ckcfns.c ckcfn2.c \
|
|
ckcfn3.c ckuxla.c ckucns.c ckutio.c ckufio.c ckudia.c ckuscr.c \
|
|
ckcnet.c ckusig.c ckclib.c ckctel.c ckcuni.c ckupty.c
|
|
|
|
BINDIR=%%PREFIX%%/bin
|
|
MANDIR=%%PREFIX%%/man/man
|
|
|
|
CLEANFILES+= ckcpro.c ckcwart.o wart kermit.1
|
|
|
|
DPADD= ${LIBCURSES} ${LIBTERM}
|
|
LDADD= -lncurses -lcrypt -lutil
|
|
|
|
.SUFFIXES: .w
|
|
|
|
.w.c:
|
|
./wart ${.IMPSRC} ${.TARGET}
|
|
|
|
wart: ckwart.c
|
|
$(CC) -o wart ${.CURDIR}/ckwart.c
|
|
|
|
ckcpro.c: ckcpro.w
|
|
ckcpro.c: wart
|
|
|
|
kermit.1: ckuker.nr
|
|
cp ckuker.nr kermit.1
|
|
|
|
.include <bsd.prog.mk>
|