diff options
-rw-r--r-- | www-servers/bozohttpd/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/bozohttpd/bozohttpd-20111118.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/www-servers/bozohttpd/ChangeLog b/www-servers/bozohttpd/ChangeLog index 4b8169f75a2b..56a27e2f93f3 100644 --- a/www-servers/bozohttpd/ChangeLog +++ b/www-servers/bozohttpd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-servers/bozohttpd # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/bozohttpd/ChangeLog,v 1.16 2013/02/02 12:10:54 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/bozohttpd/ChangeLog,v 1.17 2013/03/26 19:54:50 tomwij Exp $ + +*bozohttpd-20111118 (26 Mar 2013) + + 26 Mar 2013; Tom Wijsman <TomWij@gentoo.org> +bozohttpd-20111118.ebuild: + Version bump to 20111118, EAPI 5. Non maintainer commit. 02 Feb 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup up due #48914 diff --git a/www-servers/bozohttpd/bozohttpd-20111118.ebuild b/www-servers/bozohttpd/bozohttpd-20111118.ebuild new file mode 100644 index 000000000000..3789094d7e30 --- /dev/null +++ b/www-servers/bozohttpd/bozohttpd-20111118.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/bozohttpd/bozohttpd-20111118.ebuild,v 1.1 2013/03/26 19:54:50 tomwij Exp $ + +EAPI="5" + +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" + +DEPEND=">=dev-libs/openssl-0.9.8o + >=sys-apps/sed-4.2" +RDEPEND="${DEPEND} + virtual/logger" + +src_prepare() +{ + mv Makefile{.boot,} + + # Make it honor Gentoo CFLAGS + sed -ie "s/-O/${CFLAGS}/" Makefile || sed 'Sed failed.' +} + +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." +} |