summaryrefslogtreecommitdiff
blob: 70fd8b68d44666bc0058491a79e8146ebd22d751 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/lighttpd-1.3.5.ebuild,v 1.2 2005/01/04 13:34:15 swegener Exp $

inherit eutils confutils

DESCRIPTION="lightweight high-performance web server"
HOMEPAGE="http://jan.kneschke.de/projects/lighttpd/"
SRC_URI="http://jan.kneschke.de/projects/lighttpd/download/${P}.tar.gz"
LICENSE="QPL-1.0"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE="mysql ssl php modchat modcache modlocalizer xattr ldap"
RDEPEND="virtual/libc
		>=dev-libs/libpcre-3.1
		>=sys-libs/zlib-1.1
		>=dev-libs/localizer-0.3.3
		mysql? ( >=dev-db/mysql-4.0.0 )
		ssl? ( >=dev-libs/openssl-0.9.7 )
		php? (
			>=dev-php/php-cgi-4.3.0
			net-www/spawn-fcgi
		)"

LIGHTTPD_DIR="/var/www/localhost/htdocs/"
LOG_DIR="/var/log/lighttpd/"

pkg_setup() {
	enewuser lighttpd /bin/false "${LIGHTTPD_DIR}" nofiles
}

src_unpack() {
	unpack ${A}
	cd ${S}

	epatch ${FILESDIR}/${PN}-1.1.8-gentoo.diff

	if useq php ; then
		epatch ${FILESDIR}/${PN}-1.2.2-php.diff
	fi
}

src_compile() {
	local my_conf="--libdir=/usr/$(get_libdir)/${PN}"

	#                       extension		USE flag		shared?
	# -----------------------------------------------------------------
	enable_extension_enable mod-chat 		modchat			0
	enable_extension_enable mod-cache		modcache		0
	enable_extension_enable mod-localizer		modlocalizer		0
	enable_extension_enable attr			xattr			0
	enable_extension_enable ldap			ldap			0
	enable_extension_enable openssl			ssl			0
	enable_extension_enable mysql			mysql			0
	# -----------------------------------------------------------------
	#                       extension		USE flag		shared?

	econf ${my_conf} || die "econf failed"

	emake || die "emake failed"
}

src_install() {
	make DESTDIR=${D} install || die "make install failed"

	insinto /etc
	doins doc/lighttpd.conf || die "doins failed"

	newinitd ${FILESDIR}/${PN}-1.2.2.initd ${PN} || die "newinitd failed"

	keepdir ${LIGHTTPD_DIR} ${LOG_DIR} || die "keepdir failed"
	fowners lighttpd:root ${LOG_DIR} || die "fowners failed"

	dodoc README COPYING doc/fastcgi.txt doc/authentification.txt || die "dodoc failed"
	newdoc doc/lighttpd.conf lighttpd.conf.example || die "newdoc failed"
}

pkg_postinst () {
	einfo "lighttpd.conf has moved from /etc/conf.d to /etc"
}