blob: 43ff789f857861ec7dcbc1ac8174eee38c09dd11 (
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
|
DESCRIPTION = "Lightweight and High Performance WebServer"
SECTION = "console/network"
RPROVIDES = "httpd"
MAINTAINER = "Rene Wagner <reenoo@gmx.de>"
PR = "r1"
DEPENDS = "mime-support"
RDEPENDS = "mime-support"
SRC_URI = "http://www.boa.org/boa-${PV}.tar.gz \
file://debian-patch.diff;patch=1;pnum=2 \
file://boa.conf \
file://boa.init"
S = "${WORKDIR}/boa-${PV}/src"
inherit autotools update-rc.d
INITSCRIPT_NAME = "boa"
INITSCRIPT_PARAMS = "defaults 20"
CFLAGS_append = " -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE"
#CFLAGS_append = " -DSERVER_ROOT=..."
do_install() {
install -d ${D}/${sbindir}
install -d ${D}/${libdir}/${PN}
install -m 0755 boa ${D}/${sbindir}
install -m 0755 boa_indexer ${D}/${libdir}/${PN}
install -d ${D}/${sysconfdir}/${PN}
install -d ${D}/${sysconfdir}/init.d
install -m 0640 ${WORKDIR}/boa.conf ${D}/${sysconfdir}/${PN}
install -m 0755 ${WORKDIR}/boa.init ${D}/${sysconfdir}/init.d/boa
}
|