blob: 483262bc9dc0911998829b2beb43427fe1d818c0 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
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"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="libressl"
DEPEND="!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )"
RDEPEND="${DEPEND}
virtual/logger"
src_prepare() {
default
mv Makefile{.boot,} || die
}
src_compile() {
emake CC="$(tc-getCC)" OPT="${CFLAGS}"
}
src_install() {
dobin bozohttpd
doman bozohttpd.8
newconfd "${FILESDIR}"/${PN}.conffile bozohttpd
newinitd "${FILESDIR}"/${PN}.initscript bozohttpd
}
|