svn commit: r306615 - in head/www: . multiwatch
Chris Rees
crees at FreeBSD.org
Mon Oct 29 14:29:16 UTC 2012
Author: crees
Date: Mon Oct 29 14:29:15 2012
New Revision: 306615
URL: http://svn.freebsd.org/changeset/ports/306615
Log:
Multiwatch forks multiple instance of one application and keeps them
running; it is made to be used with spawn-fcgi, so all forks share the same
fastcgi socket (no webserver restart needed if you increase/decrease the
number of forks), and it is easier than to setup multiple daemontool
supervised instances.
WWW: http://redmine.lighttpd.net/projects/multiwatch/wiki
PR: ports/171518
Submitted by: Christian Ullrich <chris+freebsd at chrullrich.net>
Feature safe: yes
Added:
head/www/multiwatch/
head/www/multiwatch/Makefile (contents, props changed)
head/www/multiwatch/distinfo (contents, props changed)
head/www/multiwatch/pkg-descr (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Mon Oct 29 14:13:58 2012 (r306614)
+++ head/www/Makefile Mon Oct 29 14:29:15 2012 (r306615)
@@ -547,6 +547,7 @@
SUBDIR += moonshine
SUBDIR += mozplugger
SUBDIR += multisort
+ SUBDIR += multiwatch
SUBDIR += mybb
SUBDIR += myfaces
SUBDIR += mysar
Added: head/www/multiwatch/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/multiwatch/Makefile Mon Oct 29 14:29:15 2012 (r306615)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME= multiwatch
+PORTVERSION= 1.0.0
+CATEGORIES= www
+MASTER_SITES= http://download.lighttpd.net/multiwatch/releases-1.x/
+
+MAINTAINER= chris+freebsd at chrullrich.net
+COMMENT= A spawn-fcgi helper for forking multiple workers
+
+LIB_DEPENDS= ev:${PORTSDIR}/devel/libev
+
+GNU_CONFIGURE= yes
+
+MAN1= multiwatch.1
+USE_PKGCONFIG= yes
+USE_BZIP2= yes
+USE_GNOME= _glib20
+
+# Help configure find libev.
+CFLAGS+= -I${PREFIX}/include
+LDFLAGS+= -L${PREFIX}/lib
+
+PLIST_FILES= bin/multiwatch
+
+.include <bsd.port.mk>
Added: head/www/multiwatch/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/multiwatch/distinfo Mon Oct 29 14:29:15 2012 (r306615)
@@ -0,0 +1,2 @@
+SHA256 (multiwatch-1.0.0.tar.bz2) = 2e1096f0a5d8052a2a5811f3ba4253621c834284aa26f7577dd640c19f52d298
+SIZE (multiwatch-1.0.0.tar.bz2) = 69958
Added: head/www/multiwatch/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/multiwatch/pkg-descr Mon Oct 29 14:29:15 2012 (r306615)
@@ -0,0 +1,7 @@
+Multiwatch forks multiple instance of one application and keeps them
+running; it is made to be used with spawn-fcgi, so all forks share the same
+fastcgi socket (no webserver restart needed if you increase/decrease the
+number of forks), and it is easier than to setup multiple daemontool
+supervised instances.
+
+WWW: http://redmine.lighttpd.net/projects/multiwatch/wiki
More information about the svn-ports-head
mailing list