summaryrefslogtreecommitdiff
path: root/packages/olsr/olsrd.inc
diff options
context:
space:
mode:
authorRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-06-24 08:39:00 +0000
committerRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-06-24 08:39:00 +0000
commit033f81a7ae575ff24b311a501d104e2e7b376e96 (patch)
treeab50e7225c60ab33503dd68b1fbbbb4150f5821e /packages/olsr/olsrd.inc
parentf0a7dda7ca5891361821f41a7515254c09c648d1 (diff)
olsr: consolidate olsr and olsrd into a common directory
Diffstat (limited to 'packages/olsr/olsrd.inc')
-rw-r--r--packages/olsr/olsrd.inc42
1 files changed, 42 insertions, 0 deletions
diff --git a/packages/olsr/olsrd.inc b/packages/olsr/olsrd.inc
new file mode 100644
index 0000000000..990d8a1678
--- /dev/null
+++ b/packages/olsr/olsrd.inc
@@ -0,0 +1,42 @@
+DESCRIPTION = "OLSR mesh routing daemon"
+HOMEPAGE = "http://www.olsr.org"
+DESCRIPTION_olsrd-libs = "OLSR mesh routing daemon - optional libraries"
+SECTION = "console/network"
+PRIORITY = "optional"
+LICENSE = "BSD"
+
+SRC_URI="http://www.olsr.org/releases/0.4/olsrd-${PV}.tar.bz2 \
+ file://init \
+ file://olsrd.conf"
+
+S = "${WORKDIR}/olsrd-${PV}"
+
+inherit update-rc.d
+
+INITSCRIPT_NAME = "olsrd"
+INITSCRIPT_PARAMS = "defaults"
+EXTRA_OEMAKE="MAKEFLAGS=-I${WORKDIR}/olsrd-${PV}"
+
+
+do_configure() {
+ oe_runmake OS=linux clean
+}
+
+do_compile() {
+ oe_runmake
+}
+
+do_install () {
+ oe_runmake OS=linux INSTALL_PREFIX=${D} STRIP=echo install install_libs
+ install -d ${D}/${sysconfdir}/init.d
+ install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/olsrd
+ install -m 644 ${WORKDIR}/olsrd.conf ${D}/${sysconfdir}
+}
+
+
+PACKAGES =+ "olsrd-libs"
+FILES_olsrd-libs = "${libdir}/*.so.*"
+
+RDEPENDS_${PN} = "olsrd-libs"
+
+CONFFILES_${PN} = "${sysconfdir}/olsrd.conf"