dev-libs/sway: updated live ebuild

Closes: https://github.com/gentoo/gentoo/pull/5224
This commit is contained in:
Mykyta Holubakha
2017-07-27 22:26:42 +03:00
committed by David Seifert
parent 236a6c8702
commit bc23c8123c

View 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]
}