blob: 5720de572bcbda1f05ee4182a699dfc6e11d5ee9 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/spawn-fcgi-1.6.1-r1.ebuild,v 1.6 2009/05/02 13:03:12 armin76 Exp $
EAPI="2"
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.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE=""
DEPEND=""
RDEPEND="!<=www-servers/lighttpd-1.4.20
!<=www-servers/cherokee-0.98.1"
src_install() {
emake DESTDIR="${D}" install || die 'install failed'
dodoc README NEWS
newconfd "${FILESDIR}"/spawn-fcgi.confd spawn-fcgi
newinitd "${FILESDIR}"/spawn-fcgi.initd spawn-fcgi
#pidfile dir
keepdir /var/run/spawn-fcgi
fperms 0700 /var/run/spawn-fcgi
}
|