diff options
author | Marek Szuba <marecki@gentoo.org> | 2022-03-26 22:22:34 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2022-03-26 22:31:27 +0000 |
commit | 3f08a73e9834f9347b5654e065c44c8006087be3 (patch) | |
tree | a77a52d95d07c7019a8524771786a0ba76dd94b4 /x11-misc/xystray | |
parent | media-sound/easyeffects: drop 6.1.5 (diff) | |
download | gentoo-3f08a73e9834f9347b5654e065c44c8006087be3.tar.gz gentoo-3f08a73e9834f9347b5654e065c44c8006087be3.tar.bz2 gentoo-3f08a73e9834f9347b5654e065c44c8006087be3.zip |
x11-misc/xystray: update EAPI 6 -> 8
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'x11-misc/xystray')
-rw-r--r-- | x11-misc/xystray/xystray-1.0-r1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
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 +} |