gentoo-ebuilds/www-servers/spawn-fcgi/spawn-fcgi-1.6.4-r1.ebuild
Arthur Zamarin 0e727a3a16
*/*: unkeyword ~ia64
Change was created by running the following command::

    ekeyword ^ia64 */*/*.ebuild

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2024-09-12 21:37:40 +03:00

33 lines
739 B
Bash

# Copyright 1999-2020 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="https://redmine.lighttpd.net/projects/spawn-fcgi"
SRC_URI="https://www.lighttpd.net/download/${P}.tar.xz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 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
}