mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Peter Levine <plevine457@gmail.com>
37 lines
763 B
Bash
37 lines
763 B
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit gnome2
|
|
|
|
DESCRIPTION="Display GTK+ dialog boxes from command line or shell scripts"
|
|
HOMEPAGE="https://github.com/v1cont/yad"
|
|
SRC_URI="https://github.com/v1cont/${PN}/releases/download/v${PV}/${P}.tar.xz"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="nls spell webkit"
|
|
|
|
DEPEND="
|
|
>=x11-libs/gtk+-3.22.0:3=
|
|
spell? ( app-text/gspell:0 )
|
|
webkit? ( net-libs/webkit-gtk:4 )"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
gnome2_src_configure \
|
|
$(use_enable nls) \
|
|
$(use_enable spell) \
|
|
$(use_enable webkit html) \
|
|
--disable-sourceview \
|
|
--disable-standalone \
|
|
--enable-tools \
|
|
--enable-icon-browser \
|
|
--enable-tools \
|
|
--enable-tray
|
|
}
|