Index: head/security/tripwire/Makefile =================================================================== --- head/security/tripwire/Makefile (revision 454409) +++ head/security/tripwire/Makefile (revision 454410) @@ -1,184 +1,185 @@ # Created by: Cy Schubert # $FreeBSD$ PORTNAME= tripwire -PORTVERSION= 2.4.3.2 +PORTVERSION= 2.4.3.6 CATEGORIES= security MAINTAINER= cy@FreeBSD.org COMMENT= File system security and verification program LICENSE= GPLv2 USE_GITHUB= yes GH_ACCOUNT= Tripwire GH_PROJECT= tripwire-open-source NO_LICENSES_INSTALL= yes MAKE_JOBS_UNSAFE= yes USES= gmake ssl GNU_CONFIGURE= yes MAKE_ARGS= SYSPRE=${ARCH}-unknown-freebsd \ DESTDIR=${STAGEDIR} M4= /usr/bin/m4 # Tripwire database files are stored in TWDB. TWDB?= /var/db/tripwire # If TW_CLOBBER is set to true, the install script clobbers # previously installed config files. # # If TW_PROMPT is set to true, the install script is interactive. OPTIONS_SINGLE= TWCFG OPTIONS_SINGLE_TWCFG= TWCFG_ETC TWCFG_TWDB OPTIONS_DEFINE= TW_CLOBBER TW_PROMPT SW_ONLY DB_BUILD OPTIONS_DEFAULT= TWCFG_ETC TW_PROMPT DB_BUILD TWCFG_ETC_DESC= Put config files in ${ETCDIR} TWCFG_TWDB_DESC= Put config files in ${TWDB}/etc TW_CLOBBER_DESC= Clobber existing database files at install TW_PROMPT_DESC= Interactive install (ignored when PACKAGE_BUILDING) SW_ONLY_DESC= Install software only, do not post-configure (ignored when PACKAGE_BUILDING) DB_BUILD_DESC= Build database during post-install (ignored when PACKAGE_BUILDING) PACKAGE_BUILDING= yes .ifndef PACKAGE_BUILDING BROKEN= for testing only .endif .include # Tripwire config files are stored in TWCFG .if ${PORT_OPTIONS:MTWCFG_ETC} TWCFG?= ${ETCDIR} .endif .if ${PORT_OPTIONS:MTWCFG_TWDB} TWCFG?= ${TWDB}/etc .endif .if ${PORT_OPTIONS:MTW_CLOBBER} TW_CLOBBER= true .else TW_CLOBBER= false .endif .if ${PORT_OPTIONS:MTW_PROMPT} TW_PROMPT= true .else TW_PROMPT= false # TW_SITE_PASS?= FreeBSD .ifndef TW_SITE_PASS BROKEN= No site passphrase specified or turn PROMPT on .endif # TW_LOCAL_PASS?= FreeBSD .ifndef TW_LOCAL_PASS BROKEN= No local passphrase specified or turn PROMPT on .endif .endif # Tripwire policy files are stored in TWPOLICY. TWPOLICY?= ${TWCFG} # The Tripwire site key files are stored in TWSITEKEYDIR. TWSITEKEYDIR?= ${TWPOLICY} # The Tripwire local key files are stored in TWLOCALKEYDIR. TWLOCALKEYDIR?= ${TWPOLICY} # Tripwire report files are stored in TWREPORT. TWREPORT?= ${TWDB}/report # This sets the default text editor for Tripwire. TWEDITOR?= /usr/bin/vi # This sets the location of the twpol.txt file that is to be installed TWPOL_TXT?= ${FILESDIR}/twpol.m4 CONFIGURE_ARGS= --prefix=${PREFIX} --program-transform-name='' --sysconfdir=${TWCFG} PLIST_SUB+= TWCFG=${TWCFG} TWDB=${TWDB} PKGPOSTINSTALL= ${WRKDIR}/pkg-postinstall PKGPOSTDEINSTALL= ${WRKDIR}/pkg-deinstall SUB_FILES= pkg-deinstall SUB_LIST= TWCFG=${TWCFG} TWDB=${TWDB} pre-configure: @ ${M4} -DFREEBSD_VERSION=`${ECHO_CMD} ${OSREL} | ${CUT} -d. -f1` < ${TWPOL_TXT} > ${WRKSRC}/policy/twpol-FreeBSD.txt @ ${MV} ${WRKSRC}/src/core/stdcore.h ${WRKSRC}/src/core/stdcore.h.orig @ ${SED} 's%^# define CONFIG_FILE_ROOT "${TWCFG}"%# define CONFIG_FILE_ROOT "${TWCFG}"%' ${WRKSRC}/src/core/stdcore.h.orig > ${WRKSRC}/src/core/stdcore.h @ ${MV} ${WRKSRC}/man/man4/twconfig.4 ${WRKSRC}/man/man5/twconfig.5 @ ${MV} ${WRKSRC}/man/man4/twpolicy.4 ${WRKSRC}/man/man5/twpolicy.5 @ ${LN} -s ${WRKSRC}/contrib ${WRKSRC}/install install-config-files: @ ${ECHO_CMD} TWPOLICY=${TWPOLICY} >> ${WRKSRC}/installer/install.cfg @ ${ECHO_CMD} TWSITEKEYDIR=${TWSITEKEYDIR} >> ${WRKSRC}/installer/install.cfg @ ${ECHO_CMD} TWLOCALKEYDIR=${TWLOCALKEYDIR} >> ${WRKSRC}/installer/install.cfg @ ${ECHO_CMD} TWDB=${TWDB} >> ${WRKSRC}/installer/install.cfg @ ${ECHO_CMD} TWREPORT=${TWREPORT} >> ${WRKSRC}/installer/install.cfg @ ${ECHO_CMD} TWEDITOR=${TWEDITOR} >> ${WRKSRC}/installer/install.cfg .ifdef TW_SITE_PASS @ ${ECHO_CMD} TW_SITE_PASS=${TW_SITE_PASS} >> ${WRKSRC}/installer/install.cfg .endif .ifdef TW_LOCAL_PASS @ ${ECHO_CMD} TW_LOCAL_PASS=${TW_LOCAL_PASS} >> ${WRKSRC}/installer/install.cfg .endif @ cd ${WRKSRC} && ${LN} -sf installer/install.cfg installer/install.sh . .ifdef PACKAGE_BUILDING @ cd ${WRKSRC} && DESTDIR=${STAGEDIR} PREFIX=${PREFIX} TW_CLOBBER=${TW_CLOBBER} DO_NOT_CONFIG="yes" TW_PROMPT="false" ${MAKE_CMD} install-data-hook .else .if ${PORT_OPTIONS:MSW_ONLY} @ cd ${WRKSRC} && DESTDIR=${STAGEDIR} PREFIX=${PREFIX} TW_CLOBBER=${TW_CLOBBER} DO_NOT_CONFIG="yes" TW_PROMPT="false" ${MAKE_CMD} install-data-hook .else @ cd ${WRKSRC} && DESTDIR=${STAGEDIR} PREFIX=${PREFIX} TW_CLOBBER=${TW_CLOBBER} TW_PROMPT=${TW_PROMPT} ${MAKE_CMD} install-data-hook .endif .endif make-pkg-install: @ ${ECHO_CMD} '#!/bin/sh -' > ${PKGPOSTINSTALL} @ ${ECHO_CMD} '#' >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} "# Generated by make-${PKGPOSTINSTALL} on `date`" >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} '#' >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} 'case $$2 in' >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} 'POST-INSTALL) ;;' >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} '*) exit 0;;' >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} 'esac' >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} PACKAGE_INSTALLER=yes >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} POLICYSRC=/tmp/$$$$.tmp >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} PREFIX="${PREFIX}" >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} DO_NOT_CONFIG=yes >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} TW_CLOBBER="false" >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} TW_PROMPT="false" >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} prefix=${PREFIX} >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} sysconfdir=${TWCFG} >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} path_to_vi="/usr/bin/vi" >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} path_to_sendmail="/usr/sbin/sendmail" >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} BASE_DIR=${PREFIX}/ >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} BIN_DIR=${PREFIX}/sbin >> ${PKGPOSTINSTALL} .ifdef TW_SITE_PASS @ ${ECHO_CMD} TW_SITE_PASS=${TW_SITE_PASS} >> ${PKGPOSTINSTALL} .endif .ifdef TW_LOCAL_PASS @ ${ECHO_CMD} TW_LOCAL_PASS=${TW_LOCAL_PASS} >> ${PKGPOSTINSTALL} .endif @ ${CAT} ${WRKSRC}/installer/install.cfg >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} ${CAT} "> /tmp/$$$$.tmp <<'EOF'" >> ${PKGPOSTINSTALL} @ ${M4} -DFREEBSD_VERSION=`${ECHO_CMD} ${OSREL} | ${CUT} -d. -f1` < ${TWPOL_TXT} >> ${PKGPOSTINSTALL} @ ${ECHO_CMD} EOF >> ${PKGPOSTINSTALL} @ ${SED} "/^\. /s/^/: /;/^BASE_DIR=/d;s/BIN_DIR=/: BIN_DIR=/;/^POLICYSRC/d" ${WRKSRC}/installer/install.sh >> ${PKGPOSTINSTALL} create-database: .ifndef PACKAGE_BUILDING .if ${PORT_OPTIONS:MDB_BUILD} .if ${PORT_OPTIONS:MSW_ONLY} @ ${ECHO} SW_ONLY has been specified, database will not be built. .else @ ${MKDIR} ${TWCFG} ${TWPOLICY} ${TWSITEKEYDIR} ${TWLOCALKEYDIR} \ ${TWDB} ${TWREPORT} @ ${ECHO} Creating tripwire database @ cd ${TWCFG} && ${PREFIX}/sbin/tripwire --init @ ${ECHO_CMD} @ ${ECHO} The tripwire database, configuration file and @ ${ECHO} policy file are signed using the local and site keys, @ ${ECHO} therefore the authors suggest creating a floppy is not necessary. .endif .endif .endif post-install: install-config-files create-database make-pkg-install + ${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR} .include Index: head/security/tripwire/distinfo =================================================================== --- head/security/tripwire/distinfo (revision 454409) +++ head/security/tripwire/distinfo (revision 454410) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486025650 -SHA256 (Tripwire-tripwire-open-source-2.4.3.2_GH0.tar.gz) = 25588c585f1af60958b3dce5bfc28e52c3237b2690dd5f4120e9c2f42d98fd2b -SIZE (Tripwire-tripwire-open-source-2.4.3.2_GH0.tar.gz) = 967679 +TIMESTAMP = 1510952538 +SHA256 (Tripwire-tripwire-open-source-2.4.3.6_GH0.tar.gz) = f55fe6805f2c159bd67fa3761ba52df95b2a7d0bdd06196847564bac00dd5606 +SIZE (Tripwire-tripwire-open-source-2.4.3.6_GH0.tar.gz) = 1001145 Index: head/security/tripwire/files/patch-Makefile.in =================================================================== --- head/security/tripwire/files/patch-Makefile.in (revision 454409) +++ head/security/tripwire/files/patch-Makefile.in (revision 454410) @@ -1,19 +1,19 @@ ---- Makefile.in.orig 2017-01-31 21:35:07.000000000 -0800 -+++ Makefile.in 2017-02-02 00:55:45.246665000 -0800 +--- Makefile.in.orig 2017-10-01 19:49:45.000000000 -0700 ++++ Makefile.in 2017-11-17 13:10:21.882484000 -0800 @@ -727,7 +727,6 @@ install-data-am: @$(NORMAL_INSTALL) - $(MAKE) $(AM_MAKEFLAGS) install-data-hook install-dvi: install-dvi-recursive install-dvi-am: -@@ -797,7 +796,7 @@ +@@ -799,7 +798,7 @@ - install-data-hook: + export INSTALL_STRIP_FLAG - prefix="$(prefix)" sysconfdir="$(sysconfdir)" \ + STGDIR="$$STAGEDIR" prefix="$(prefix)" sysconfdir="$(sysconfdir)" \ path_to_vi="$(path_to_vi)" path_to_sendmail="$(path_to_sendmail)" \ - ./installer/install.sh + $(top_srcdir)/installer/install.sh Index: head/security/tripwire/files/patch-installer-install.sh =================================================================== --- head/security/tripwire/files/patch-installer-install.sh (revision 454409) +++ head/security/tripwire/files/patch-installer-install.sh (revision 454410) @@ -1,140 +1,174 @@ ---- installer/install.sh.orig 2011-11-21 08:06:56.000000000 -0800 -+++ installer/install.sh 2014-06-21 10:37:36.784492831 -0700 +--- installer/install.sh.orig 2017-10-01 19:49:45.000000000 -0700 ++++ installer/install.sh 2017-11-17 22:14:46.819124000 -0800 @@ -19,10 +19,6 @@ - PATH='.:/bin:/usr/bin' + PATH=".:/bin:/usr/bin:/usr/local/bin:$PATH" export PATH || (echo 'You must use sh to run this script'; kill $$) -if [ ! -t 0 ] ; then - echo "Say 'sh install.sh', not 'sh < install.sh'" - exit 1 -fi ##------------------------------------------------------- ## The usage message. -@@ -174,17 +170,11 @@ +@@ -136,17 +132,11 @@ # Starting directory. START_DIR=`pwd` -# Site passphrase. -TW_SITE_PASS="" - -# Local passphrase. -TW_LOCAL_PASS="" - # If clobber==true, overwrite files; if false, do not overwrite files. -CLOBBER="false" +CLOBBER=${TW_CLOBBER:-"false"} # If prompt==true, ask for confirmation before continuing with install. -PROMPT="true" +PROMPT=${TW_PROMPT:-"true"} # Guess where the toplevel for the distribution is. # A bad guess is the current directory -@@ -200,6 +190,7 @@ +@@ -162,6 +152,7 @@ ## Parse the command line. ##------------------------------------------------------- +test "$PACKAGE_INSTALLER" != "yes" && { while [ "x$1" != "x" ] ; do case "$1" in -n) PROMPT="false"; xCLOBBER="true" ;; -@@ -232,6 +223,7 @@ +@@ -201,6 +192,7 @@ esac shift done +} ##------------------------------------------------------- ## Print the sign-on banner here before the first -@@ -333,7 +325,7 @@ +@@ -301,7 +293,7 @@ ## passphrases must be specified on the command line. ##------------------------------------------------------- -if [ "$PROMPT" = "false" ] ; then +if [ "$DO_NOT_CONFIG" != "yes" -a "$PROMPT" = "false" ] ; then if [ -z "$TW_SITE_PASS" ] || [ -z "$TW_LOCAL_PASS" ] ; then echo "Error: You must specify site and local passphrase" 1>&2 echo "if no prompting is chosen." 1>&2 -@@ -514,7 +506,7 @@ +@@ -488,7 +480,7 @@ ##------------------------------------------------------- for i in $path2; do - eval "d=\$${i}" + eval "d=${DESTDIR}/\$${i}" if [ ! -d "$d" ] ; then mkdir -p "$d" if [ ! -d "$d" ] ; then -@@ -525,12 +517,12 @@ +@@ -499,12 +491,12 @@ chmod 0750 "$d" > /dev/null fi else - echo "$d: already exists" + test "$PACKAGE_INSTALLER" != "yes" && echo "$d: already exists" fi done for i in $path3; do - eval "d=\$${i}" + eval "d=${DESTDIR}/\$${i}" if [ ! -d "$d" ] ; then mkdir -p "$d" if [ ! -d "$d" ] ; then -@@ -541,7 +533,7 @@ +@@ -515,7 +507,7 @@ chmod 0755 "$d" > /dev/null fi else - echo "$d: already exists" + test "$PACKAGE_INSTALLER" != "yes" && echo "$d: already exists" fi done -@@ -550,6 +542,7 @@ +@@ -524,6 +516,7 @@ ## Copy all files to the location specified. ##======================================================= +test "$PACKAGE_INSTALLER" != "yes" && { echo echo "----------------------------------------------" echo "Copying files..." -@@ -568,14 +561,14 @@ +@@ -540,27 +533,31 @@ + ## Make sure README_LOC and fil1 stay in sync. + ##------------------------------------------------------- - #f1=' ff=$README ; d="" ; dd=$TWDOCS ; rr=0444 ' - #f2=' ff=$REL_NOTES ; d="" ; dd=$TWDOCS ; rr=0444 ' +-#f1=' ff=$README ; d="" ; dd=$TWDOCS ; rr=0444 ' +-#f2=' ff=$REL_NOTES ; d="" ; dd=$TWDOCS ; rr=0444 ' -f3=' ff=$TWLICENSEFILE ; d="" ; dd=$TWDOCS ; rr=0444 ' -+f3=' ff=$TWLICENSEFILE ; d="" ; dd=$DESTDIR/$TWDOCS ; rr=0444 ' - #f4=' ff=tripwire ; d="/bin" ; dd=$TWBIN ; rr=0550 ' - #f5=' ff=twadmin ; d="/bin" ; dd=$TWBIN ; rr=0550 ' - #f6=' ff=twprint ; d="/bin" ; dd=$TWBIN ; rr=0550 ' - #f7=' ff=siggen ; d="/bin" ; dd=$TWBIN ; rr=0550 ' +-f4=' ff=tripwire ; d="/bin" ; dd=$TWBIN ; rr=0550 ' +-f5=' ff=twadmin ; d="/bin" ; dd=$TWBIN ; rr=0550 ' +-f6=' ff=twprint ; d="/bin" ; dd=$TWBIN ; rr=0550 ' +-f7=' ff=siggen ; d="/bin" ; dd=$TWBIN ; rr=0550 ' -f8=' ff=TRADEMARK ; d="" ; dd=$TWDOCS ; rr=0444 ' -f9=' ff=policyguide.txt ; d="/policy" ; dd=$TWDOCS ; rr=0444 ' -f10=' ff=${POLICYSRC} ; d="/policy" ; dd=$TWPOLICY ; rr=0640 ' -+f8=' ff=TRADEMARK ; d="" ; dd=$DESTDIR/$TWDOCS ; rr=0444 ' -+f9=' ff=policyguide.txt ; d="/policy" ; dd=$DESTDIR/$TWDOCS ; rr=0444 ' -+f10=' ff=${POLICYSRC} ; d="/policy" ; dd=$DESTDIR/$TWPOLICY ; rr=0640 ' - #f11=' ff=twpolicy.4 ; d="/man/man4" ; dd=$TWMAN/man4 ; rr=0444 ' - #f12=' ff=twconfig.4 ; d="/man/man4" ; dd=$TWMAN/man4 ; rr=0444 ' - #f13=' ff=twfiles.5 ; d="/man/man5" ; dd=$TWMAN/man5 ; rr=0444 ' -@@ -593,7 +586,7 @@ +-#f11=' ff=twpolicy.4 ; d="/man/man4" ; dd=$TWMAN/man4 ; rr=0444 ' +-#f12=' ff=twconfig.4 ; d="/man/man4" ; dd=$TWMAN/man4 ; rr=0444 ' +-#f13=' ff=twfiles.5 ; d="/man/man5" ; dd=$TWMAN/man5 ; rr=0444 ' +-#f14=' ff=siggen.8 ; d="/man/man8" ; dd=$TWMAN/man8 ; rr=0444 ' +-#f15=' ff=tripwire.8 ; d="/man/man8" ; dd=$TWMAN/man8 ; rr=0444 ' +-#f16=' ff=twadmin.8 ; d="/man/man8" ; dd=$TWMAN/man8 ; rr=0444 ' +-#f17=' ff=twintro.8 ; d="/man/man8" ; dd=$TWMAN/man8 ; rr=0444 ' +-#f18=' ff=twprint.8 ; d="/man/man8" ; dd=$TWMAN/man8 ; rr=0444 ' +-f19=' ff=COMMERCIAL ; d="" ; dd=$TWDOCS ; rr=0444 ' +-f20=' ff=ReadMe-2.4.3 ; d="" ; dd=$TWDOCS ; rr=0444 ' +-f21=' ff=ChangeLog ; d="" ; dd=$TWDOCS ; rr=0444 ' ++XTWDOCS=$DESTDIR/$TWDOCS ++XTWBIN=$DESTDIR/$TWBIN ++XTWPOLICY=$DESTDIR/$TWPOLICY ++XTWMAN=$DESTDIR/$TWMAN ++#f1=' ff=$README ; d="" ; dd=$XTWDOCS ; rr=0444 ' ++#f2=' ff=$REL_NOTES ; d="" ; dd=$XTWDOCS ; rr=0444 ' ++f3=' ff=$XTWLICENSEFILE ; d="" ; dd=$TWDOCS ; rr=0444 ' ++f4=' ff=tripwire ; d="/bin" ; dd=$XTWBIN ; rr=0550 ' ++f5=' ff=twadmin ; d="/bin" ; dd=$XTWBIN ; rr=0550 ' ++f6=' ff=twprint ; d="/bin" ; dd=$XTWBIN ; rr=0550 ' ++f7=' ff=siggen ; d="/bin" ; dd=$XTWBIN ; rr=0550 ' ++f8=' ff=TRADEMARK ; d="" ; dd=$XTWDOCS ; rr=0444 ' ++f9=' ff=policyguide.txt ; d="/policy" ; dd=$XTWDOCS ; rr=0444 ' ++f10=' ff=${POLICYSRC} ; d="/policy" ; dd=$XTWPOLICY ; rr=0640 ' ++#f11=' ff=twpolicy.4 ; d="/man/man4" ; dd=$XTWMAN/man4 ; rr=0444 ' ++#f12=' ff=twconfig.4 ; d="/man/man4" ; dd=$XTWMAN/man4 ; rr=0444 ' ++#f13=' ff=twfiles.5 ; d="/man/man5" ; dd=$XTWMAN/man5 ; rr=0444 ' ++#f14=' ff=siggen.8 ; d="/man/man8" ; dd=$XTWMAN/man8 ; rr=0444 ' ++#f15=' ff=tripwire.8 ; d="/man/man8" ; dd=$XTWMAN/man8 ; rr=0444 ' ++#f16=' ff=twadmin.8 ; d="/man/man8" ; dd=$XTWMAN/man8 ; rr=0444 ' ++#f17=' ff=twintro.8 ; d="/man/man8" ; dd=$XTWMAN/man8 ; rr=0444 ' ++#f18=' ff=twprint.8 ; d="/man/man8" ; dd=$XTWMAN/man8 ; rr=0444 ' ++f19=' ff=COMMERCIAL ; d="" ; dd=$XTWDOCS ; rr=0444 ' ++f20=' ff=ReadMe-2.4.3 ; d="" ; dd=$XTWDOCS ; rr=0444 ' ++f21=' ff=ChangeLog ; d="" ; dd=$XTWDOCS ; rr=0444 ' + + # Binaries and manpages are already installed by the install target + loosefiles="f3 f4 f5 f6 f7 f8 f9 f10 f19 f20 f21" +@@ -570,7 +567,7 @@ f=${TAR_DIR}$d/$ff ff=${dd}/$ff if [ -s $ff ] && [ "$CLOBBER" = "false" ] ; then - echo "$ff: file already exists" + test "$PACKAGE_INSTALLER" != "yes" && echo "$ff: file already exists" else cp "$f" "$dd" if [ $? -eq 0 ]; then -@@ -604,6 +597,12 @@ +@@ -581,6 +578,12 @@ fi fi done +} + +case $DO_NOT_CONFIG in +yes) exit;; +*) ;; +esac - ##======================================================= - ## Files are now present on user's system. + if [ -n "$INSTALL_STRIP_FLAG" ] ; then + echo "INSTALL_STRIP_FLAG is set, stripping binaries" Index: head/security/tripwire/files/patch-man__man5__Makefile.in =================================================================== --- head/security/tripwire/files/patch-man__man5__Makefile.in (revision 454409) +++ head/security/tripwire/files/patch-man__man5__Makefile.in (revision 454410) @@ -1,13 +1,11 @@ ---- man/man5/Makefile.in.orig 2016-04-23 19:12:41.000000000 -0700 -+++ man/man5/Makefile.in 2016-04-29 23:17:14.071690000 -0700 -@@ -159,8 +159,8 @@ - target_os = @target_os@ - target_vendor = @target_vendor@ +--- man/man5/Makefile.in.orig 2017-10-01 19:49:45.000000000 -0700 ++++ man/man5/Makefile.in 2017-11-17 22:29:30.161039000 -0800 +@@ -269,7 +269,7 @@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = foreign no-dependencies --man_MANS = twfiles.5 -dist_man_MANS = twfiles.5 -+man_MANS = twfiles.5 twconfig.5 twpolicy.5 +dist_man_MANS = twfiles.5 twconfig.5 twpolicy.5 all: all-am .SUFFIXES: Index: head/security/tripwire/pkg-plist =================================================================== --- head/security/tripwire/pkg-plist (revision 454409) +++ head/security/tripwire/pkg-plist (revision 454410) @@ -1,20 +1,22 @@ man/man5/twfiles.5.gz man/man5/twconfig.5.gz man/man5/twpolicy.5.gz man/man8/siggen.8.gz man/man8/tripwire.8.gz man/man8/twadmin.8.gz man/man8/twintro.8.gz man/man8/twprint.8.gz sbin/tripwire sbin/twadmin sbin/twprint -sbin/twtest sbin/siggen +share/doc/tripwire/COMMERCIAL share/doc/tripwire/COPYING +share/doc/tripwire/ChangeLog +share/doc/tripwire/ReadMe-2.4.3 share/doc/tripwire/TRADEMARK share/doc/tripwire/policyguide.txt %%ETCDIR%%/twpol-FreeBSD.txt @dir(,,0750) %%ETCDIR%% @dir %%TWDB%%/report @dir %%TWDB%%