blob: dd44cd794d8a6ed7fa79b828bfb013b0d5e60ed9 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/bozohttpd/bozohttpd-20060517.ebuild,v 1.4 2007/11/12 14:15:48 armin76 Exp $
inherit eutils
DESCRIPTION="bozohttpd is a small and secure http server"
HOMEPAGE="http://www.eterna.com.au/bozohttpd/"
SRC_URI="http://www.eterna.com.au/bozohttpd/${P}.tar.bz2"
KEYWORDS="~ppc x86"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=">=dev-libs/openssl-0.9.8d
>=sys-apps/sed-4.1.5"
RDEPEND="${DEPEND}
virtual/logger"
src_unpack()
{
unpack ${A}
cd "${S}"
# Rename Makefile
mv Makefile.boot Makefile
# Make it honour Gentoo CFLAGS
sed -ie "s/-O/${CFLAGS}/" Makefile
}
src_install ()
{
dobin bozohttpd
doman bozohttpd.8
newconfd "${FILESDIR}"/${PN}.conffile bozohttpd
newinitd "${FILESDIR}"/${PN}.initscript bozohttpd
}
pkg_postinst()
{
einfo "Remember to edit /etc/conf.d/bozohttpd to suit your needs."
}
|