mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
22e951ba0f
fswatch is a utility to guard changes in a file system. fswatch is composed of three simple programs: fswbuild, fswcmp, fswshow. fswbuild builds file system information database. fswcmp compairs two database files and returns what changes a in file system have been introduced. fswshow shows contents of database file. a file information database is platform independend. fswatch can collect the following information about files (and directories): inode, links, uid, gid, mode, size, flags, ctime, checksum (sha1) ; and can show which files were added, deleted or changed. PR: ports/95973 Submitted by: dominik karczmarski <dominik@karczmarski.com> (maintainer) Reworked by: jmelo Approved by: mnag (mentor)
37 lines
814 B
Makefile
37 lines
814 B
Makefile
# New ports collection makefile for: fswatch
|
|
# Date created: 18 April 2006
|
|
# Whom: dominik karczmarski <dominik@karczmarski.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fswatch
|
|
DISTVERSION= 0.02beta5
|
|
CATEGORIES= security sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= fswatch
|
|
|
|
MAINTAINER= dominik@karczmarski.com
|
|
COMMENT= File system checksum checker
|
|
|
|
HAS_CONFIGURE= yes
|
|
SUB_FILES= pkg-message
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/.b/beta/}/
|
|
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX} \
|
|
--enable-regex \
|
|
--enable-stflags
|
|
|
|
PLIST_FILES= bin/fswbuild bin/fswcmp bin/fswshow \
|
|
bin/fswconf etc/fswatch.conf.sample
|
|
|
|
MAN1= fswbuild.1 fswcmp.1 fswshow.1 fswconf.1
|
|
MAN5= fswatch.conf.5
|
|
MAN7= fswatch.7
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|