From ea9ca02b1c1fa62345dd043ad6dfd62ff88dc36f Mon Sep 17 00:00:00 2001 From: knotteye Date: Sun, 7 Feb 2021 21:04:23 -0600 Subject: [PATCH] Update looking-glass to explicitly disable wayland for now --- README.md | 2 +- app-emulation/looking-glass/Manifest | 2 +- app-emulation/looking-glass/looking-glass-9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 226e29c..0c65a82 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Containg mostly i3wm plugins for xfce4 #### Ebuild List * [i3ipc-glib](https://github.com/altdesktop/i3ipc-glib) A C interface to i3wm * [xfce4 i3 workspaces plugin](https://github.com/denesb/xfce4-i3-workspaces-plugin) An xfce4 plugin to show i3 workspaces -* [Looking Glass](https://github.com/gnif/LookingGlass/) An application for viewing video from a guest VM +* [Looking Glass](https://github.com/gnif/LookingGlass/) An application for viewing video from a guest VM (wayland support is disabled) * [Looking Glass OBS Plugin](https://github.com/gnif/LookingGlass/) An OBS Plugin for playing video from a guest VM #### Adding the repository diff --git a/app-emulation/looking-glass/Manifest b/app-emulation/looking-glass/Manifest index f323f46..0f90cdc 100644 --- a/app-emulation/looking-glass/Manifest +++ b/app-emulation/looking-glass/Manifest @@ -1,2 +1,2 @@ -EBUILD looking-glass-9999.ebuild 1654 BLAKE2B dbeff6e272ba6c8c129d755aa4c7c54af0a7086d0ec4ab95bc84ed3119c747890adaa7752b037a1399b8d8059e3e0041f7a21d5b339ab7d24fc2275a5899804e SHA512 f7499d1bdb063559e6df65eaf8062e137f990d2d98b5e956234d00ae305a912cb43b435dcbc4203a0118d2b73908c258e8f79a5b583f2d40ae3708939272778c +EBUILD looking-glass-9999.ebuild 1675 BLAKE2B 234bc3a7837b76d210f656cbf4924ef2dfa34c20570b023665c4f94c1046c089fe7f82646d59b46d220b91d0f094ace13de78d1c6837c24f7bb33d15e4bed538 SHA512 dd0ef7828e3f8de4bbfcd539765668a0a8f2978fc095b3283974b5303bcf91f0408f1a17a40d63665b1e6e6651999f1d361aed8a6d5cd9c219d8b8a770a142ca MISC metadata.xml 329 BLAKE2B c613c0d366e5c79b96f4707dd6b2c4d41a627b2b5f5a2a29f58c2ea239b891b9e2f1bf43d2d436127004eecd416dd3d59dcd88e8bfe4c977b3953f55756c528a SHA512 439861039e04a7d9b7b1cf4c1c404698dc2322d7786c8779cf3f24060d7bf4f966b104c94d44fbce72874b8c9fbaac5bc058d33c9e2bea1b2e38adca24df3b64 diff --git a/app-emulation/looking-glass/looking-glass-9999.ebuild b/app-emulation/looking-glass/looking-glass-9999.ebuild index a8090ad..1c3bd2b 100644 --- a/app-emulation/looking-glass/looking-glass-9999.ebuild +++ b/app-emulation/looking-glass/looking-glass-9999.ebuild @@ -58,7 +58,7 @@ src_configure() { src_compile(){ mkdir client/build cd client/build - cmake ../ || die "cmake failed" + cmake ../ -DENABLE_WAYLAND=OFF || die "cmake failed" make || die "make failed" }