diff options
-rw-r--r-- | meta-oe/recipes-support/remmina/remmina_1.3.6.bb | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/remmina/remmina_1.3.6.bb b/meta-oe/recipes-support/remmina/remmina_1.3.6.bb index b95c400b28..cd6bc145c1 100644 --- a/meta-oe/recipes-support/remmina/remmina_1.3.6.bb +++ b/meta-oe/recipes-support/remmina/remmina_1.3.6.bb | |||
@@ -3,7 +3,10 @@ HOMEPAGE = "https://remmina.org" | |||
3 | SECTION = "Support" | 3 | SECTION = "Support" |
4 | LICENSE = "GPLv2 & openssl" | 4 | LICENSE = "GPLv2 & openssl" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dab7215512044d49037272ce1ac4ea8f file://LICENSE.OpenSSL;md5=c1eb3cee0a4dea27503c531267a69769" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dab7215512044d49037272ce1ac4ea8f file://LICENSE.OpenSSL;md5=c1eb3cee0a4dea27503c531267a69769" |
6 | DEPENDS += "openssl freerdp gtk+3 gdk-pixbuf atk libgcrypt avahi-ui libsodium libssh vte json-glib libsoup-2.4 libvncserver spice spice-protocol libsecret" | 6 | DEPENDS += "openssl freerdp gtk+3 gdk-pixbuf atk libgcrypt avahi-ui libsodium libssh vte json-glib libsoup-2.4 libvncserver libsecret" |
7 | |||
8 | DEPENDS_append_x86 = " spice spice-protocol" | ||
9 | DEPENDS_append_x86-64 = " spice spice-protocol" | ||
7 | 10 | ||
8 | DEPENDS_append_libc-musl = "libexecinfo" | 11 | DEPENDS_append_libc-musl = "libexecinfo" |
9 | LDFLAGS_append_libc-musl = " -lexecinfo" | 12 | LDFLAGS_append_libc-musl = " -lexecinfo" |
@@ -17,7 +20,11 @@ S = "${WORKDIR}/Remmina-v${PV}" | |||
17 | 20 | ||
18 | inherit cmake | 21 | inherit cmake |
19 | 22 | ||
20 | EXTRA_OECMAKE += "-DWITH_APPINDICATOR=OFF -DWITH_GETTEXT=OFF -DWITH_TRANSLATIONS=OFF" | 23 | EXTRA_OECMAKE += "-DWITH_APPINDICATOR=OFF -DWITH_GETTEXT=OFF -DWITH_TRANSLATIONS=OFF -DWITH_SPICE=OFF" |
24 | |||
25 | EXTRA_OECMAKE_append_x86 = " -DWITH_SPICE=ON" | ||
26 | EXTRA_OECMAKE_append_x86-64 = " -DWITH_SPICE=ON" | ||
27 | |||
21 | 28 | ||
22 | do_install_append(){ | 29 | do_install_append(){ |
23 | # We dont need the extra stuff form other desktop environments | 30 | # We dont need the extra stuff form other desktop environments |
@@ -29,5 +36,3 @@ do_install_append(){ | |||
29 | RDEPENDS_${PN} = "bash" | 36 | RDEPENDS_${PN} = "bash" |
30 | 37 | ||
31 | FILES_${PN}_append = " ${datadir}/icons/hicolor/*" | 38 | FILES_${PN}_append = " ${datadir}/icons/hicolor/*" |
32 | |||
33 | COMPATIBLE_HOST = '(x86_64|i.86).*-linux' | ||