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/wmifinfo/
Date: Thu, 26 Jul 2018 20:33:29
Message-Id: 1532637052.e6f4fc0e5f9cf31650a3dfdab40ed54af58f14f3.voyageur@gentoo
1 commit: e6f4fc0e5f9cf31650a3dfdab40ed54af58f14f3
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 22 12:55:10 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=e6f4fc0e
7
8 x11-plugins/wmifinfo: add EAPI7 ebuild
9
10 x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild | 31 ++++++++++++++++++++++++++++
11 1 file changed, 31 insertions(+)
12
13 diff --git a/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild b/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild
14 new file mode 100644
15 index 00000000000..98816a1f878
16 --- /dev/null
17 +++ b/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild
18 @@ -0,0 +1,31 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=7
23 +inherit toolchain-funcs
24 +
25 +DESCRIPTION="a dockapp for monitoring network interfaces"
26 +HOMEPAGE="https://www.dockapps.net/wmifinfo"
27 +SRC_URI="https://www.dockapps.net/download/${P}.tar.gz"
28 +
29 +LICENSE="GPL-2"
30 +SLOT="0"
31 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
32 +
33 +RDEPEND="x11-libs/libX11
34 + x11-libs/libXext
35 + x11-libs/libXpm"
36 +DEPEND="${RDEPEND}
37 + x11-base/xorg-proto"
38 +
39 +S="${WORKDIR}/dockapps"
40 +
41 +src_compile() {
42 + emake CC="$(tc-getCC)" LD="$(tc-getCC)" \
43 + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
44 +}
45 +
46 +src_install() {
47 + emake DESTDIR="${D}" PREFIX=/usr install
48 + dodoc README Changelog
49 +}