Gentoo Archives: gentoo-commits

From: Leonardo Hernandez <leohdz172@×××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/fnott/
Date: Sun, 31 Jul 2022 18:16:30
Message-Id: 1659291334.19dd2d56ba119308a1efade691e788b3c233ca81.leohdz172@gentoo
1 commit: 19dd2d56ba119308a1efade691e788b3c233ca81
2 Author: Leonardo Hernández Hernández <leohdz172 <AT> outlook <DOT> com>
3 AuthorDate: Sun Jul 31 18:14:34 2022 +0000
4 Commit: Leonardo Hernandez <leohdz172 <AT> outlook <DOT> com>
5 CommitDate: Sun Jul 31 18:15:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19dd2d56
7
8 gui-apps/fnott: add 9999
9
10 Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> outlook.com>
11
12 gui-apps/fnott/fnott-9999.ebuild | 46 ++++++++++++++++++++++++++++++++++++++++
13 1 file changed, 46 insertions(+)
14
15 diff --git a/gui-apps/fnott/fnott-9999.ebuild b/gui-apps/fnott/fnott-9999.ebuild
16 new file mode 100644
17 index 000000000..5f1d72055
18 --- /dev/null
19 +++ b/gui-apps/fnott/fnott-9999.ebuild
20 @@ -0,0 +1,46 @@
21 +# Copyright 2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +inherit meson
27 +
28 +DESCRIPTION="Keyboard driven and lightweight Wayland notification daemon."
29 +HOMEPAGE="https://codeberg.org/dnkl/fnott"
30 +
31 +if [ "${PV}" -eq "9999" ]; then
32 + inherit git-r3
33 + EGIT_REPO_URI="https://codeberg.org/dnkl/fnott.git"
34 +else
35 + SRC_URI="https://codeberg.org/dnkl/fnott/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 + S="${WORKDIR}/${PN}"
37 + KEYWORDS="~amd64"
38 +fi
39 +
40 +LICENSE="MIT ZLIB"
41 +SLOT="0"
42 +
43 +DEPEND="
44 + x11-libs/pixman
45 + media-libs/libpng
46 + dev-libs/wayland
47 + sys-apps/dbus
48 + media-libs/fcft
49 + media-libs/freetype
50 + media-libs/fontconfig
51 +"
52 +RDEPEND="${DEPEND}
53 +"
54 +BDEPEND="
55 + dev-util/wayland-scanner
56 + dev-libs/wayland-protocols
57 + app-text/scdoc
58 + dev-libs/tllist
59 +"
60 +
61 +src_install() {
62 + local DOCS=( CHANGELOG.md README.md )
63 + meson_src_install
64 +
65 + rm -r "${ED}"/usr/share/doc/"${PN}" || die
66 +}