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 B5FA6158086 for ; Mon, 18 Oct 2021 06:53:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBCD0E0867; Mon, 18 Oct 2021 06:53:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8691AE0867 for ; Mon, 18 Oct 2021 06:53:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52C7F3437A9 for ; Mon, 18 Oct 2021 06:53:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AC5F9B for ; Mon, 18 Oct 2021 06:53:29 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1634539971.9b412f83d9521ae994b088edfff895d66473eb3b.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/fe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/fe/fe-2.0.ebuild X-VCS-Directories: app-editors/fe/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 9b412f83d9521ae994b088edfff895d66473eb3b X-VCS-Branch: master Date: Mon, 18 Oct 2021 06:53:29 +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: c6714ac9-39ad-4952-96d5-f3711a56c43e X-Archives-Hash: b487aff8824e91ecfb4b5087892462e0 commit: 9b412f83d9521ae994b088edfff895d66473eb3b Author: Ulrich Müller gentoo org> AuthorDate: Mon Oct 18 06:52:51 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Oct 18 06:52:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b412f83 app-editors/fe: Remove old Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Ulrich Müller gentoo.org> app-editors/fe/fe-2.0.ebuild | 47 -------------------------------------------- 1 file changed, 47 deletions(-) diff --git a/app-editors/fe/fe-2.0.ebuild b/app-editors/fe/fe-2.0.ebuild deleted file mode 100644 index 207e9ec3f77..00000000000 --- a/app-editors/fe/fe-2.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="A small and easy to use folding editor" -HOMEPAGE="http://www.moria.de/~michael/fe/" -SRC_URI="http://www.moria.de/~michael/fe/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="sendmail" - -RDEPEND="sys-libs/ncurses:0= - sendmail? ( virtual/mta )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-1.8-makefile.patch - "${FILESDIR}"/${P}-ar.patch -) - -src_configure() { - econf \ - $(use_enable sendmail) \ - LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" -} - -src_compile() { - emake AR="$(tc-getAR)" -} - -src_install() { - emake \ - prefix="${D}"/usr \ - datadir="${D}"/usr/share \ - MANDIR="${D}"/usr/share/man \ - install - - dodoc NEWS README - docinto html - dodoc fe.html -}