diff options
author | June McEnroe <june@causal.agency> | 2020-08-23 17:08:07 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-08-23 17:08:07 +0000 |
commit | 67588c96b31acbe6ceef773a856c8a3d281fa532 (patch) | |
tree | 3d8c3901ae2a094dd19e7dd3c366ae893f962042 | |
parent | Update pounce to 1.4p2 (diff) | |
download | ports-67588c96b31acbe6ceef773a856c8a3d281fa532.tar.gz ports-67588c96b31acbe6ceef773a856c8a3d281fa532.zip |
Add catsit port
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | sysutils/catsit/Makefile | 24 | ||||
-rw-r--r-- | sysutils/catsit/distinfo | 3 | ||||
-rw-r--r-- | sysutils/catsit/pkg-descr | 5 |
4 files changed, 33 insertions, 0 deletions
diff --git a/Makefile b/Makefile index de0583b..0ba9ff5 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ PORTS += irc/catgirl PORTS += irc/litterbox PORTS += irc/pounce PORTS += security/libretls +PORTS += sysutils/catsit install: .for PORT in ${PORTS} diff --git a/sysutils/catsit/Makefile b/sysutils/catsit/Makefile new file mode 100644 index 0000000..6eae43f --- /dev/null +++ b/sysutils/catsit/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= catsit +DISTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= https://git.causal.agency/catsit/snapshot/ + +MAINTAINER= june@causal.agency +COMMENT= Process supervisor + +LICENSE= AGPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +PLIST_FILES= etc/rc.d/catsitd \ + man/man5/catsit.conf.5.gz \ + man/man8/catsit.8.gz \ + man/man8/catsitd.8.gz \ + sbin/catsit \ + sbin/catsitd + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/catsitd + +.include <bsd.port.mk> diff --git a/sysutils/catsit/distinfo b/sysutils/catsit/distinfo new file mode 100644 index 0000000..c069f22 --- /dev/null +++ b/sysutils/catsit/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1598202247 +SHA256 (catsit-1.0.tar.gz) = 140bdddb56dcf6ca5f4ed81363ba2e4ead913744b575a0bd544b2c29420dd44e +SIZE (catsit-1.0.tar.gz) = 22171 diff --git a/sysutils/catsit/pkg-descr b/sysutils/catsit/pkg-descr new file mode 100644 index 0000000..132a488 --- /dev/null +++ b/sysutils/catsit/pkg-descr @@ -0,0 +1,5 @@ +catsit is a process supervisor for processes which run in the +foreground, log to standard output or standard error, handle errors by +exiting and expect to be restarted. + +WWW: https://git.causal.agency/catsit/ |