x11-plugins/wmfire: EAPI7, improve ebuild
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sun, 22 Jul 2018 11:06:19 +0000 (13:06 +0200)
committerBernard Cafarelli <voyageur@gentoo.org>
Thu, 26 Jul 2018 20:28:38 +0000 (22:28 +0200)
x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch
x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild [new file with mode: 0644]

index a2540a247cf66a3cf3461e76266939aec1133168..d69e6c3863380336dde29589568effde6ad9a657 100644 (file)
@@ -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 (file)
index 0000000..64ca328
--- /dev/null
@@ -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)
+}