- New port:
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)
2006-04-25 03:55:02 +02:00
|
|
|
# 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
|
2009-08-22 02:35:32 +02:00
|
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-0.02beta5
|
- New port:
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)
2006-04-25 03:55:02 +02:00
|
|
|
|
|
|
|
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>
|