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/sprop/
Date: Mon, 13 Feb 2017 13:01:02
Message-Id: 1486990848.75c0151cca5479de4ddc11aa2a9296cd94c4820b.soap@gentoo
1 commit: 75c0151cca5479de4ddc11aa2a9296cd94c4820b
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 13 10:19:18 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 13 13:00:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75c0151c
7
8 x11-misc/sprop: Drop old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/3945
12
13 x11-misc/sprop/sprop-0.1.ebuild | 43 -----------------------------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/x11-misc/sprop/sprop-0.1.ebuild b/x11-misc/sprop/sprop-0.1.ebuild
17 deleted file mode 100644
18 index 655dcb7bc8..0000000000
19 --- a/x11-misc/sprop/sprop-0.1.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=4
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="a simple X property utility"
30 -HOMEPAGE="http://tools.suckless.org/x/sprop"
31 -SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -IUSE=""
37 -
38 -RDEPEND="
39 - x11-libs/libX11
40 -"
41 -DEPEND="
42 - ${RDEPEND}
43 - x11-proto/xproto
44 -"
45 -src_prepare() {
46 - sed -i \
47 - -e '/^CC/d' \
48 - -e '/^CFLAGS/s| =| +=|;s| -Os||g' \
49 - -e '/^LDFLAGS/s|= -s|+=|g' \
50 - config.mk || die
51 -
52 - sed -i \
53 - -e 's|@${CC}|$(CC)|g' \
54 - Makefile || die
55 -
56 - tc-export CC
57 -}
58 -
59 -src_compile() { emake sprop; }
60 -
61 -src_install() {
62 - dobin ${PN}
63 - doman ${PN}.1
64 -}