blob: 12ffa3584464b511cf816d06853267073db7d4bb (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/bozohttpd/bozohttpd-20040218.ebuild,v 1.1 2004/06/24 12:15:32 s4t4n Exp $
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="~x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND=">=dev-libs/openssl-0.9.7d-r1"
src_unpack()
{
unpack ${A}
# We substitute the Makefile because the original works only with BSD make
cd ${S}
rm -f Makefile
cp ${FILESDIR}/${P}.Makefile Makefile
}
src_install ()
{
dodir usr/bin
dodir usr/share/man
PREFIX="${D}/usr" einstall || die
insinto /etc/conf.d; newins ${FILESDIR}/${P}.conffile bozohttpd
exeinto /etc/init.d; newexe ${FILESDIR}/${P}.initscript bozohttpd
}
pkg_postinst()
{
einfo "Remember to edit /etc/conf.d/bozohttpd to suit your needs."
}
|