Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/lsx/
Date: Sun, 12 Feb 2017 20:28:08
Message-Id: 1486931279.0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8.monsieurp@gentoo
1 commit: 0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 20:27:35 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 20:27:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eee9b7b
7
8 app-misc/lsx: clean up old.
9
10 Package-Manager: portage-2.3.3
11
12 app-misc/lsx/lsx-0.1.ebuild | 48 ---------------------------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/app-misc/lsx/lsx-0.1.ebuild b/app-misc/lsx/lsx-0.1.ebuild
16 deleted file mode 100644
17 index 73c4a8dd87..0000000000
18 --- a/app-misc/lsx/lsx-0.1.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -inherit toolchain-funcs
26 -
27 -DESCRIPTION="list executables"
28 -HOMEPAGE="http://tools.suckless.org/lsx"
29 -SRC_URI="http://suckless.org/download/${P}.tar.gz"
30 -
31 -LICENSE="MIT"
32 -SLOT="0"
33 -KEYWORDS="amd64 x86"
34 -IUSE=""
35 -
36 -DEPEND=""
37 -RDEPEND=""
38 -
39 -src_unpack() {
40 - unpack ${A}
41 - cd "${S}"
42 -
43 - sed -i \
44 - -e "s/.*strip.*//" \
45 - Makefile || die "sed failed"
46 -
47 - sed -i \
48 - -e "s/CFLAGS = -Os/CFLAGS +=/" \
49 - -e "s/LDFLAGS =/LDFLAGS +=/" \
50 - config.mk || die "sed failed"
51 -}
52 -
53 -src_compile() {
54 - emake CC=$(tc-getCC) || die "emake failed"
55 -}
56 -
57 -src_install() {
58 - emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
59 -
60 - # collision with net-dialup/lrzsz
61 - mv "${D}/usr/bin/${PN}" "${D}/usr/bin/${PN}-suckless"
62 -
63 - dodoc README
64 -}
65 -
66 -pkg_postinst() {
67 - elog "Run ${PN} with ${PN}-suckless"
68 -}