freebsd-ports/security/tripwire12/Makefile
Baptiste Daroussin c11f1a0a1c Fix pkg name collisions
With hat:	portmgr
2013-11-06 17:52:42 +00:00

62 lines
1.7 KiB
Makefile

# Created by: Joe Greco <jgreco@ns.sol.net>
# $FreeBSD$
PORTNAME= tripwire
PORTVERSION= 1.2
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_NETBSD}
PKGNAMESUFFIX= 12
MAINTAINER= jgreco@ns.sol.net
COMMENT= File system security and verification program
MAN5= tw.config.5
MAN8= siggen.8 tripwire.8
NO_CDROM= cannot be redistributed for more than the cost of duplication
NO_PACKAGE= requires local database to be built
USES= perl5
USE_PERL5= build
MAKE_JOBS_UNSAFE=yes
TWCONFIG?= ${FILESDIR}/tw.conf.freebsd8
NO_STAGE= yes
post-extract:
@ (cd ${WRKDIR}; tar xpf T1.2.tar)
post-patch:
@${REINPLACE_CMD} -i '' -e 's|/secureplace/bin|${PREFIX}/bin|' \
-e 's|/usr/man|${PREFIX}/man|' ${WRKSRC}/Makefile
${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e \
's|bs_ntohl|ntohl|g;s|bs_htonl|htonl|g'
pre-configure:
@ ${CP} ${FILESDIR}/conf-freebsd8.h ${WRKSRC}/configs
@ ${CP} ${TWCONFIG} ${WRKSRC}/configs/tw.conf.freebsd8
post-install:
@ ${MKDIR} /var/adm/tcheck
@ ${CP} ${TWCONFIG} /var/adm/tcheck/tw.config
# Creating tripwire database
.ifndef NO_DB_BUILD
@ (cd /var/adm/tcheck; tripwire -initialize)
.if defined(TRIPWIRE_FLOPPY) && ${TRIPWIRE_FLOPPY} == YES
# preparing the floppy
@ disklabel -w -B /dev/rfd0c fd1440
@ newfs -u 0 -t 0 -i 196608 -m 0 -T minimum -o space /dev/rfd0c
mount /dev/fd0c /mnt
# transferring things to the floppy
@ ${CP} -p /var/adm/tcheck/tw.config /mnt/tw.config
@ ${GZIP_CMD} < /var/adm/tcheck/databases/tw.db_`hostname` \
> /mnt/tw.db_`hostname`.gz
@ ${CP} -p ${FILESDIR}/twcheck /usr/bin/gunzip \
${PREFIX}/bin/tripwire \
/mnt/
@ ${CHMOD} 555 /mnt/tripwire /mnt/gunzip /mnt/twcheck
@ umount /mnt
# Do not forget to remove and write-protect the floppy.
.endif
.endif
.include <bsd.port.mk>