diff options
Diffstat (limited to 'packages/lighttpd/lighttpd_1.4.13.bb')
-rw-r--r-- | packages/lighttpd/lighttpd_1.4.13.bb | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/packages/lighttpd/lighttpd_1.4.13.bb b/packages/lighttpd/lighttpd_1.4.13.bb index 53aa9ff37f..d56132e47d 100644 --- a/packages/lighttpd/lighttpd_1.4.13.bb +++ b/packages/lighttpd/lighttpd_1.4.13.bb @@ -1,28 +1,37 @@ DESCRIPTION = "Web server" SECTION = "net" -#DEPENDS = "libpcre openssl" +DEPENDS = "sqlite3 libpcre libxml2" LICENSE = "BSD" -PR = "r0" +PR = "r3" 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://${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 \ - --without-mysql \ - --without-pcre \ + --with-pcre \ + --with-webdav-props \ + --with-webdav-locks \ --without-openssl \ - --without-webdav-locks \ - --without-webdav-props \ --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" +FILES_${PN} += "${libdir}/mod_*.so /etc" |