From owner-svn-ports-all@FreeBSD.ORG Fri Feb 14 09:43:31 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 C537CBFB; Fri, 14 Feb 2014 09:43:31 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94C7B13CC; Fri, 14 Feb 2014 09:43:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1E9hV2l058026; Fri, 14 Feb 2014 09:43:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1E9hVCq058024; Fri, 14 Feb 2014 09:43:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201402140943.s1E9hVCq058024@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 14 Feb 2014 09:43:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344173 - in head/sysutils/filewatcherd: . files 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.17 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: Fri, 14 Feb 2014 09:43:31 -0000 Author: bapt Date: Fri Feb 14 09:43:30 2014 New Revision: 344173 URL: http://svnweb.freebsd.org/changeset/ports/344173 QAT: https://qat.redports.org/buildarchive/r344173/ Log: Fix license Fix pkg-message Do not show message in post-install, the stage is already taking care of doing it Approved by: Natacha Porte Modified: head/sysutils/filewatcherd/Makefile head/sysutils/filewatcherd/files/pkg-message.in Modified: head/sysutils/filewatcherd/Makefile ============================================================================== --- head/sysutils/filewatcherd/Makefile Fri Feb 14 09:40:28 2014 (r344172) +++ head/sysutils/filewatcherd/Makefile Fri Feb 14 09:43:30 2014 (r344173) @@ -3,13 +3,14 @@ PORTNAME= filewatcherd PORTVERSION= 1.0b2 +PORTREVISION= 1 DISTNAME= ${PORTNAME}-${GH_TAGNAME} CATEGORIES= sysutils MAINTAINER= natbsd@instinctive.eu COMMENT= Daemon that watches files and runs commands when they change -LICENSE= BSD +LICENSE= ISCL USE_GITHUB= yes GH_ACCOUNT= faelys @@ -25,7 +26,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/filewatcherd ${STAGEDIR}${PREFIX}/sbin ${INSTALL_DATA} ${FILESDIR}/watchtab.sample ${STAGEDIR}${PREFIX}/etc -post-install: - @${CAT} ${PKGMESSAGE} - .include Modified: head/sysutils/filewatcherd/files/pkg-message.in ============================================================================== --- head/sysutils/filewatcherd/files/pkg-message.in Fri Feb 14 09:40:28 2014 (r344172) +++ head/sysutils/filewatcherd/files/pkg-message.in Fri Feb 14 09:43:30 2014 (r344173) @@ -1,18 +1,18 @@ ======================================================================== filwatcherd configuration files were installed in the following directory: - %%ETCDIR%% + %%PREFIX%% Before starting the server or the client you need to perform the following steps: 1) Copy the appropriate sample configuration file as follows: - cp %%ETCDIR%%/watchtab.sample %%ETCDIR%%/watchtab + cp %%PREFIX%%/watchtab.sample %%PREFIX%%/watchtab 2) Edit filewatcherd's configuration file to suit your needs: - $EDITOR %%ETCDIR%%/watchtab + $EDITOR %%PREFIX%%/watchtab 3) Add the following line to your rc.conf: @@ -21,5 +21,5 @@ following steps: Then you can start filewatcherd by issuing the following command: - %%PREFIX%%/etc/rc.d/filewatcherd start + service filewatcherd start ========================================================================