diff options
author | Sam James <sam@gentoo.org> | 2023-02-03 04:47:23 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-02-03 05:07:49 +0000 |
commit | def87af98f4407304d99c69dc557676cabfd0aa4 (patch) | |
tree | 4b888770d5df2b530b7f1c86b4893473a16f2438 /x11-plugins/gkrellaclock | |
parent | x11-plugins/bfm: add github upstream metadata (diff) | |
download | gentoo-def87af98f4407304d99c69dc557676cabfd0aa4.tar.gz gentoo-def87af98f4407304d99c69dc557676cabfd0aa4.tar.bz2 gentoo-def87af98f4407304d99c69dc557676cabfd0aa4.zip |
x11-plugins/gkrellaclock: EAPI 8
Bug: https://bugs.gentoo.org/892251
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-plugins/gkrellaclock')
-rw-r--r-- | x11-plugins/gkrellaclock/gkrellaclock-0.3.4-r2.ebuild (renamed from x11-plugins/gkrellaclock/gkrellaclock-0.3.4-r1.ebuild) | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/x11-plugins/gkrellaclock/gkrellaclock-0.3.4-r1.ebuild b/x11-plugins/gkrellaclock/gkrellaclock-0.3.4-r2.ebuild index 22d81a995f5f..1f0e8d375f1f 100644 --- a/x11-plugins/gkrellaclock/gkrellaclock-0.3.4-r1.ebuild +++ b/x11-plugins/gkrellaclock/gkrellaclock-0.3.4-r2.ebuild @@ -1,30 +1,31 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit gkrellm-plugin toolchain-funcs DESCRIPTION="Nice analog clock for GKrellM2" -HOMEPAGE="http://www.gkrellm.net/" +HOMEPAGE="http://gkrellm.srcbox.net/" SRC_URI="mirror://gentoo/${P}.tar.gz" +S="${WORKDIR}/${P/a/A}" LICENSE="GPL-2" SLOT="2" KEYWORDS="~alpha amd64 ~ppc sparc x86" -IUSE="" RDEPEND="app-admin/gkrellm:2[X]" DEPEND="${RDEPEND}" -S="${WORKDIR}/${P/a/A}" -PATCHES=( "${FILESDIR}"/${PN}-makefile.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-makefile.patch +) src_prepare() { default # The tarball contains a pre-compiled x86 object that needs to be - # removed if we're going to build it properly. See bug 166133. + # removed if we're going to build it properly. See bug #166133. rm -f gkrellaclock.o || die 'failed to remove gkrellaclock.o' } |