blob: 916d4cc576dac5afa7a4c0f9f586ba86f1648d8b (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/webfs/webfs-1.21-r1.ebuild,v 1.5 2009/05/15 16:16:08 armin76 Exp $
inherit eutils
DESCRIPTION="Lightweight HTTP server for static content"
SRC_URI="http://dl.bytesex.org/releases/${PN}/${P}.tar.gz"
HOMEPAGE="http://linux.bytesex.org/misc/webfs.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~ppc sparc x86"
IUSE="ssl threads"
DEPEND="ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}
app-misc/mime-types"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/webfs-1.21-Variables.mk-dont-strip-binaries-on-install.patch"
}
src_compile() {
local myconf
use ssl || myconf="${myconf} USE_SSL=no"
use threads && myconf="${myconf} USE_THREADS=yes"
emake prefix=/usr ${myconf} || die "emake failed"
}
src_install() {
local myconf
use ssl || myconf="${myconf} USE_SSL=no"
use threads && myconf="${myconf} USE_THREADS=yes"
einstall ${myconf} mandir="${D}/usr/share/man" || die "make install failed"
newinitd "${FILESDIR}"/${PN}.initd ${PN} || die "newinitd failed"
newconfd "${FILESDIR}"/${PN}.confd ${PN} || die "newconfd failed"
dodoc README
}
|