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/wmping/
Date: Tue, 11 Dec 2018 14:29:42
Message-Id: 1544538477.145bfa49854769dc8cbe47649583a1c91ab6bd6f.voyageur@gentoo
1 commit: 145bfa49854769dc8cbe47649583a1c91ab6bd6f
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Dec 7 14:10:15 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 11 14:27:57 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=145bfa49
7
8 x11-plugins/wmping: drop old
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 x11-plugins/wmping/wmping-0.2.1.ebuild | 41 ----------------------------------
14 1 file changed, 41 deletions(-)
15
16 diff --git a/x11-plugins/wmping/wmping-0.2.1.ebuild b/x11-plugins/wmping/wmping-0.2.1.ebuild
17 deleted file mode 100644
18 index 3c7b7a00ead..00000000000
19 --- a/x11-plugins/wmping/wmping-0.2.1.ebuild
20 +++ /dev/null
21 @@ -1,41 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit eutils
27 -
28 -DESCRIPTION="a simple host status monitoring dockapp"
29 -HOMEPAGE="https://sourceforge.net/projects/wmping"
30 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -IUSE="+suid"
36 -
37 -RDEPEND="x11-libs/libX11
38 - x11-libs/libXext
39 - x11-libs/libXpm"
40 -DEPEND="${RDEPEND}
41 - x11-base/xorg-proto
42 - x11-libs/libICE
43 - x11-libs/libXt"
44 -
45 -src_prepare() {
46 - epatch "${FILESDIR}"/${P}-format-security.patch
47 -}
48 -
49 -src_install() {
50 - if use suid; then
51 - emake DESTDIR="${D}" install
52 - else
53 - dosbin ${PN}
54 - fi
55 -
56 - doman ${PN}.1
57 - dodoc AUTHORS CHANGES README
58 -}
59 -
60 -pkg_postinst() {
61 - use suid || ewarn "warning, ${PN} needs to be executed as root."
62 -}