dev-libs/sway: updated live ebuild
authorMykyta Holubakha <hilobakho@gmail.com>
Thu, 27 Jul 2017 19:26:42 +0000 (22:26 +0300)
committerDavid Seifert <soap@gentoo.org>
Sun, 30 Jul 2017 14:37:47 +0000 (16:37 +0200)
Closes: https://github.com/gentoo/gentoo/pull/5224

dev-libs/sway/sway-9999.ebuild

index 93173283fe5f217373042c754e104f0fec2e5f91..bd77799828ac1d2d4bfd5e694c266063952aaa8d 100644 (file)
@@ -13,7 +13,9 @@ EGIT_REPO_URI="https://github.com/SirCmpwn/sway.git"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
-IUSE="+swaybg +swaybar +swaymsg swaygrab swaylock +gdk-pixbuf zsh-completion wallpapers systemd"
+IUSE="+swaybg +swaybar +swaymsg swaygrab swaylock +gdk-pixbuf zsh-completion wallpapers systemd +tray"
+
+REQUIRED_USE="tray? ( swaybar )"
 
 RDEPEND="=dev-libs/wlc-9999[systemd=]
        dev-libs/json-c
@@ -25,6 +27,7 @@ RDEPEND="=dev-libs/wlc-9999[systemd=]
        x11-libs/pango
        x11-libs/cairo
        swaylock? ( virtual/pam )
+       tray? ( sys-apps/dbus )
        gdk-pixbuf? ( x11-libs/gdk-pixbuf[jpeg] )"
 
 DEPEND="${RDEPEND}
@@ -45,6 +48,7 @@ src_configure() {
                -Denable-swaygrab=$(usex swaygrab)
                -Denable-swaylock=$(usex swaylock)
                -Denable-swaymsg=$(usex swaymsg)
+               -Denable-tray=$(usex tray)
 
                -Ddefault-wallpaper=$(usex wallpapers)
 
@@ -69,5 +73,11 @@ pkg_postinst() {
                optfeature "swaygrab screenshot support" media-gfx/imagemagick[png]
                optfeature "swaygrab video capture support" virtual/ffmpeg
        fi
+       if use tray
+       then
+               optfeature "experimental xembed tray icons support" \
+                       x11-misc/xembedsniproxy
+       fi
        optfeature "X11 applications support" dev-libs/wlc[xwayland] x11-base/xorg-server[wayland]
+
 }