summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-02-12 21:27:35 +0100
committerPatrice Clement <monsieurp@gentoo.org>2017-02-12 21:27:59 +0100
commit0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8 (patch)
treef0f556987d12282426183fd6cad3468568d822ba
parentapp-misc/lsx: stable for amd64+x8. (diff)
downloadgentoo-0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8.tar.gz
gentoo-0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8.tar.bz2
gentoo-0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8.zip
app-misc/lsx: clean up old.
Package-Manager: portage-2.3.3
-rw-r--r--app-misc/lsx/lsx-0.1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/app-misc/lsx/lsx-0.1.ebuild b/app-misc/lsx/lsx-0.1.ebuild
deleted file mode 100644
index 73c4a8dd87b5..000000000000
--- a/app-misc/lsx/lsx-0.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit toolchain-funcs
-
-DESCRIPTION="list executables"
-HOMEPAGE="http://tools.suckless.org/lsx"
-SRC_URI="http://suckless.org/download/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- sed -i \
- -e "s/.*strip.*//" \
- Makefile || die "sed failed"
-
- sed -i \
- -e "s/CFLAGS = -Os/CFLAGS +=/" \
- -e "s/LDFLAGS =/LDFLAGS +=/" \
- config.mk || die "sed failed"
-}
-
-src_compile() {
- emake CC=$(tc-getCC) || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
-
- # collision with net-dialup/lrzsz
- mv "${D}/usr/bin/${PN}" "${D}/usr/bin/${PN}-suckless"
-
- dodoc README
-}
-
-pkg_postinst() {
- elog "Run ${PN} with ${PN}-suckless"
-}