mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
68 lines
1.8 KiB
Makefile
68 lines
1.8 KiB
Makefile
# Created by: Joe Greco <jgreco@ns.sol.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tripwire
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= NETBSD
|
|
PKGNAMESUFFIX= 12
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= File system security and verification program
|
|
|
|
NO_CDROM= cannot be redistributed for more than the cost of duplication
|
|
NO_PACKAGE= requires local database to be built
|
|
ONLY_FOR_ARCHS= i386
|
|
ONLY_FOR_ARCHS_REASON= Unknown BYTEORDER
|
|
USES= perl5
|
|
USE_PERL5= build
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
TDATADIR= ${STAGEDIR}/var/local/tcheck
|
|
MAKE_ARGS= BINDIR=${STAGEDIR}${PREFIX}/bin \
|
|
MANDIR=${STAGEDIR}${PREFIX}/man \
|
|
DATADIR=${DATADIR}
|
|
NO_DB_BUILD= yes
|
|
|
|
TWCONFIG?= ${FILESDIR}/tw.conf.freebsd8
|
|
|
|
post-extract:
|
|
@ (cd ${WRKDIR}; tar xpf T1.2.tar)
|
|
|
|
post-patch:
|
|
${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} ${TDATADIR}
|
|
@ ${CP} ${TWCONFIG} /${TDATADIR}/tw.config.dist
|
|
# 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.post.mk>
|