diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-06-23 15:48:46 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-01 09:59:25 +0200 |
commit | 7b32361bd7e2a4a65123f90dcc1e9ff9e90ca2ba (patch) | |
tree | 4f20e115f1690e41cac57b3d843dde2bb3ad434e /meta-oe/recipes-support | |
parent | e50762e09b1624910daaf5bb28c4584c291b089b (diff) | |
download | meta-openembedded-7b32361bd7e2a4a65123f90dcc1e9ff9e90ca2ba.tar.gz |
open-vm-tools: style changes
Various cosmetic changes to make the recipe match the style guide:
http://www.openembedded.org/wiki/Styleguide
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r-- | meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb index 906eaba64..4ab2820c1 100644 --- a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb +++ b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb | |||
@@ -9,7 +9,8 @@ | |||
9 | # in meta-openembedded by agreement of the author (Diego Dompe). | 9 | # in meta-openembedded by agreement of the author (Diego Dompe). |
10 | # | 10 | # |
11 | 11 | ||
12 | DECRIPTION = "open-vm-tools" | 12 | SUMMARY = "Tools to enhance VMWare guest integration and performance" |
13 | HOMEPAGE = "https://github.com/vmware/open-vm-tools" | ||
13 | SECTION = "vmware-tools" | 14 | SECTION = "vmware-tools" |
14 | 15 | ||
15 | LICENSE = "LGPLv2.1 & GPLv2 & BSD & CDDLv1" | 16 | LICENSE = "LGPLv2.1 & GPLv2 & BSD & CDDLv1" |
@@ -32,7 +33,6 @@ SRCREV = "854c0bb374612f7e633b448ca273f970f154458b" | |||
32 | S = "${WORKDIR}/git/open-vm-tools" | 33 | S = "${WORKDIR}/git/open-vm-tools" |
33 | 34 | ||
34 | DEPENDS = "glib-2.0 glib-2.0-native util-linux libdnet procps" | 35 | DEPENDS = "glib-2.0 glib-2.0-native util-linux libdnet procps" |
35 | RDEPENDS_${PN} = "util-linux libdnet" | ||
36 | 36 | ||
37 | # open-vm-tools is supported only on x86. | 37 | # open-vm-tools is supported only on x86. |
38 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' | 38 | COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' |
@@ -53,18 +53,24 @@ PACKAGECONFIG[x11] = ",${NO_X11_FLAGS},${X11_DEPENDS}" | |||
53 | # fuse gets implicitly detected; there is no --without-fuse option. | 53 | # fuse gets implicitly detected; there is no --without-fuse option. |
54 | PACKAGECONFIG[fuse] = ",,fuse" | 54 | PACKAGECONFIG[fuse] = ",,fuse" |
55 | 55 | ||
56 | CFLAGS += '-Wno-error=deprecated-declarations' | 56 | CFLAGS += "-Wno-error=deprecated-declarations" |
57 | 57 | ||
58 | FILES_${PN} += "/usr/lib/open-vm-tools/plugins/vmsvc/lib*.so \ | 58 | FILES_${PN} += "\ |
59 | /usr/lib/open-vm-tools/plugins/common/lib*.so \ | 59 | /usr/lib/open-vm-tools/plugins/vmsvc/lib*.so \ |
60 | ${sysconfdir}/vmware-tools/tools.conf" | 60 | /usr/lib/open-vm-tools/plugins/common/lib*.so \ |
61 | ${sysconfdir}/vmware-tools/tools.conf \ | ||
62 | " | ||
61 | FILES_${PN}-locale += "/usr/share/open-vm-tools/messages" | 63 | FILES_${PN}-locale += "/usr/share/open-vm-tools/messages" |
62 | FILES_${PN}-dev += "/usr/lib/open-vm-tools/plugins/common/lib*.la" | 64 | FILES_${PN}-dev += "/usr/lib/open-vm-tools/plugins/common/lib*.la" |
63 | FILES_${PN}-dbg += "/usr/lib/open-vm-tools/plugins/common/.debug \ | 65 | FILES_${PN}-dbg += "\ |
64 | /usr/lib/open-vm-tools/plugins/vmsvc/.debug" | 66 | /usr/lib/open-vm-tools/plugins/common/.debug \ |
67 | /usr/lib/open-vm-tools/plugins/vmsvc/.debug \ | ||
68 | " | ||
65 | 69 | ||
66 | CONFFILES_${PN} += "${sysconfdir}/vmware-tools/tools.conf" | 70 | CONFFILES_${PN} += "${sysconfdir}/vmware-tools/tools.conf" |
67 | 71 | ||
72 | RDEPENDS_${PN} = "util-linux libdnet fuse" | ||
73 | |||
68 | do_install_append() { | 74 | do_install_append() { |
69 | ln -sf /usr/sbin/mount.vmhgfs ${D}/sbin/mount.vmhgfs | 75 | ln -sf /usr/sbin/mount.vmhgfs ${D}/sbin/mount.vmhgfs |
70 | install -d ${D}${systemd_unitdir}/system ${D}${sysconfdir}/vmware-tools | 76 | install -d ${D}${systemd_unitdir}/system ${D}${sysconfdir}/vmware-tools |