gui-apps/fyi - 9999 (guru)

Search

Install

Install this version:

emerge -a =gui-apps/fyi-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =gui-apps/fyi-9999

Or alternatively:

emerge --autounmask-write -a =gui-apps/fyi-9999

Package Information

Description:
A notify-send alternative
Homepage:
https://codeberg.org/dnkl/fyi
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~arm64 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit meson flag-o-matic

DESCRIPTION="A notify-send alternative"
HOMEPAGE="https://codeberg.org/dnkl/fyi"

if [[ "${PV}" == *9999* ]]; then
	inherit git-r3

	EGIT_REPO_URI="https://codeberg.org/dnkl/fyi.git"
else
	SRC_URI="https://codeberg.org/dnkl/fyi/archive/${PV}.tar.gz
		-> ${P}.tar.gz"

	S="${WORKDIR}/fyi"

	KEYWORDS="~amd64 ~arm64"
fi

LICENSE="MIT"
SLOT="0"

RDEPEND="sys-apps/dbus"
BDEPEND="
	${RDEPEND}
	dev-build/meson
	dev-build/ninja
	app-text/scdoc
"

PATCHES=("${FILESDIR}/meson-doc-subdir.patch")

src_configure() {
	append-flags -fno-exceptions
	EMESON_BUILDTYPE="minsize"
	local emesonargs=(
		-Ddocsdir="doc/${P}"
	)
	meson_src_configure
}

Inherited Eclasses

Dependencies

RDEPEND

sys-apps/dbus

BDEPEND

	sys-apps/dbus
	dev-build/meson
	dev-build/ninja
	app-text/scdoc