Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/wmname/
Date: Sun, 12 Feb 2017 15:58:36
Message-Id: 1486915107.862bddd7b9a7eddb5604a4223fe44afbdf28480c.xmw@gentoo
1 commit: 862bddd7b9a7eddb5604a4223fe44afbdf28480c
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 15:56:38 2017 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 15:58:27 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=862bddd7
7
8 x11-misc/wmname: Remove old version.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 x11-misc/wmname/wmname-0.1.ebuild | 33 ---------------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/x11-misc/wmname/wmname-0.1.ebuild b/x11-misc/wmname/wmname-0.1.ebuild
16 deleted file mode 100644
17 index ca19f6113b..0000000000
18 --- a/x11-misc/wmname/wmname-0.1.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=3
26 -
27 -inherit eutils toolchain-funcs
28 -
29 -DESCRIPTION="utility to set the name of your window manager"
30 -HOMEPAGE="http://tools.suckless.org/x/wmname"
31 -SRC_URI="http://dl.suckless.org/tools/wmname-0.1.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm ~ppc ~sparc x86"
36 -IUSE=""
37 -
38 -RDEPEND="x11-libs/libX11"
39 -DEPEND="${RDEPEND}"
40 -
41 -src_prepare() {
42 - epatch "${FILESDIR}"/${P}-buildsystem.patch
43 -}
44 -
45 -src_compile() {
46 - emake CC="$(tc-getCC)" LD="$(tc-getCC)" || die
47 -}
48 -
49 -src_install() {
50 - emake CC="$(tc-getCC)" LD="$(tc-getCC)" \
51 - PREFIX="${EPREFIX}"/usr DESTDIR="${D}" install || die
52 - dodoc README || die
53 -}