blob: 9cb3d26425b6dcc8a75bcf6253dbadef9d7752c4 (
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 = "Web server"
SECTION = "net"
DEPENDS = "sqlite3 libpcre libxml2"
LICENSE = "BSD"
PR = "r4"
SRC_URI = "http://www.lighttpd.net/download/lighttpd-1.4.13.tar.gz \
file://${PV}/configure.in.patch;patch=1;pnum=2 \
file://${PV}/src-server.c.patch;patch=1;pnum=1 \
file://conf/etc "
EXTRA_OECONF="--without-bzip2 \
--without-ldap \
--without-lua \
--without-memcache \
--with-pcre \
--with-webdav-props \
--with-webdav-locks \
--without-openssl \
--disable-nls \
--disable-static"
inherit autotools pkgconfig
do_install_append() {
cp -R ${WORKDIR}/conf/etc ${D}/etc
rm -fR ${D}/etc/.svn
rm -fR ${D}/etc/init.d/.svn
chmod -R 755 ${D}/etc
}
do_stage() {
autotools_stage_all
}
FILES_${PN} += "${libdir}/mod_*.so /etc"
|