From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA5A8139695 for ; Sun, 12 Feb 2017 20:28:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B409EE0C9D; Sun, 12 Feb 2017 20:28:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8CCB8E0C95 for ; Sun, 12 Feb 2017 20:28:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4171E340FC8 for ; Sun, 12 Feb 2017 20:28:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAAA0459C for ; Sun, 12 Feb 2017 20:28:03 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1486931279.0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/lsx/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/lsx/lsx-0.1.ebuild X-VCS-Directories: app-misc/lsx/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8 X-VCS-Branch: master Date: Sun, 12 Feb 2017 20:28:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 593819c3-85d4-455f-81b2-4e95aff8bf93 X-Archives-Hash: 08aa0edb883cffb6b5db4067883071c9 commit: 0eee9b7b0fc3fbc86c3af02a604fe3df22bdf9e8 Author: Patrice Clement gentoo org> AuthorDate: Sun Feb 12 20:27:35 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Feb 12 20:27:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eee9b7b app-misc/lsx: clean up old. Package-Manager: portage-2.3.3 app-misc/lsx/lsx-0.1.ebuild | 48 --------------------------------------------- 1 file changed, 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 73c4a8dd87..0000000000 --- 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" -}