mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
c86721c924
don't install kermit as setgid Suggested-by: pst
33 lines
794 B
Sed
33 lines
794 B
Sed
PROG= kermit
|
|
CFLAGS+= -I${.CURDIR} -DBSD44 -DCK_CURSES -DDYNAMIC -DTCPSOCKET \
|
|
-DNOCOTFMC -DSETREUID -DSAVEDUID -DNDSYSERRLIST
|
|
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 ckucon.c ckutio.c ckufio.c ckudia.c ckuscr.c \
|
|
ckcnet.c ckusig.c
|
|
|
|
BINDIR=%%PREFIX%%/bin
|
|
MANDIR=%%PREFIX%%/man/man
|
|
|
|
CLEANFILES+= ckcpro.c ckcwart.o wart kermit.1
|
|
|
|
DPADD= ${LIBCURSES} ${LIBTERM}
|
|
LDADD= -lcurses -ltermcap
|
|
|
|
.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.cpp
|
|
$(CPP) ckuker.cpp | grep -v ^$$ | grep -v ^\# > kermit.1 || \
|
|
rm -f kermit.1
|
|
|
|
.include <bsd.prog.mk>
|