diff options
| author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-03-25 15:38:22 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-03-25 15:38:22 -0400 |
| commit | adf590f2283097b64976936e530084986c203b2b (patch) | |
| tree | 6cb99bb0647ec5c19f4bf32aec256ae3aa0fc146 /recipes-support/spice/spice_git.bb | |
| parent | dfc85232382af8fee180a83bd33f9d436557b774 (diff) | |
| download | meta-cloud-services-adf590f2283097b64976936e530084986c203b2b.tar.gz | |
meta-cloud-services: introduce spice
A common requirement for many cloud systems is remote console access. Adding
spice to the common layer allows a rich console environment to be provided.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-support/spice/spice_git.bb')
| -rw-r--r-- | recipes-support/spice/spice_git.bb | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/recipes-support/spice/spice_git.bb b/recipes-support/spice/spice_git.bb new file mode 100644 index 0000000..900259a --- /dev/null +++ b/recipes-support/spice/spice_git.bb | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | # | ||
| 2 | # Copyright (C) 2013 Wind River Systems, Inc. | ||
| 3 | # | ||
| 4 | |||
| 5 | SUMMARY = "Simple Protocol for Independent Computing Environments" | ||
| 6 | DESCRIPTION = "SPICE (the Simple Protocol for Independent Computing \ | ||
| 7 | Environments) is a remote-display system built for virtual \ | ||
| 8 | environments which allows users to view a computing 'desktop' \ | ||
| 9 | environment - not only on its computer-server machine, but also from \ | ||
| 10 | anywhere on the Internet and using a wide variety of machine \ | ||
| 11 | architectures." | ||
| 12 | |||
| 13 | LICENSE = "LGPLv2.1+" | ||
| 14 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
| 15 | |||
| 16 | PR = "r0" | ||
| 17 | PV = "0.12.4" | ||
| 18 | |||
| 19 | # Actual versions based on the checkouts below | ||
| 20 | # spice = "0.12.4" | ||
| 21 | # common = "0.12.6" | ||
| 22 | # protocol = "0.12.6" | ||
| 23 | SRCREV_spice = "b270fb010a3ddb432dfe6b15e4bdffa6ac086cd0" | ||
| 24 | SRCREV_spice-common = "fe93908238196bd632287fc9875e6f2e11105d04" | ||
| 25 | SRCREV_spice-protocol = "784407f248e7f99d2bfcc9368f9acd1efb2b9617" | ||
| 26 | |||
| 27 | SRC_URI = "git://anongit.freedesktop.org/spice/spice;name=spice \ | ||
| 28 | git://anongit.freedesktop.org/spice/spice-common;destsuffix=git/spice-common;name=spice-common \ | ||
| 29 | git://anongit.freedesktop.org/spice/spice-protocol;destsuffix=git/spice-common/spice-protocol;name=spice-protocol \ | ||
| 30 | " | ||
| 31 | |||
| 32 | SRC_URI += "file://spice-fix-CVE-2013-4282.patch" | ||
| 33 | |||
| 34 | S = "${WORKDIR}/git" | ||
| 35 | |||
| 36 | inherit autotools gettext pythonnative python-dir pkgconfig | ||
| 37 | |||
| 38 | DEPENDS += "python-native celt051 python-pyparsing jpeg pixman alsa-lib glib-2.0" | ||
| 39 | |||
| 40 | EXTRA_OECONF_append = " -Wnone" | ||
| 41 | EXTRA_AUTORECONF_append = " -Wnone" | ||
| 42 | |||
| 43 | export PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" | ||
| 44 | export PYTHONPATH="${PKG_CONFIG_SYSROOT_DIR}${libdir}/python2.7/site-packages" | ||
| 45 | |||
| 46 | PACKAGECONFIG ?= "sasl" | ||
| 47 | |||
| 48 | PACKAGECONFIG[smartcard] = "--enable-smartcard,--disable-smartcard,libcacard," | ||
| 49 | PACKAGECONFIG[sasl] = "--with-sasl,--without-sasl,cyrus-sasl," | ||
| 50 | PACKAGECONFIG[client] = "--enable-client,--disable-client,," | ||
| 51 | PACKAGECONFIG[gui] = "--enable-gui,--disable-gui,," | ||
| 52 | PACKAGECONFIG[opengl] = "--enable-opengl,--disable-opengl,," | ||
| 53 | |||
| 54 | PACKAGES =+ "${PN}-protocol" | ||
| 55 | LICENSE_${PN}-protocol = "BSD" | ||
| 56 | FILES_${PN}-protocol += "${includedir}/spice-1" | ||
| 57 | FILES_${PN}-protocol += "${datadir}/pkgconfig" | ||
| 58 | |||
| 59 | do_install_append() { | ||
| 60 | cd ${S}/spice-common/spice-protocol | ||
| 61 | oe_runmake DESTDIR="${D}" install | ||
| 62 | cd - | ||
| 63 | } | ||
