summaryrefslogtreecommitdiffstats
path: root/package/openvmtools/openvmtools.mk
Commit message (Collapse)AuthorAgeFilesLines
* package/openvmtools: bump to version 9.10.2Karoly Kasza2015-07-041-1/+8
| | | | | Signed-off-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvmtools: fix legal infoGustavo Zacarias2015-06-221-2/+2
| | | | | | | | | | | | | | | In ab71dff0 it was moved to SUBDIR, but this was never reflected for the legal-info files, update this to fix: http://autobuild.buildroot.net/results/836/8363943cc9c967713f585209408ea087a052a12d/ [Thomas: put OPENVMTOOLS_SUBDIR before OPENVMTOOLS_LICENSE_FILES, as suggested by Yann.] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Karoly Kasza <kaszak@gmail.com> Tested-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openvmtools: introduce SUBDIR variable and update patchesKaroly Kasza2015-06-171-0/+1
| | | | | | | | | | | | | | | The Open-vm-tools package is now distributed from GitHub and a new subdirectory was introduced, which breaks the Buildroot process. This patch adds the _SUBDIR variable in the Makefile and also updates all distributed patches. Fixes: http://autobuild.buildroot.net/results/bfd10c8d454a2686ebb1c4afdb49c55e39a9dd67/ Signed-off-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openvmtools: move to GitHubKaroly Kasza2015-06-151-4/+2
| | | | | | | | | The Open-vm-tools project is moved to GitHub. Hash file removed. Major version variable removed. Signed-off-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvmtools: add OPENVMTOOLS_VERSION_MAJOR variableJerzy Grzegorek2015-06-111-2/+3
| | | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openvmtools: fix procps-ng library nameKaroly Kasza2015-04-191-1/+0
| | | | | | | | | | | | | | procps-ng libraries are now accesible on the same name as procps, thus using the CUSTOM_PROCPS_NAME environment variable breaks compilation. Fixes: http://autobuild.buildroot.net/results/2a1/2a19f84c35de0ff008c2cd1aea96f6a4f2767ee1/ Signed-off-by: Karoly Kasza <kaszak@gmail.com> Reviewed-by: Romain Naour <romain.naour@openwide.fr> Tested-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openvmtools: bump version to 9.10.0Karoly Kasza2015-04-071-19/+18
| | | | | | | | | | [Thomas: - add explicit --with-ssl - remove comment above openssl condition, as it is obvious what is happening.] Signed-off-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvmtools: move systemd service to /usr/libMike Williams2015-03-201-2/+2
| | | | | Signed-off-by: Mike Williams <mike@mikebwilliams.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openvmtools: don't use host library pathRomain Naour2015-02-141-1/+3
| | | | | | | | | | | | Set CUSTOM_PROCPS_LIBS to " " otherwise -L/lib is used by default. Fixes: http://autobuild.buildroot.net/results/bff/bff7d8f3ec19ce790f0c88a336d1007e1ff29836/ [Thomas: fix typo in commit log.] Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvmtools: remove unnecessary C flagKaroly Kasza2014-10-061-1/+0
| | | | | | | | | Since commit 8bec0a1af57165081dc275f813c8c5c74ff12c14 the -Wno-unused-local-typedefs CFLAG in not needed. Signed-off-by: Karoly Kasza <kaszak@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_CONF_OPT into FOO_CONF_OPTSThomas De Schampheleire2014-10-041-7/+7
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_MAKE_OPT into FOO_MAKE_OPTSThomas De Schampheleire2014-10-041-1/+1
| | | | | | | | | | | | | | | | | | | | | While the autotools infrastructure was using FOO_MAKE_OPT, generic packages were typically using FOO_MAKE_OPTS. This inconsistency becomes a problem when a new infrastructure is introduced that wants to make use of FOO_MAKE_OPT(S), and can live alongside either generic-package or autotools-package. The new infrastructure will have to choose between either OPT or OPTS, and thus rule out transparent usage by respectively generic packages or generic packages. An example of such an infrastructure is kconfig-package, which provides kconfig-related make targets. The OPTS variant is more logical, as there are typically multiple options. This patch renames all occurrences of FOO_MAKE_OPT in FOO_MAKE_OPTS. Sed command used: find * -type f | xargs sed -i 's#_MAKE_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvmtools: disable -WerrorKaroly Kasza2014-09-211-4/+0
| | | | | | | | | | | | | Disable the mandatory flag -Werror in configure.ac. This also makes -Wno-deprecated-declarations flag unnecessary. Fixes: http://autobuild.buildroot.net/results/440/4400abc17115d0f5eb65c4eb012f11766cbe5a56/ http://autobuild.buildroot.net/results/02b/02b24a012dbc76e366c10d3758978eba5e597499/ Signed-off-by: Karoly Kasza <kaszak@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvmtools: new packageKaroly Kasza2014-09-131-0/+79
New package: openvmtools [Peter: add patch to fix compilation against modern glib versions] Signed-off-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud