blob: 1b72569ee8cf2ab3aa4945124975457578e6e0d9 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/boa/boa-0.94.14_rc21.ebuild,v 1.1 2005/07/28 15:36:15 tigger Exp $
inherit eutils
MY_PV=${PV/_/}
DESCRIPTION="Boa - A very small and very fast http daemon"
SRC_URI="http://www.boa.org/${PN}-${MY_PV}.tar.gz"
HOMEPAGE="http://www.boa.org/"
KEYWORDS="~x86 ~sparc ~mips ~ppc ~amd64"
LICENSE="GPL-2"
SLOT="0"
IUSE="tetex"
S=${WORKDIR}/${PN}-${MY_PV}
DEPEND="virtual/libc
sys-devel/flex
sys-devel/bison
sys-apps/texinfo
tetex? ( virtual/tetex )"
RDEPEND="virtual/libc"
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
use tetex || sed -i -e '/^all:/s/boa.dvi //' docs/Makefile
emake docs || die "emake docs failed"
# SLH - 2004/04/23
# commented out - this doesn't appear to work, and I'm not tetex
# expert, so I don't know how to fix it
#
# use tetex && make boa.dvi
}
src_install() {
dosbin src/boa
doman docs/boa.8
dodoc docs/boa.html
dodoc docs/boa_banner.png
doinfo docs/boa.info
# if use tetex; then
# dodoc docs/boa.dvi || die
# fi
keepdir /var/log/boa
dodir /var/www/localhost/htdocs
dodir /var/www/localhost/cgi-bin
dodir /var/www/localhost/icons
newconfd ${FILESDIR}/boa.conf.d boa
exeinto /usr/lib/boa
doexe src/boa_indexer
newinitd ${FILESDIR}/boa.rc6 boa
dodir /etc/boa
insinto /etc/boa
insopts -m700
doins ${FILESDIR}/boa.conf
doins ${FILESDIR}/mime.types
}
|