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-misc/trayer/
Date: Fri, 15 Feb 2019 19:18:12
Message-Id: 1550258280.62e1a718739afd201a5007f97f1c338a8986ff3c.zlogene@gentoo
1 commit: 62e1a718739afd201a5007f97f1c338a8986ff3c
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 19:18:00 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 19:18:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e1a718
7
8 x11-misc/trayer: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 x11-misc/trayer/trayer-1.0-r2.ebuild | 52 ------------------------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/x11-misc/trayer/trayer-1.0-r2.ebuild b/x11-misc/trayer/trayer-1.0-r2.ebuild
17 deleted file mode 100644
18 index 9876527f2e6..00000000000
19 --- a/x11-misc/trayer/trayer-1.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit toolchain-funcs
27 -
28 -DESCRIPTION="Lightweight GTK+ based systray for UNIX desktop"
29 -HOMEPAGE="http://home.gna.org/fvwm-crystal/"
30 -SRC_URI="http://download.gna.org/fvwm-crystal/trayer/${P}.tar.gz"
31 -LICENSE="GPL-2"
32 -
33 -SLOT="0"
34 -KEYWORDS="amd64 ppc ppc64 x86"
35 -IUSE=""
36 -
37 -RDEPEND="
38 - dev-libs/glib:2
39 - x11-libs/gdk-pixbuf[X]
40 - x11-libs/gtk+:2
41 - x11-libs/libX11
42 -"
43 -DEPEND="
44 - ${RDEPEND}
45 - virtual/pkgconfig
46 -"
47 -
48 -PATCHES=( "${FILESDIR}"/${P}-dont-include-libXmu.patch )
49 -
50 -src_prepare() {
51 - default
52 - # fix for as-needed, bug #141707
53 - # fix pre-stripped files, bug #252098
54 - sed -i Makefile \
55 - -e 's:$(LIBS) $(OBJ) $(SYSTRAYOBJ):$(OBJ) $(SYSTRAYOBJ) $(LIBS):' \
56 - -e 's:strip:true:g' \
57 - || die
58 - # fix underlinking, bug #369591
59 - sed -i Makefile.common \
60 - -e '/^LIBS/s:).*: x11):' \
61 - -e '/^INC/s:).*: x11):' \
62 - || die
63 -}
64 -
65 -src_compile() {
66 - emake -j1 CC=$(tc-getCC) CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}"
67 -}
68 -
69 -src_install() {
70 - dobin trayer
71 - doman trayer.1
72 - einstalldocs
73 -}