blob: 342dce97bddc62e7237e2f59a67f6c190cce0904 (
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
|
DESCRIPTION = "Lightweight and High Performance WebServer"
SECTION = "console/network"
LICENSE = "GPL"
RDEPENDS = "mime-support"
RPROVIDES = "httpd"
PR = "r3"
SRC_URI = "http://www.boa.org/boa-${PV}.tar.gz \
file://cgi.patch;patch=1;pnum=2 \
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
install -d ${D}${mandir}/man8
install -m 0644 ${S}/../docs/boa.8 ${D}${mandir}/man8
}
|