diff options
author | rene <rene@FreeBSD.org> | 2014-03-15 16:55:13 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2014-03-15 16:55:13 +0800 |
commit | ee718fcb38e5100c0fbf71ab366a6f33b74fda95 (patch) | |
tree | 441db18fba2b5d6a1f887225f892e07f38bb7555 /sysutils | |
parent | ed52ec374a5f6b8786a59e7f5b8491e58249c402 (diff) | |
download | freebsd-ports-gnome-ee718fcb38e5100c0fbf71ab366a6f33b74fda95.tar.gz freebsd-ports-gnome-ee718fcb38e5100c0fbf71ab366a6f33b74fda95.tar.zst freebsd-ports-gnome-ee718fcb38e5100c0fbf71ab366a6f33b74fda95.zip |
Resurrect sysutils/wait_on, it has a new home. [1]
While here, fix packaging as user.
Submitted by: Ondra Knezour <knezour@weboutsourcing.cz>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/wait_on/Makefile | 17 | ||||
-rw-r--r-- | sysutils/wait_on/distinfo | 2 | ||||
-rw-r--r-- | sysutils/wait_on/pkg-descr | 3 |
4 files changed, 23 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index e1755c1cf85a..8fec95cb489b 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -986,6 +986,7 @@ SUBDIR += vpnc-scripts SUBDIR += vstrip SUBDIR += vttest + SUBDIR += wait_on SUBDIR += watchdog SUBDIR += watchfolder SUBDIR += watchmen diff --git a/sysutils/wait_on/Makefile b/sysutils/wait_on/Makefile new file mode 100644 index 000000000000..fcfbe6d17e3f --- /dev/null +++ b/sysutils/wait_on/Makefile @@ -0,0 +1,17 @@ +# Created by: Andrew Stevenson <andrew@ugh.net.au> +# $FreeBSD$ + +PORTNAME= wait_on +PORTVERSION= 1.1 +CATEGORIES= sysutils +MASTER_SITES= http://weboutsourcing.cz/freebsd/ports/sysutils/wait_on/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= Enable shell scripts to monitor directories for new files + +USES= uidfix +WRKSRC= ${WRKDIR}/wait_on + +PLIST_FILES= bin/wait_on man/man1/wait_on.1.gz + +.include <bsd.port.mk> diff --git a/sysutils/wait_on/distinfo b/sysutils/wait_on/distinfo new file mode 100644 index 000000000000..a3a78e489fdd --- /dev/null +++ b/sysutils/wait_on/distinfo @@ -0,0 +1,2 @@ +SHA256 (wait_on-1.1.tar.gz) = d7f40655f5c11e882890340826d1163050e2748de66b292c15b10d32feb6490f +SIZE (wait_on-1.1.tar.gz) = 6254 diff --git a/sysutils/wait_on/pkg-descr b/sysutils/wait_on/pkg-descr new file mode 100644 index 000000000000..9bd6249ccff5 --- /dev/null +++ b/sysutils/wait_on/pkg-descr @@ -0,0 +1,3 @@ +The wait_on command allows shell scripts to access the facilities provided by +kqueue(3). This allows scripts to detect files being added to directories, data +appended to files and many other things - all without polling. |