From c2bb5bfcfa192173470fd36824424c41e5d024bd Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sun, 8 Jul 2018 14:05:39 +0200 Subject: [PATCH] x11-plugins/wmacpi: EAPI7, improve ebuild --- .../wmacpi/files/wmacpi-2.3-makefile.patch | 4 +-- x11-plugins/wmacpi/wmacpi-2.3-r1.ebuild | 29 +++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 x11-plugins/wmacpi/wmacpi-2.3-r1.ebuild diff --git a/x11-plugins/wmacpi/files/wmacpi-2.3-makefile.patch b/x11-plugins/wmacpi/files/wmacpi-2.3-makefile.patch index d1ec49689060a..2bf80a3190dbd 100644 --- a/x11-plugins/wmacpi/files/wmacpi-2.3-makefile.patch +++ b/x11-plugins/wmacpi/files/wmacpi-2.3-makefile.patch @@ -1,5 +1,5 @@ ---- Makefile.orig 2015-01-12 11:27:07.396319323 +0100 -+++ Makefile 2015-01-12 11:29:21.531298827 +0100 +--- a/Makefile 2015-01-12 11:27:07.396319323 +0100 ++++ b/Makefile 2015-01-12 11:29:21.531298827 +0100 @@ -13,8 +13,8 @@ #OPT = -pg -g diff --git a/x11-plugins/wmacpi/wmacpi-2.3-r1.ebuild b/x11-plugins/wmacpi/wmacpi-2.3-r1.ebuild new file mode 100644 index 0000000000000..fbc57d048942b --- /dev/null +++ b/x11-plugins/wmacpi/wmacpi-2.3-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="DockApp ACPI status monitor for laptops" +HOMEPAGE="https://www.dockapps.net/wmacpi" +SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 -ppc -sparc ~x86" + +DEPEND=">=x11-libs/libdockapp-0.7:= + x11-libs/libX11" + +S=${WORKDIR}/dockapps + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-makefile.patch + + sed -e 's###' -i *.c || die +} + +src_compile() { + emake CC="$(tc-getCC)" +}