Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmsystray/
Date: Fri, 05 Oct 2018 13:55:19
Message-Id: 1538747698.49ea817033588f00e703dcc19ffa19d3326d5e56.zlogene@gentoo
1 commit: 49ea817033588f00e703dcc19ffa19d3326d5e56
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 5 13:45:45 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 5 13:54:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49ea8170
7
8 x11-plugins/wmsystray: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 x11-plugins/wmsystray/wmsystray-0.1.1.ebuild | 48 ----------------------------
14 1 file changed, 48 deletions(-)
15
16 diff --git a/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild b/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild
17 deleted file mode 100644
18 index 470cb295624..00000000000
19 --- a/x11-plugins/wmsystray/wmsystray-0.1.1.ebuild
20 +++ /dev/null
21 @@ -1,48 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=0
26 -
27 -inherit eutils
28 -
29 -DESCRIPTION="Window Maker dock app that provides a system tray for GNOME/KDE applications"
30 -HOMEPAGE="https://github.com/bbidulock/wmsystray"
31 -SRC_URI="https://github.com/bbidulock/wmsystray/releases/download/${PV}/${P}.tar.bz2"
32 -
33 -RDEPEND="x11-libs/libX11
34 - x11-libs/libXpm"
35 -DEPEND="${RDEPEND}"
36 -
37 -SLOT="0"
38 -LICENSE="GPL-2"
39 -KEYWORDS="amd64 ppc ~sparc x86"
40 -IUSE=""
41 -
42 -src_unpack() {
43 - unpack ${A}
44 - cd "${S}"
45 -
46 - # Let's honour Gentoo CFLAGS and use correct install program
47 - epatch "${FILESDIR}/${P}-Makefile.patch"
48 -
49 - # Fix for #61704, cannot compile with gcc 3.4.1:
50 - # it's a trivial change and does not affect other compilers...
51 - epatch "${FILESDIR}/${P}-gcc-3.4.patch"
52 -
53 - # Fix parallel compilation
54 - sed -ie "s/make EXTRACFLAGS/make \${MAKEOPTS} EXTRACFLAGS/" Makefile
55 -
56 - # Honour Gentoo LDFLAGS, see bug #336296
57 - sed -ie "s/-o wmsystray/${LDFLAGS} -o wmsystray/" wmsystray/Makefile
58 -}
59 -
60 -src_compile() {
61 - emake EXTRACFLAGS="${CFLAGS}" || die "emake failed"
62 -}
63 -
64 -src_install() {
65 - einstall || die "einstall failed"
66 - dodoc AUTHORS HACKING README || die
67 -
68 - domenu "${FILESDIR}/${PN}.desktop"
69 -}