openbsd-ports/security/cops/Makefile
espie a813079932 Kill a large set of deprecated variables.
Thoroughly unsubtle, most mkdir -p should probably be INSTALL* at
*install stage, and echo/ECHO_MSG is somewhat unsorted.

It's quite possible I missed a few automated changes...
2000-02-11 01:09:59 +00:00

36 lines
1.2 KiB
Makefile

# $OpenBSD: Makefile,v 1.4 2000/02/11 01:10:11 espie Exp $
# Original from: Ejovi Nuwere <ejovi@ejovi.net>
DISTNAME= cops_104
PKGNAME= cops-1.04
CATEGORIES= security
NO_CDROM= "NOFEE: Can not sell"
MASTER_SITES= ftp://ftp.cert.org/pub/tools/cops/1.04/
EXTRACT_SUFX= .tar.Z
MAINTAINER= ports@OpenBSD.ORG
EXECUTABLE = home.chk user.chk is_writable crc crc_check \
addto clearfiles filewriters members tilde is_able
C_SRC = home.chk.c user.chk.c is_able.c is_something.c \
addto.c clearfiles.c filewriters.c members.c tilde.c \
crc.c crc_check.c
pre-build:
(cd ${WRKSRC} ; ./reconfig)
(cd ${WRKSRC} ; \
sed 's,^SECURE=/usr/foo/bar,SECURE=${PREFIX}/cops,g' < cops | sed '/^$$SECURE\/passwd\.chk.*/d' | sed 's,SECURE_USERS="foo@bar\.edu",SECURE_USERS="root@localhost",g' | sed 's/passwd\.chk pass.chk //g' > cops.out ; \
mv cops.out cops ; chmod u+x cops)
do-build:
(cd ${WRKSRC} ; make EXECUTABLE="${EXECUTABLE}" C_SRC="${C_SRC}")
do-install:
(cd ${WRKDIR} ; rm -rf ${PREFIX}/cops ; mkdir -p ${PREFIX}/cops ; \
cp -R ${DISTNAME}/* ${PREFIX}/cops ; \
chmod -R go-rwx ${PREFIX}/cops ; \
rm -rf ${PREFIX}/cops/*.old ${PREFIX}/cops/src)
.include <bsd.port.mk>