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 20550138334 for ; Sat, 12 Oct 2019 07:06:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AFCAE084E; Sat, 12 Oct 2019 07:06:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0FCB3E078A for ; Sat, 12 Oct 2019 07:06:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C3D334BBF4 for ; Sat, 12 Oct 2019 07:06:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAEBB85C for ; Sat, 12 Oct 2019 07:06:31 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570863988.f02f8f1531a2000b49031b4a982d977dac5fcb60.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmon/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/asmon/asmon-0.71.ebuild X-VCS-Directories: x11-plugins/asmon/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f02f8f1531a2000b49031b4a982d977dac5fcb60 X-VCS-Branch: master Date: Sat, 12 Oct 2019 07:06:31 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 36295839-74aa-497c-8926-657a9466881d X-Archives-Hash: 912420a7b62eef1de8b459f5a7fef540 commit: f02f8f1531a2000b49031b4a982d977dac5fcb60 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 12 07:05:01 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 12 07:06:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f02f8f15 x11-plugins/asmon: Drop old (EAPI 0) Signed-off-by: Michał Górny gentoo.org> x11-plugins/asmon/asmon-0.71.ebuild | 39 ------------------------------------- 1 file changed, 39 deletions(-) diff --git a/x11-plugins/asmon/asmon-0.71.ebuild b/x11-plugins/asmon/asmon-0.71.ebuild deleted file mode 100644 index b94604bd5ee..00000000000 --- a/x11-plugins/asmon/asmon-0.71.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs - -DESCRIPTION="WindowMaker/AfterStep system monitor dockapp" -HOMEPAGE="http://rio.vg/asmon" -SRC_URI="http://rio.vg/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ppc sparc x86" -IUSE="" - -RDEPEND="x11-libs/libXext - x11-libs/libXpm - x11-libs/libX11" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -S=${WORKDIR}/${P}/${PN} - -src_unpack() { - unpack ${A} - sed -i -e "s:gcc:$(tc-getCC):g" "${S}"/Makefile -} - -src_compile() { - emake clean || die "emake clean failed." - emake SOLARIS="${CFLAGS}" LIBDIR="${LDFLAGS}" \ - || die "emake failed." -} - -src_install() { - dobin ${PN} - dodoc ../Changelog -}