commit: 4a58e16fba5c8a1fad064af132e69ce881f0f4b4 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Sun Jul 22 11:06:19 2018 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Thu Jul 26 20:28:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a58e16f
x11-plugins/wmfire: EAPI7, improve ebuild .../wmfire/files/wmfire-1.2.4-no_display.patch | 4 +-- x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild | 40 ++++++++++++++++++++++ 2 files changed, 42 insertions(+), 2 deletions(-) diff --git a/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch b/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch index a2540a247cf..d69e6c38633 100644 --- a/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch +++ b/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch @@ -1,5 +1,5 @@ ---- src/wmfire.c.orig 2010-06-28 23:53:35.000000000 +0200 -+++ src/wmfire.c 2010-06-28 23:54:35.000000000 +0200 +--- a/src/wmfire.c 2010-06-28 23:53:35.000000000 +0200 ++++ b/src/wmfire.c 2010-06-28 23:54:35.000000000 +0200 @@ -150,6 +150,8 @@ int main(int argc, char **argv) diff --git a/x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild b/x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild new file mode 100644 index 00000000000..64ca328dbf7 --- /dev/null +++ b/x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Load monitoring dockapp displaying dancing flame" +HOMEPAGE="http://www.improbability.net/#wmfire" +SRC_URI="http://www.improbability.net/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="session" + +RDEPEND="x11-libs/gtk+:2 + gnome-base/libgtop:2 + x11-libs/libX11 + x11-libs/libXext + session? ( x11-libs/libSM + x11-libs/libICE )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +DOCS=( ALL_I_GET_IS_A_GREY_BOX AUTHORS ChangeLog NEWS README ) + +src_prepare() { + default + eapply "${FILESDIR}"/${PN}-1.2.3-stringh.patch + eapply "${FILESDIR}"/${P}-no_display.patch + eapply "${FILESDIR}"/${P}-lastprocessor_SMP.patch + eautoreconf +} + +src_configure() { + econf \ + --disable-dependency-tracking \ + $(use_enable session) +}
