Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/sselp/
Date: Sat, 29 Apr 2017 06:55:53
Message-Id: 1493448893.13e6446ef69089698210c6290b07394e4544617d.jer@gentoo
1 commit: 13e6446ef69089698210c6290b07394e4544617d
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 29 06:54:53 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 29 06:54:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13e6446e
7
8 x11-misc/sselp: Old.
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 x11-misc/sselp/sselp-0.2.ebuild | 31 -------------------------------
13 1 file changed, 31 deletions(-)
14
15 diff --git a/x11-misc/sselp/sselp-0.2.ebuild b/x11-misc/sselp/sselp-0.2.ebuild
16 deleted file mode 100644
17 index 6f267e60a59..00000000000
18 --- a/x11-misc/sselp/sselp-0.2.ebuild
19 +++ /dev/null
20 @@ -1,31 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -inherit toolchain-funcs
25 -
26 -DESCRIPTION="Simple X selection printer"
27 -HOMEPAGE="http://tools.suckless.org/x/sselp"
28 -SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
29 -
30 -LICENSE="MIT"
31 -SLOT="0"
32 -KEYWORDS="~amd64 hppa ~ppc ~ppc64 x86"
33 -
34 -DEPEND="x11-libs/libX11"
35 -RDEPEND="${DEPEND}"
36 -
37 -src_unpack() {
38 - unpack ${A}
39 - cd "${S}"
40 -
41 - sed -i \
42 - -e "s|^CFLAGS = -std=c99 -pedantic -Wall -Os|CFLAGS += -std=c99 -pedantic -Wall|" \
43 - -e "s|^LDFLAGS = -s|LDFLAGS +=|" \
44 - -e "s|^CC = cc|CC = $(tc-getCC)|" \
45 - config.mk || die "sed failed"
46 -}
47 -
48 -src_install() {
49 - emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
50 - dodoc README
51 -}