From owner-svn-ports-all@FreeBSD.ORG Mon Oct 29 14:29:15 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA6FD7D9; Mon, 29 Oct 2012 14:29:15 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B225A8FC16; Mon, 29 Oct 2012 14:29:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9TETFrh079845; Mon, 29 Oct 2012 14:29:15 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9TETFtj079840; Mon, 29 Oct 2012 14:29:15 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201210291429.q9TETFtj079840@svn.freebsd.org> From: Chris Rees Date: Mon, 29 Oct 2012 14:29:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306615 - in head/www: . multiwatch 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.14 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: Mon, 29 Oct 2012 14:29:16 -0000 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 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@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 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