Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/spawn-fcgi: spawn-fcgi-1.6.3-r1.ebuild ChangeLog
Date: Mon, 02 Apr 2012 18:55:23
Message-Id: 20120402185513.05FC02004B@flycatcher.gentoo.org
1 pacho 12/04/02 18:55:13
2
3 Modified: ChangeLog
4 Added: spawn-fcgi-1.6.3-r1.ebuild
5 Log:
6 Don't assume /var/run/spawn-fcgi is always present, bug #400899 by Maxim Kammerer.
7
8 (Portage version: 2.1.10.54/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.31 www-servers/spawn-fcgi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/spawn-fcgi/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/spawn-fcgi/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/spawn-fcgi/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 21 Mar 2012 11:36:27 -0000 1.30
24 +++ ChangeLog 2 Apr 2012 18:55:12 -0000 1.31
25 @@ -1,6 +1,13 @@
26 # ChangeLog for www-servers/spawn-fcgi
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.30 2012/03/21 11:36:27 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.31 2012/04/02 18:55:12 pacho Exp $
30 +
31 +*spawn-fcgi-1.6.3-r1 (02 Apr 2012)
32 +
33 + 02 Apr 2012; Pacho Ramos <pacho@g.o> +files/spawn-fcgi.initd-r1,
34 + +spawn-fcgi-1.6.3-r1.ebuild:
35 + Don't assume /var/run/spawn-fcgi is always present, bug #400899 by Maxim
36 + Kammerer.
37
38 21 Mar 2012; Pacho Ramos <pacho@g.o> metadata.xml:
39 Drop www-server herd as discussed in gentoo-dev ML.
40
41
42
43 1.1 www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: spawn-fcgi-1.6.3-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild,v 1.1 2012/04/02 18:55:12 pacho Exp $
53
54 EAPI=4
55
56 DESCRIPTION="A FCGI spawner for lighttpd and cherokee and other webservers"
57 HOMEPAGE="http://redmine.lighttpd.net/projects/spawn-fcgi"
58 SRC_URI="http://www.lighttpd.net/download/${P}.tar.bz2"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
63 IUSE="ipv6"
64
65 DEPEND=""
66 RDEPEND="!<=www-servers/lighttpd-1.4.20
67 !<=www-servers/cherokee-0.98.1"
68
69 src_configure() {
70 econf $(use_enable ipv6)
71 }
72
73 src_install() {
74 emake DESTDIR="${D}" install
75 dodoc README NEWS
76
77 newconfd "${FILESDIR}"/spawn-fcgi.confd spawn-fcgi
78 newinitd "${FILESDIR}"/spawn-fcgi.initd-r1 spawn-fcgi
79
80 docinto examples
81 dodoc doc/run-generic doc/run-php doc/run-rails
82 }