Advertisement
Guest User

looking-glass-client-12_alpha.ebuild

a guest
Feb 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. # Copyright 2019 Gentoo Authors
  2. # Distributed under the terms of the GNU General Public License v2
  3.  
  4. EAPI=7
  5.  
  6. inherit cmake-utils flag-o-matic
  7.  
  8. MY_PV="a$(ver_cut 1)"
  9.  
  10. DESCRIPTION="An extremely low latency KVMFR implementation for VGA PCI Passthrough guests"
  11. HOMEPAGE="https://looking-glass.hostfission.com/"
  12. SRC_URI="https://github.com/gnif/LookingGlass/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
  13.  
  14. LICENSE="GPL-2.0"
  15. SLOT="0"
  16. KEYWORDS="~amd64"
  17. IUSE=""
  18.  
  19. DEPEND="
  20. media-libs/libsdl2
  21. dev-libs/nettle
  22. app-emulation/spice-protocol
  23. media-libs/fontconfig
  24. x11-libs/libX11
  25. media-fonts/freefont
  26. dev-libs/libconfig
  27. "
  28. RDEPEND="${DEPEND}"
  29. BDEPEND=""
  30.  
  31. src_unpack() {
  32. default
  33. }
  34.  
  35. src_prepare() {
  36. default
  37. }
  38.  
  39. src_configure() {
  40. mkdir client/build
  41. cd client/build
  42. cmake ../
  43. }
  44.  
  45. src_compile() {
  46. cd client/build
  47. make
  48. }
  49.  
  50. src_install() {
  51. default
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement