diff options
author | bapt <bapt@FreeBSD.org> | 2014-02-14 17:43:30 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-02-14 17:43:30 +0800 |
commit | 98a8e2ec6b5d410c79839f8b171ad767304901b0 (patch) | |
tree | ecaf9d0d51043599715b7ad923314e81b39c0333 /sysutils | |
parent | 00dc2b34bece08261ac3ed5ccc00a92893301d2b (diff) | |
download | freebsd-ports-gnome-98a8e2ec6b5d410c79839f8b171ad767304901b0.tar.gz freebsd-ports-gnome-98a8e2ec6b5d410c79839f8b171ad767304901b0.tar.zst freebsd-ports-gnome-98a8e2ec6b5d410c79839f8b171ad767304901b0.zip |
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 <natbsd@instinctive.eu>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/filewatcherd/Makefile | 6 | ||||
-rw-r--r-- | sysutils/filewatcherd/files/pkg-message.in | 8 |
2 files changed, 6 insertions, 8 deletions
diff --git a/sysutils/filewatcherd/Makefile b/sysutils/filewatcherd/Makefile index 8bedda200437..db12099a01b2 100644 --- a/sysutils/filewatcherd/Makefile +++ b/sysutils/filewatcherd/Makefile @@ -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 <bsd.port.mk> diff --git a/sysutils/filewatcherd/files/pkg-message.in b/sysutils/filewatcherd/files/pkg-message.in index 4be99eb49c69..89b8dd694d00 100644 --- a/sysutils/filewatcherd/files/pkg-message.in +++ b/sysutils/filewatcherd/files/pkg-message.in @@ -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 ======================================================================== |