blob: 1c338e5379ff9a5e25d4ce2e3161362295f0512a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A FCGI spawner for lighttpd and cherokee and other webservers"
HOMEPAGE="http://redmine.lighttpd.net/projects/spawn-fcgi"
SRC_URI="http://www.lighttpd.net/download/${P}.tar.xz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86"
IUSE="ipv6"
DEPEND=""
RDEPEND="
!<=www-servers/lighttpd-1.4.20
!<=www-servers/cherokee-0.98.1
"
src_configure() {
econf $(use_enable ipv6)
}
src_install() {
default
newconfd "${FILESDIR}"/spawn-fcgi.confd spawn-fcgi
newinitd "${FILESDIR}"/spawn-fcgi.initd-r3 spawn-fcgi
docinto examples
dodoc doc/run-generic doc/run-php doc/run-rails
}
|