blob: 00c9eb8e3754b7adbae8bc01094e4f0416ab0d4a (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/cherokee/cherokee-0.5.6.ebuild,v 1.4 2006/12/27 06:06:49 flameeyes Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils pam versionator libtool autotools
DESCRIPTION="An extremely fast and tiny web server."
SRC_URI="http://www.cherokee-project.com/download/$(get_version_component_range 1-2)/${PV}/${P}.tar.gz"
HOMEPAGE="http://www.cherokee-project.com/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="ipv6 ssl gnutls static pam coverpage threads kernel_linux"
RDEPEND=">=sys-libs/zlib-1.1.4-r1
ssl? (
gnutls? ( net-libs/gnutls )
!gnutls? ( dev-libs/openssl )
)
pam? ( virtual/pam )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-epoll-crosscompile.patch"
epatch "${FILESDIR}/${P}-sendfile-crosscompile.patch"
epatch "${FILESDIR}/${P}-gnutls-pkgconfig.patch"
epatch "${FILESDIR}/${P}-replace-with-sed.patch"
AT_M4DIR="m4" eautoreconf
# use cherokee user/group
sed -i -e 's|^#\(User \).*$|\1cherokee|' \
-e 's|^#\(Group \).*$|\1cherokee|' "${S}/cherokee.conf.sample.pre" || \
die "sed cherokee.conf failed"
}
src_compile() {
local myconf
if use ssl && use gnutls ; then
myconf="${myconf} --enable-tls=gnutls"
elif use ssl && ! use gnutls ; then
myconf="${myconf} --enable-tls=openssl"
else
myconf="${myconf} --disable-tls"
fi
if use static ; then
myconf="${myconf} --enable-static --enable-static-module=all"
else
myconf="${myconf} --disable-static"
fi
local os="Unknown"
case "${CHOST}" in
*-freebsd*)
os="FreeBSD" ;;
*-netbsd*)
os="NetBSD" ;;
*-openbsd*)
os="OpenBSD" ;;
*)
os="Linux" ;;
esac
econf \
${myconf} \
$(use_enable pam) \
$(use_enable ipv6) \
$(use_enable threads pthread) \
$(use_enable kernel_linux epoll) \
--disable-dependency-tracking \
--enable-os-string="Gentoo ${os}" \
--with-wwwroot=/var/www/localhost/htdocs \
|| die "configure failed"
emake || die "emake failed"
}
src_install () {
emake -j1 DESTDIR="${D}" docdir="/usr/share/doc/${PF}/html" install || die "make install failed"
dodoc AUTHORS ChangeLog TODO
newpamd pam.d_cherokee ${PN} || die "newpamd failed"
newinitd "${FILESDIR}/${PN}-initd-0.5.6" ${PN} || die "newinitd failed"
keepdir /etc/cherokee/mods-enabled /etc/cherokee/sites-enabled /var/www/localhost/htdocs
use coverpage || rm -rf "${D}"/var/www/localhost/htdocs/{index.html,images}
}
pkg_postinst() {
enewgroup cherokee
enewuser cherokee -1 -1 /var/www/localhost cherokee
}
|