Gentoo Archives: gentoo-commits

From: "Thilo Bangert (bangert)" <bangert@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/spawn-fcgi: ChangeLog spawn-fcgi-1.6.3.ebuild
Date: Mon, 28 Sep 2009 08:29:15
Message-Id: E1MsBbc-0001OY-4p@stork.gentoo.org
1 bangert 09/09/28 08:29:12
2
3 Modified: ChangeLog
4 Added: spawn-fcgi-1.6.3.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc42/cvs/Linux i686)
8
9 Revision Changes Path
10 1.20 www-servers/spawn-fcgi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/spawn-fcgi/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/spawn-fcgi/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/spawn-fcgi/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 3 Jul 2009 21:17:10 -0000 1.19
23 +++ ChangeLog 28 Sep 2009 08:29:11 -0000 1.20
24 @@ -1,6 +1,11 @@
25 # ChangeLog for www-servers/spawn-fcgi
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.19 2009/07/03 21:17:10 bangert Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/ChangeLog,v 1.20 2009/09/28 08:29:11 bangert Exp $
29 +
30 +*spawn-fcgi-1.6.3 (28 Sep 2009)
31 +
32 + 28 Sep 2009; Thilo Bangert <bangert@g.o> +spawn-fcgi-1.6.3.ebuild:
33 + version bump
34
35 03 Jul 2009; Thilo Bangert <bangert@g.o> files/spawn-fcgi.confd,
36 files/spawn-fcgi.initd:
37
38
39
40 1.1 www-servers/spawn-fcgi/spawn-fcgi-1.6.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/spawn-fcgi/spawn-fcgi-1.6.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/spawn-fcgi/spawn-fcgi-1.6.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: spawn-fcgi-1.6.3.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/spawn-fcgi-1.6.3.ebuild,v 1.1 2009/09/28 08:29:11 bangert Exp $
50
51 EAPI="2"
52
53 DESCRIPTION="A FCGI spawner for lighttpd and cherokee and other webservers"
54 HOMEPAGE="http://redmine.lighttpd.net/projects/spawn-fcgi"
55 SRC_URI="http://www.lighttpd.net/download/${P}.tar.bz2"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
60 IUSE="ipv6"
61
62 DEPEND=""
63 RDEPEND="!<=www-servers/lighttpd-1.4.20
64 !<=www-servers/cherokee-0.98.1"
65
66 src_configure() {
67 econf \
68 $(use_enable ipv6 )
69 }
70
71 src_install() {
72 emake DESTDIR="${D}" install || die 'install failed'
73 dodoc README NEWS
74
75 newconfd "${FILESDIR}"/spawn-fcgi.confd spawn-fcgi
76 newinitd "${FILESDIR}"/spawn-fcgi.initd spawn-fcgi
77 #pidfile dir
78 keepdir /var/run/spawn-fcgi
79 fperms 0700 /var/run/spawn-fcgi
80
81 docinto examples
82 dodoc doc/run-generic doc/run-php doc/run-rails
83 }