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/wminet/
Date: Thu, 02 Aug 2018 20:14:46
Message-Id: 1533240770.914ae700d3518d54f3d982b94125c2e5528661bb.voyageur@gentoo
1 commit: 914ae700d3518d54f3d982b94125c2e5528661bb
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 22 14:51:34 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 2 20:12:50 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914ae700
7
8 x11-plugins/wminet: EAPI7, improve ebuild
9
10 x11-plugins/wminet/wminet-3.0.0-r2.ebuild | 29 +++++++++++++++++++++++++++++
11 1 file changed, 29 insertions(+)
12
13 diff --git a/x11-plugins/wminet/wminet-3.0.0-r2.ebuild b/x11-plugins/wminet/wminet-3.0.0-r2.ebuild
14 new file mode 100644
15 index 00000000000..b3516e92cd9
16 --- /dev/null
17 +++ b/x11-plugins/wminet/wminet-3.0.0-r2.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=7
23 +
24 +inherit toolchain-funcs
25 +
26 +DESCRIPTION="dockapp for monitoring internet connections to and from your computer"
27 +HOMEPAGE="http://www.improbability.net/#wminet"
28 +SRC_URI="http://www.improbability.net/wmdock//${P}.tar.gz"
29 +
30 +LICENSE="GPL-2"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
33 +
34 +RDEPEND="x11-libs/libX11
35 + x11-libs/libXext
36 + x11-libs/libXpm"
37 +DEPEND="${RDEPEND}
38 + x11-base/xorg-proto"
39 +
40 +PATCHES=( "${FILESDIR}"/${P}-list.patch )
41 +
42 +DOCS=( AUTHORS ChangeLog NEWS README wminetrc )
43 +
44 +src_compile() {
45 + tc-export CC
46 + emake LDFLAGS="${LDFLAGS}"
47 +}