diff options
author | Andreas Schuerch <nativemad@gentoo.org> | 2024-02-25 12:55:17 +0100 |
---|---|---|
committer | Andreas Schuerch <nativemad@gentoo.org> | 2024-02-25 12:55:20 +0100 |
commit | 60470a769677fc30a30f15497b472e807847867b (patch) | |
tree | c86aca2f9e28b711c72dd010e9e63275be80fecb /x11-plugins | |
parent | x11-plugins/pidgin-led-notification: add myself as a maintainer (diff) | |
download | gentoo-60470a769677fc30a30f15497b472e807847867b.tar.gz gentoo-60470a769677fc30a30f15497b472e807847867b.tar.bz2 gentoo-60470a769677fc30a30f15497b472e807847867b.zip |
x11-plugins/pidgin-hotkeys: EAPI8 bump, fix LICENSE, fix bug #853016
Closes: https://bugs.gentoo.org/853016
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Andreas Schuerch <nativemad@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/pidgin-hotkeys/pidgin-hotkeys-0.2.4-r1.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/x11-plugins/pidgin-hotkeys/pidgin-hotkeys-0.2.4-r1.ebuild b/x11-plugins/pidgin-hotkeys/pidgin-hotkeys-0.2.4-r1.ebuild new file mode 100644 index 000000000000..bb859ee62736 --- /dev/null +++ b/x11-plugins/pidgin-hotkeys/pidgin-hotkeys-0.2.4-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Pidgin plugin to define global hotkeys for various actions" +HOMEPAGE="https://sourceforge.net/projects/pidgin-hotkeys/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~riscv ~x86" + +RDEPEND="net-im/pidgin[gtk] + x11-libs/gtk+:2" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_install() { + default + + find "${D}" -type f -name '*.la' -delete || die +} |