Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xrootconsole/
Date: Sat, 01 Apr 2017 10:24:46
Message-Id: 1491042218.c2f9979a526f489953abc139620493bce22ef487.soap@gentoo
1 commit: c2f9979a526f489953abc139620493bce22ef487
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 28 18:33:48 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 1 10:23:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f9979a
7
8 x11-misc/xrootconsole: Remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/4319
12
13 x11-misc/xrootconsole/xrootconsole-0.6.ebuild | 42 ---------------------------
14 1 file changed, 42 deletions(-)
15
16 diff --git a/x11-misc/xrootconsole/xrootconsole-0.6.ebuild b/x11-misc/xrootconsole/xrootconsole-0.6.ebuild
17 deleted file mode 100644
18 index 7b3314a1a53..00000000000
19 --- a/x11-misc/xrootconsole/xrootconsole-0.6.ebuild
20 +++ /dev/null
21 @@ -1,42 +0,0 @@
22 -# Copyright 1999-2011 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -inherit eutils toolchain-funcs
26 -
27 -DESCRIPTION="A utility that displays its input in a text box on your root window"
28 -HOMEPAGE="https://sourceforge.net/projects/xrootconsole/"
29 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="amd64 ppc x86"
34 -IUSE=""
35 -
36 -RDEPEND="x11-libs/libX11"
37 -DEPEND="${RDEPEND}
38 - x11-proto/xproto"
39 -
40 -src_unpack() {
41 - unpack ${A}
42 - cd "${S}"
43 -
44 - epatch "${FILESDIR}/${P}.noversion.patch"
45 - epatch "${FILESDIR}/${P}.makefile.patch"
46 - epatch "${FILESDIR}/${P}.manpage.patch"
47 -}
48 -
49 -src_compile() {
50 - tc-export CC
51 - emake || die "emake failed"
52 -}
53 -
54 -src_install() {
55 - dodir /usr/bin
56 -
57 - make \
58 - MANDIR="${D}usr/share/man/man1" \
59 - BINDIR="${D}usr/bin/" \
60 - install || die "make install failed"
61 -
62 - dodoc TODO NEWS CREDITS
63 -}