From owner-svn-ports-all@FreeBSD.ORG Tue Jul 8 13:08:21 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A9098687; Tue, 8 Jul 2014 13:08:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9622120DA; Tue, 8 Jul 2014 13:08:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s68D8Lxl064653; Tue, 8 Jul 2014 13:08:21 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s68D8Lka064647; Tue, 8 Jul 2014 13:08:21 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201407081308.s68D8Lka064647@svn.freebsd.org> From: Pawel Pekala Date: Tue, 8 Jul 2014 13:08:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361231 - head/security/fswatch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2014 13:08:21 -0000 Author: pawel Date: Tue Jul 8 13:08:20 2014 New Revision: 361231 URL: http://svnweb.freebsd.org/changeset/ports/361231 QAT: https://qat.redports.org/buildarchive/r361231/ Log: - Add staging support - Port uses GNU configure - Switch to pkg-plist instead of PLIST_FILES - Fix typos in pkg-descr - Convert Makefile to normal tab style Added: head/security/fswatch/pkg-plist (contents, props changed) Modified: head/security/fswatch/Makefile head/security/fswatch/pkg-descr Modified: head/security/fswatch/Makefile ============================================================================== --- head/security/fswatch/Makefile Tue Jul 8 13:06:27 2014 (r361230) +++ head/security/fswatch/Makefile Tue Jul 8 13:08:20 2014 (r361231) @@ -1,32 +1,25 @@ # Created by: dominik karczmarski # $FreeBSD$ -PORTNAME= fswatch -DISTVERSION= 0.02beta5 -CATEGORIES= security sysutils -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-0.02beta5 - -MAINTAINER= ports@FreeBSD.org -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 - -NO_STAGE= yes -post-install: - @${CAT} ${PKGMESSAGE} +PORTNAME= fswatch +DISTVERSION= 0.02beta5 +CATEGORIES= security sysutils +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-0.02beta5 + +MAINTAINER= ports@FreeBSD.org +COMMENT= File system checksum checker + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} \ + --enable-regex \ + --enable-stflags + +SUB_FILES= pkg-message + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/.b/beta/}/ + +post-patch: + @${REINPLACE_CMD} '/INSTALL/ s|prefix)|DESTDIR)$$(&|' \ + ${WRKSRC}/examples/Makefile.in .include Modified: head/security/fswatch/pkg-descr ============================================================================== --- head/security/fswatch/pkg-descr Tue Jul 8 13:06:27 2014 (r361230) +++ head/security/fswatch/pkg-descr Tue Jul 8 13:08:20 2014 (r361231) @@ -2,10 +2,10 @@ fswatch: - is a utility to guard changes in a file system. - is composed of three simple programs: fswbuild, fswcmp, fswshow. fswbuild - builds a file system information database. fswcmp compairs two database files + builds a file system information database. fswcmp compares 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. + independent. - can collect the following information about files (and directories): inode, links, uid, gid, mode, size, flags, ctime, checksum (sha1) ; and can show Added: head/security/fswatch/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/fswatch/pkg-plist Tue Jul 8 13:08:20 2014 (r361231) @@ -0,0 +1,11 @@ +bin/fswbuild +bin/fswcmp +bin/fswconf +bin/fswshow +etc/fswatch.conf.sample +man/man1/fswbuild.1.gz +man/man1/fswcmp.1.gz +man/man1/fswconf.1.gz +man/man1/fswshow.1.gz +man/man5/fswatch.conf.5.gz +man/man7/fswatch.7.gz