blob: 0cf71c1e55873a3302774b78b1c3c6a3a96c5f18 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit apache-module eutils multilib
DESCRIPTION="Binary-compatible alternative to mod_fastcgi with better process management"
HOMEPAGE="https://httpd.apache.org/mod_fcgid/"
SRC_URI="mirror://apache/httpd/mod_fcgid/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ppc ~ppc64 ~x86"
IUSE=""
APACHE2_MOD_CONF="2.2/20_${PN}"
APACHE2_MOD_DEFINE="FCGID"
DOCFILES="CHANGES-FCGID README-FCGID STATUS-FCGID"
need_apache2
src_configure() {
./configure.apxs || die "apxs configure failed"
}
src_compile () {
emake
ln -sf modules/fcgid/.libs .libs || die "symlink creation failed"
}
|