diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-10-11 21:16:11 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-10-11 21:16:11 -0400 |
commit | e8560991ba11bbab3e82d6450412099582ce6793 (patch) | |
tree | cee526dbca44cccded02db20c4a3d85c5c0f4c85 /www-servers/bozohttpd | |
parent | www-servers/cherokee: allow any slot for php. (diff) | |
download | gentoo-e8560991ba11bbab3e82d6450412099582ce6793.tar.gz gentoo-e8560991ba11bbab3e82d6450412099582ce6793.tar.bz2 gentoo-e8560991ba11bbab3e82d6450412099582ce6793.zip |
www-servers/bozohttpd: add libressl support
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'www-servers/bozohttpd')
-rw-r--r-- | www-servers/bozohttpd/bozohttpd-20140708-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/www-servers/bozohttpd/bozohttpd-20140708-r1.ebuild b/www-servers/bozohttpd/bozohttpd-20140708-r1.ebuild new file mode 100644 index 000000000000..f41adcf1c33b --- /dev/null +++ b/www-servers/bozohttpd/bozohttpd-20140708-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +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="GPL-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() { + mv Makefile{.boot,} +} + +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 +} |