blob: c63083e2a121ca807014665bb4b90412479c6145 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-misc/fcgiwrap/fcgiwrap-9999.ebuild,v 1.1 2010/06/29 13:17:59 pva Exp $
EAPI="3"
[[ ${PV} = *9999* ]] && VCS_ECLASS="git" || VCS_ECLASS=""
inherit autotools ${VCS_ECLASS}
DESCRIPTION="Simple FastCGI wrapper for CGI scripts (CGI support for nginx)"
HOMEPAGE="http://nginx.localdomain.pl/wiki/FcgiWrap"
LICENSE="BSD"
SLOT="0"
IUSE=""
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="git://github.com/gnosek/${PN}.git"
KEYWORDS=""
else
MY_REV="2e301c8"
SRC_URI="http://download.github.com/gnosek-${PN}-v${PV}-1-g${MY_REV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/gnosek-${PN}-${MY_REV}"
KEYWORDS="~amd64 ~x86"
fi
DEPEND="dev-libs/fcgi"
RDEPEND="${DEPEND}"
src_prepare() {
sed -e '/man8dir = $(DESTDIR)/s/@prefix@//' \
-i Makefile.in || die "sed failed"
eautoreconf
}
src_install() {
einstall DESTDIR="${D}"
dodoc README.rst
}
pkg_postinst() {
einfo 'You may want to install www-servers/spawn-fcgi to use with fcgiwrap.'
}
|