Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmfsm/
Date: Thu, 26 Jul 2018 20:33:30
Message-Id: 1532637052.07b5fd136fac50a329f38d071cefc89a11efd109.voyageur@gentoo
1 commit: 07b5fd136fac50a329f38d071cefc89a11efd109
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 22 12:52:03 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 20:30:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b5fd13
7
8 x11-plugins/wmfsm: EAPI7, improve ebuild
9
10 x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild | 29 +++++++++++++++++++++++++++++
11 1 file changed, 29 insertions(+)
12
13 diff --git a/x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild b/x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild
14 new file mode 100644
15 index 00000000000..c350aba8961
16 --- /dev/null
17 +++ b/x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild
18 @@ -0,0 +1,29 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=5
23 +
24 +inherit autotools
25 +
26 +DESCRIPTION="dockapp for monitoring filesystem usage"
27 +HOMEPAGE="https://www.dockapps.net/wmfsm"
28 +SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz"
29 +
30 +LICENSE="GPL-2"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
33 +
34 +RDEPEND=">=x11-libs/libdockapp-0.7:=
35 + x11-libs/libX11
36 + x11-libs/libXext
37 + x11-libs/libXt
38 + x11-libs/libXpm"
39 +DEPEND="${RDEPEND}
40 + x11-base/xorg-proto"
41 +
42 +src_prepare() {
43 + default
44 + sed -e "/^X11LIBS/s/-I$x_includes //" -i configure.ac || die "sed failed"
45 +
46 + eautoreconf
47 +}