mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 13:33:32 -04:00
gnome-extra/yad: initial commit
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Peter Levine <plevine457@gmail.com>
This commit is contained in:
1
gnome-extra/yad/Manifest
Normal file
1
gnome-extra/yad/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST yad-10.1.tar.xz 290776 BLAKE2B 05801869314752b443beac56527909cf4ed3047bdcc3531d27a038ca866f1ae2c43dbc7c10c38829c6ec3cfa7b87158de800d833a3d7c2ac834cbfb9f7ebaa89 SHA512 2e55779074c64da679eab03c4e5d655470293d9fd7c7e7bc0e653610d5952f37cb96829185fab84471a8fe833f0a9fb2daef18f2ab2936acc1e141d8166a7355
|
||||
20
gnome-extra/yad/metadata.xml
Normal file
20
gnome-extra/yad/metadata.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<description>new maintainers welcome</description>
|
||||
<name>Peter Levine</name>
|
||||
<email>plevine457@gmail.com</email>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<maintainer>
|
||||
<name>Victor Ananjevsky</name>
|
||||
<email>victor@sanana.kiev.ua</email>
|
||||
</maintainer>
|
||||
<bugs-to>https://github.com/v1cont/yad/issues</bugs-to>
|
||||
<remote-id type="github">v1cont/yad</remote-id>
|
||||
</upstream>
|
||||
<use>
|
||||
<flag name="spell">Enable spell check support with <pkg>app-text/gspell</pkg></flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
36
gnome-extra/yad/yad-10.1.ebuild
Normal file
36
gnome-extra/yad/yad-10.1.ebuild
Normal file
@@ -0,0 +1,36 @@
|
||||
# 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
|
||||
}
|
||||
Reference in New Issue
Block a user