248aee623c
configure FreeBSD so that various databases such as passwd and group can be looked up using flat files, NIS, or Hesiod. = Hesiod has been added to libc (see hesiod(3)). = A library routine for parsing nsswitch.conf and invoking callback functions as specified has been added to libc (see nsdispatch(3)). = The following C library functions have been modified to use nsdispatch: . getgrent, getgrnam, getgrgid . getpwent, getpwnam, getpwuid . getusershell . getaddrinfo . gethostbyname, gethostbyname2, gethostbyaddr . getnetbyname, getnetbyaddr . getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr = host.conf has been removed from src/etc. rc.network has been modified to warn that host.conf is no longer used at boot time. In addition, if there is a host.conf but no nsswitch.conf, the latter is created at boot time from the former. Obtained from: NetBSD
72 lines
2.1 KiB
Makefile
72 lines
2.1 KiB
Makefile
# @(#)Makefile 8.2 (Berkeley) 4/2/94
|
|
# $FreeBSD$
|
|
|
|
PROG= chpass
|
|
CFLAGS+=-Wall
|
|
SRCS= chpass.c edit.c field.c pw_copy.c pw_scan.c pw_util.c pw_yp.c \
|
|
table.c util.c ypxfr_misc.c ${GENSRCS}
|
|
GENSRCS=yp.h yp_clnt.c yppasswd.h yppasswd_clnt.c yppasswd_private.h \
|
|
yppasswd_private_clnt.c yppasswd_private_xdr.c
|
|
BINMODE=4555
|
|
.PATH: ${.CURDIR}/../../usr.sbin/pwd_mkdb ${.CURDIR}/../../usr.sbin/vipw \
|
|
${.CURDIR}/../../libexec/ypxfr \
|
|
${.CURDIR}/../../usr.sbin/rpc.yppasswdd \
|
|
${.CURDIR}/../../lib/libc/gen
|
|
CFLAGS+=-I${.CURDIR}/../../usr.sbin/pwd_mkdb -I${.CURDIR}/../../usr.sbin/vipw -I${.CURDIR}/../../lib/libc/gen
|
|
LINKS= ${BINDIR}/chpass ${BINDIR}/chfn
|
|
LINKS+= ${BINDIR}/chpass ${BINDIR}/chsh
|
|
LINKS+= ${BINDIR}/chpass ${BINDIR}/ypchpass
|
|
LINKS+= ${BINDIR}/chpass ${BINDIR}/ypchfn
|
|
LINKS+= ${BINDIR}/chpass ${BINDIR}/ypchsh
|
|
|
|
MLINKS= chpass.1 chfn.1 chpass.1 chsh.1
|
|
MLINKS+= chpass.1 ypchpass.1 chpass.1 ypchfn.1 chpass.1 ypchsh.1
|
|
|
|
COPTS+= -DYP -I. -I${.CURDIR}/../../libexec/ypxfr \
|
|
-I${.CURDIR}/../../usr.sbin/rpc.yppasswdd -Dyp_error=warnx
|
|
|
|
#Some people need this, uncomment to activate
|
|
#COPTS+= -DRESTRICT_FULLNAME_CHANGE
|
|
|
|
DPADD= ${LIBRPCSVC} ${LIBCRYPT} ${LIBMD}
|
|
LDADD+= -lrpcsvc -lcrypt -lmd
|
|
|
|
CLEANFILES= ${GENSRCS}
|
|
|
|
RPCGEN= rpcgen -C
|
|
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/yp.x
|
|
RPCSRC_PW= ${DESTDIR}/usr/include/rpcsvc/yppasswd.x
|
|
RPCSRC_PRIV= ${.CURDIR}/../../usr.sbin/rpc.yppasswdd/yppasswd_private.x
|
|
|
|
yp.h: ${RPCSRC}
|
|
${RPCGEN} -h -o ${.TARGET} ${RPCSRC}
|
|
|
|
yp_clnt.c: ${RPCSRC}
|
|
${RPCGEN} -l -o ${.TARGET} ${RPCSRC}
|
|
|
|
yppasswd.h: ${RPCSRC_PW}
|
|
${RPCGEN} -h -o ${.TARGET} ${RPCSRC_PW}
|
|
|
|
yppasswd_clnt.c: ${RPCSRC_PW}
|
|
${RPCGEN} -l -o ${.TARGET} ${RPCSRC_PW}
|
|
|
|
yppasswd_private.h: ${RPCSRC_PRIV}
|
|
${RPCGEN} -h -o ${.TARGET} ${RPCSRC_PRIV}
|
|
|
|
yppasswd_private_xdr.c: ${RPCSRC_PRIV}
|
|
${RPCGEN} -c -o ${.TARGET} ${RPCSRC_PRIV}
|
|
|
|
yppasswd_private_clnt.c: ${RPCSRC_PRIV}
|
|
${RPCGEN} -l -o ${.TARGET} ${RPCSRC_PRIV}
|
|
|
|
beforeinstall:
|
|
.for i in chpass chfn chsh ypchpass ypchfn ypchsh
|
|
[ ! -e ${DESTDIR}${BINDIR}/$i ] || \
|
|
chflags noschg ${DESTDIR}${BINDIR}/$i || true
|
|
.endfor
|
|
|
|
afterinstall:
|
|
-chflags schg ${DESTDIR}${BINDIR}/chpass
|
|
|
|
.include <bsd.prog.mk>
|