mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-15 06:29:24 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
33 lines
799 B
Bash
33 lines
799 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson
|
|
|
|
DESCRIPTION="A FCGI spawner for lighttpd and cherokee and other webservers"
|
|
HOMEPAGE="https://redmine.lighttpd.net/projects/spawn-fcgi/wiki"
|
|
SRC_URI="https://download.lighttpd.net/spawn-fcgi/releases-1.6.x/${P}.tar.xz"
|
|
|
|
LICENSE="BSD GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 ~sparc x86"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
# Adds -D_FORTIFY_SOURCE=2 which clobbers toolchain default
|
|
-Dextra-warnings=false
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
|
|
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
|
|
}
|