summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/iputils
diff options
context:
space:
mode:
authorScott Garman <scott.a.garman@intel.com>2011-02-15 16:39:31 -0800
committerSaul Wold <sgw@linux.intel.com>2011-02-16 07:45:19 -0800
commitfb9dd99ecfff4146ced6eb43ea259b8874d4a262 (patch)
tree3d0f3ff1634843f989124689cc02d8a98e3da68b /meta/recipes-extended/iputils
parentf5d2b58e9944c5b1ae820cf44f535f9847b8bac3 (diff)
downloadpoky-fb9dd99ecfff4146ced6eb43ea259b8874d4a262.tar.gz
iputils: enable generation of man pages
This fixes [BUGID #211] Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'meta/recipes-extended/iputils')
-rw-r--r--meta/recipes-extended/iputils/iputils_s20101006.bb13
1 files changed, 5 insertions, 8 deletions
diff --git a/meta/recipes-extended/iputils/iputils_s20101006.bb b/meta/recipes-extended/iputils/iputils_s20101006.bb
index 0a4201787c..c4db5b4746 100644
--- a/meta/recipes-extended/iputils/iputils_s20101006.bb
+++ b/meta/recipes-extended/iputils/iputils_s20101006.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://ping.c;beginline=1;endline=35;md5=f9ceb201733e9a6cf8f
11 file://arping.c;beginline=1;endline=10;md5=ada2a6d06acc90f943bddf40d15e0541 \ 11 file://arping.c;beginline=1;endline=10;md5=ada2a6d06acc90f943bddf40d15e0541 \
12 file://tftpd.c;beginline=1;endline=32;md5=28834bf8a91a5b8a92755dbee709ef96 " 12 file://tftpd.c;beginline=1;endline=32;md5=28834bf8a91a5b8a92755dbee709ef96 "
13 13
14DEPENDS = "sysfsutils openssl" 14DEPENDS = "sysfsutils openssl docbook-utils-native"
15 15
16PR = "r0" 16PR = "r0"
17 17
@@ -26,11 +26,8 @@ SRC_URI = "http://www.skbuff.net/iputils/${PN}-${PV}.tar.bz2 \
26SRC_URI[md5sum] = "a36c25e9ec17e48be514dc0485e7376c" 26SRC_URI[md5sum] = "a36c25e9ec17e48be514dc0485e7376c"
27SRC_URI[sha256sum] = "fd3af46c80ebb99607c2ca1f2a3608b6fe828e25bbec6e54f2afd25f6ddb6ee7" 27SRC_URI[sha256sum] = "fd3af46c80ebb99607c2ca1f2a3608b6fe828e25bbec6e54f2afd25f6ddb6ee7"
28 28
29# man is not compiled here, since it requires docbook-utils-native
30# which is not available in poky
31
32do_compile () { 29do_compile () {
33 oe_runmake 'CC=${CC} -D_GNU_SOURCE' VPATH="${STAGING_LIBDIR}" all 30 oe_runmake 'CC=${CC} -D_GNU_SOURCE' VPATH="${STAGING_LIBDIR}" all man
34} 31}
35 32
36do_install () { 33do_install () {
@@ -44,9 +41,9 @@ do_install () {
44 install -m 0755 $i ${D}${base_bindir}/ 41 install -m 0755 $i ${D}${base_bindir}/
45 done 42 done
46 # Manual pages for things we build packages for 43 # Manual pages for things we build packages for
47# for i in tracepath.8 traceroute6.8 ping.8 arping.8; do 44 for i in tracepath.8 traceroute6.8 ping.8 arping.8; do
48# install -m 0644 doc/$i ${D}${mandir}/man8/ || true 45 install -m 0644 doc/$i ${D}${mandir}/man8/ || true
49# done 46 done
50} 47}
51 48
52# Busybox also provides ping and ping6, so use update-alternatives 49# Busybox also provides ping and ping6, so use update-alternatives