blob: adafb1c1af0075177ddf541ce1c5535d7fd279e6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/shttpd/shttpd-1.25.ebuild,v 1.3 2005/08/23 13:56:47 ka0ttic Exp $
inherit eutils toolchain-funcs flag-o-matic
DESCRIPTION="Small and embeddable HTTPD server with (optional) CGI support"
HOMEPAGE="http://shttpd.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ssl cgi threads dmalloc"
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6g )
dmalloc? ( >=dev-libs/dmalloc-5.3.0 )"
RDEPEND="${DEPEND}
app-misc/mime-types"
src_compile() {
local libs
CC=$(tc-getCC)
if use ssl ; then
libs="${libs} -lcrypto -lssl"
append-flags -DWITH_SSL
fi
if use dmalloc ; then
libs="${libs} -ldmalloc"
append-flags -DWITH_DMALLOC
fi
use cgi || append-flags -DNO_CGI
use threads && append-flags -DMT
append-flags -DCONFIG=\"/etc/${PN}/${PN}.conf\" -DWITH_PUT_AND_DELETE
echo "${CC} ${CFLAGS} ${PN}.c -o ${PN} ${LDFLAGS} ${libs}"
${CC} ${CFLAGS} ${PN}.c -o ${PN} ${LDFLAGS} ${libs} || die "compile failure"
}
src_install() {
keepdir /var/log/${PN}
dosbin ${PN} || die
doman ${PN}.1 || die
insinto /etc/${PN}
doins ${FILESDIR}/${PN}.conf ${PN}.pem || die
insinto /etc/xinetd.d
newins ${FILESDIR}/${PN}.xinetd ${PN} || die
newinitd ${FILESDIR}/${PN}.initd ${PN} || die
newconfd ${FILESDIR}/${PN}.confd ${PN} || die
docinto embed
dodoc embed/* shttpd.c
}
pkg_postinst() {
enewgroup shttpd
enewuser shttpd -1 -1 /var/www/localhost/htdocs shttpd
einfo
einfo "You can run shttpd standalone or in xinetd mode."
einfo "Don't forget to edit /etc/shttpd/shttpd.conf."
einfo "Please read http://shttpd.sourceforge.net/ for more info!"
einfo
}
|