pkgsrc/security/chkrootkit/Makefile
adrianp bc374450b0 Update chkrootkit to 0.44
- Fix false positive on NetBSD for "login".  Thanks to Richard Ibbotson for
  helping sort this out.
- Install main shell script and documentation.

chkwtmp.c
	fix: del counter (Thanks to Dietrich Raisin)
chkproc.c
	fix: better support for Linux threads
chkrootkit;
	new rootkit detected: Madalin rootkit
	top and find tests improved for Suse Linux
	more ports added in the bindshell test
	fix: FreeBSD false positives
	fix: slammer detection
	lots of minor bug fixes
2004-09-28 10:41:59 +00:00

59 lines
1.6 KiB
Makefile

# $NetBSD: Makefile,v 1.6 2004/09/28 10:41:59 adrianp Exp $
#
DISTNAME= chkrootkit-0.44
CATEGORIES= security
MASTER_SITES= ftp://ftp.pangeia.com.br/pub/seg/pac/
MAINTAINER= pancake@phreaker.net
HOMEPAGE= http://www.chkrootkit.org/
COMMENT= Locally checks for signs of a rootkit
PKG_INSTALLATION_TYPES= overwrite pkgviews
USE_GNU_TOOLS+= make
USE_BUILDLINK3= yes
NO_CONFIGURE= yes
PROGRAMS= chkdirs chklastlog chkproc chkwtmp ifpromisc strings-static
DOCDIR= ${PREFIX}/share/doc/chkrootkit
SUBST_CLASSES= helper
SUBST_STAGE.helper= post-patch
SUBST_FILES.helper= chkrootkit
SUBST_SED.helper= -e "s|./chklastlog|${PREFIX}/bin/chklastlog|g" \
-e "s|./chkproc|${PREFIX}/bin/chkproc|g" \
-e "s|./chkwtmp|${PREFIX}/bin/chkwtmp|g" \
-e "s|./ifpromisc|${PREFIX}/bin/ifpromisc|g" \
-e "s|./strings-static|${PREFIX}/bin/strings-static|g" \
-e "s|./chkdirs|${PREFIX}/bin/chkdirs|g" \
-e "s|/bin/sh|${SH}|g"
.include "../../mk/compiler.mk"
.if ${OPSYS} == "SunOS"
PROGRAMS+= check_wtmpx
PLIST_SUBST+= WTMPX=""
CFLAGS+= -DSOLARIS2
LDFLAGS+= -lsocket
. if empty(CC_VERSION:Mgcc-*)
MAKE_ENV+= STATIC="-B static"
. else
MAKE_ENV+= STATIC="-static"
. endif
.else
PLIST_SUBST+= WTMPX="@comment "
MAKE_ENV+= STATIC="-static"
.endif
INSTALLATION_DIRS+= bin
do-install:
cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PROGRAMS} ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/chkrootkit ${PREFIX}/bin
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/chkrootkit
${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/README.chklastlog ${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/README.chkwtmp ${DOCDIR}
.include "../../mk/bsd.pkg.mk"