commit: 3f08a73e9834f9347b5654e065c44c8006087be3 Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Sat Mar 26 22:22:34 2022 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Sat Mar 26 22:31:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f08a73e
x11-misc/xystray: update EAPI 6 -> 8 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org> x11-misc/xystray/xystray-1.0-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/x11-misc/xystray/xystray-1.0-r1.ebuild b/x11-misc/xystray/xystray-1.0-r1.ebuild new file mode 100644 index 000000000000..97ff3ff73bdb --- /dev/null +++ b/x11-misc/xystray/xystray-1.0-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A simple implementation of freedesktop.org notification area for X" +HOMEPAGE="https://steelman.github.io/xystray/" +SRC_URI="https://github.com/steelman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="x11-libs/libX11 + x11-libs/libXt" +DEPEND="${RDEPEND} + x11-libs/libXaw" + +PATCHES=( + "${FILESDIR}/${P}-ldflags.patch" +) + +src_install() { + dobin xystray +}
