diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-09-18 19:04:35 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2023-09-19 22:37:31 +0200 |
commit | cba696f10d92c7a1fe85515adbbc64bca9faba16 (patch) | |
tree | 41472ad9efe321d9b12e81160b25790bde6b798f /x11-plugins | |
parent | x11-plugins/wmSpaceWeather: EAPI8 bump (diff) | |
download | gentoo-cba696f10d92c7a1fe85515adbbc64bca9faba16.tar.gz gentoo-cba696f10d92c7a1fe85515adbbc64bca9faba16.tar.bz2 gentoo-cba696f10d92c7a1fe85515adbbc64bca9faba16.zip |
x11-plugins/wmtimer: EAPI8 bump
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmtimer/wmtimer-2.92-r3.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/x11-plugins/wmtimer/wmtimer-2.92-r3.ebuild b/x11-plugins/wmtimer/wmtimer-2.92-r3.ebuild new file mode 100644 index 000000000000..104d816e18ee --- /dev/null +++ b/x11-plugins/wmtimer/wmtimer-2.92-r3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Dockable clock which can run in alarm, countdown timer or chronograph mode" +HOMEPAGE="https://github.com/bbidulock/wmtimer" +SRC_URI="https://github.com/bbidulock/wmtimer/releases/download/v${PV}/${P}.tar.gz" +S="${WORKDIR}/${P}/${PN}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=dev-libs/glib-2 + x11-libs/gtk+:2 + x11-libs/libXpm + x11-libs/libXext + x11-libs/libX11" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + sed -i -e "s|\$(CFLAGS)||" Makefile || die + sed -i -e "s|-g||g" Makefile || die + sed -i -e "s|-O2|\$(CFLAGS) ${CFLAGS}|" Makefile || die + sed -i -e "s|-o wmtimer|\$(LDFLAGS) -o wmtimer|" Makefile || die + + cd "${WORKDIR}"/${P} || die + eapply "${FILESDIR}"/${P}-counter-fix.patch + eapply "${FILESDIR}"/${P}-list.patch + eapply "${FILESDIR}"/${P}-gcc-10.patch + eapply_user +} + +src_compile() { + emake CC="$(tc-getCC)" LIBDIR="-L/usr/$(get_libdir)" +} + +src_install() { + dobin wmtimer + dodoc ../{Changelog,CREDITS,README} +} |