commit: 462f1f439c8ecc070d0845622fc543661f1d6c28 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> AuthorDate: Wed May 26 12:02:42 2021 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Wed May 26 12:02:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=462f1f43
gui-apps/wob: fix deps, add use flags Closes: https://bugs.gentoo.org/791814 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in> gui-apps/wob/wob-0.11.ebuild | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/gui-apps/wob/wob-0.11.ebuild b/gui-apps/wob/wob-0.11.ebuild index b61a2044d..fefa16e7a 100644 --- a/gui-apps/wob/wob-0.11.ebuild +++ b/gui-apps/wob/wob-0.11.ebuild @@ -5,15 +5,28 @@ EAPI=7 inherit meson -DESCRIPTION="A lightweight overlay volume/backlight/progress/anything bar for Wayland." +DESCRIPTION="Lightweight overlay volume/backlight/progress/anything bar for Wayland" HOMEPAGE="https://github.com/francma/wob" SRC_URI="https://github.com/francma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="+man +seccomp" -DEPEND="dev-libs/wayland" -RDEPEND="${DEPEND}" -BDEPEND="" +RDEPEND="dev-libs/wayland" +DEPEND="${RDEPEND} + dev-libs/wayland-protocols +" +BDEPEND=" + dev-util/wayland-scanner + man? ( app-text/scdoc ) +" + +src_configure() { + local emesonargs=( + $(meson_feature man man-pages) + $(meson_feature seccomp) + ) + meson_src_configure +}
