Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xystray/
Date: Sat, 26 Mar 2022 22:31:41
Message-Id: 1648333887.3f08a73e9834f9347b5654e065c44c8006087be3.marecki@gentoo
1 commit: 3f08a73e9834f9347b5654e065c44c8006087be3
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 26 22:22:34 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 22:31:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f08a73e
7
8 x11-misc/xystray: update EAPI 6 -> 8
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 x11-misc/xystray/xystray-1.0-r1.ebuild | 25 +++++++++++++++++++++++++
13 1 file changed, 25 insertions(+)
14
15 diff --git a/x11-misc/xystray/xystray-1.0-r1.ebuild b/x11-misc/xystray/xystray-1.0-r1.ebuild
16 new file mode 100644
17 index 000000000000..97ff3ff73bdb
18 --- /dev/null
19 +++ b/x11-misc/xystray/xystray-1.0-r1.ebuild
20 @@ -0,0 +1,25 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DESCRIPTION="A simple implementation of freedesktop.org notification area for X"
27 +HOMEPAGE="https://steelman.github.io/xystray/"
28 +SRC_URI="https://github.com/steelman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
29 +
30 +LICENSE="GPL-2+"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~x86"
33 +
34 +RDEPEND="x11-libs/libX11
35 + x11-libs/libXt"
36 +DEPEND="${RDEPEND}
37 + x11-libs/libXaw"
38 +
39 +PATCHES=(
40 + "${FILESDIR}/${P}-ldflags.patch"
41 +)
42 +
43 +src_install() {
44 + dobin xystray
45 +}