aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRene Wagner <rw@handhelds.org>2004-09-01 19:52:51 +0000
committerRene Wagner <rw@handhelds.org>2004-09-01 19:52:51 +0000
commit5dd070708e137e5b1df4363a5abfa11ed3f646e4 (patch)
tree14c76776eeec8aed74dc6e302c2892799fb45c05
parent5fb4f19ec427b0c9aa756a159dd032129310bb3d (diff)
downloadopenembedded-5dd070708e137e5b1df4363a5abfa11ed3f646e4.tar.gz
boa: set RDEPENDS="mime-support"
BKrev: 41362893gNEhKa_NKGVYr8l7mHf3iw
-rw-r--r--boa/boa_0.94.13.oe51
1 files changed, 51 insertions, 0 deletions
diff --git a/boa/boa_0.94.13.oe b/boa/boa_0.94.13.oe
index e69de29bb2..7e4fdb1faf 100644
--- a/boa/boa_0.94.13.oe
+++ b/boa/boa_0.94.13.oe
@@ -0,0 +1,51 @@
+DESCRIPTION = "Lightweight and High Performance WebServer"
+SECTION = "net"
+RPROVIDES = "httpd"
+MAINTAINER = "Rene Wagner <reenoo@gmx.de>"
+
+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
+
+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}
+ install -d ${D}/${sysconfdir}/init.d
+ install -m 0640 ${WORKDIR}/boa.conf ${D}/${sysconfdir}
+ install -m 0640 ${WORKDIR}/boa.init ${D}/${sysconfdir}/init.d/boa
+}
+
+pkg_postinst() {
+if test "x$D" != "x"; then
+ exit 1
+else
+ addgroup www-data
+ adduser --system --home /dev/null --no-create-home --disabled-password --ingroup www-data -s /bin/false www-data
+ update-rc.d -s boa defaults 20
+fi
+}
+
+pkg_postrm() {
+if test "x$D" != "x"; then
+ exit 1
+else
+ ${sysconfdir}/init.d/boa stop
+ deluser www-data
+ delgroup www-data
+ update-rc.d -f boa remove
+fi
+}