Merge openembedded@openembedded.bkbits.net:packages-devel
authorChris Larson <clarson@kergoth.com>
Sun, 14 Nov 2004 11:29:52 +0000 (11:29 +0000)
committerChris Larson <clarson@kergoth.com>
Sun, 14 Nov 2004 11:29:52 +0000 (11:29 +0000)
into handhelds.org:/home/kergoth/code/packages

2004/11/14 06:29:47-05:00 handhelds.org!kergoth
Split uniondbg out into unionfs-utils-dev, since it will likely never actually be used by anyone.

BKrev: 419741b0Vc8jkktZQ-z41JcSrKgdMg

unionfs/unionfs-utils_1.0.3.oe

index e69de29..01a9b66 100644 (file)
@@ -0,0 +1,22 @@
+unionutils = "unionctl uniondbg"
+
+include unionfs_${PV}.inc
+
+PR = "r1"
+
+FILES_${PN} = "${sbindir}/unionctl"
+FILES_${PN}-dev = "${sbindir}/uniondbg"
+
+do_compile () {
+       oe_runmake ${unionutils}
+}
+
+do_install () {
+       install -d ${D}/${sbindir}
+       install -m 0755 ${unionutils} ${D}/${sbindir}/
+
+       install -d ${D}/${mandir}/man8
+       for m in ${unionutils}; do
+               install -m 0644 man/$m.8 ${D}/${mandir}/man8/ || exit 1
+       done
+}