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 824FF13835A for ; Thu, 7 Jan 2021 19:04:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB220E0870; Thu, 7 Jan 2021 19:04:05 +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 92F4EE0870 for ; Thu, 7 Jan 2021 19:04:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8279C341428 for ; Thu, 7 Jan 2021 19:04:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DA95492 for ; Thu, 7 Jan 2021 19:04:03 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610046087.a1a1820cfffeee045793b9034d828d7f2fdca9cb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/figlet/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/figlet/figlet-2.2.5.ebuild X-VCS-Directories: app-misc/figlet/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a1a1820cfffeee045793b9034d828d7f2fdca9cb X-VCS-Branch: master Date: Thu, 7 Jan 2021 19:04: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d1d2a481-b9ca-466e-ae4d-cf6f07d71361 X-Archives-Hash: c2f5602f9ed2a9c22e65c152c277900b commit: a1a1820cfffeee045793b9034d828d7f2fdca9cb Author: Sam James gentoo org> AuthorDate: Thu Jan 7 19:01:27 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 7 19:01:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a1820c app-misc/figlet: cleanup old Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> app-misc/figlet/figlet-2.2.5.ebuild | 39 ------------------------------------- 1 file changed, 39 deletions(-) diff --git a/app-misc/figlet/figlet-2.2.5.ebuild b/app-misc/figlet/figlet-2.2.5.ebuild deleted file mode 100644 index bcf50ee4df2..00000000000 --- a/app-misc/figlet/figlet-2.2.5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils bash-completion-r1 toolchain-funcs - -DESCRIPTION="program for making large letters out of ordinary text" -HOMEPAGE="http://www.figlet.org/" -SRC_URI="ftp://ftp.figlet.org/pub/figlet/program/unix/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="" - -src_compile() { - emake clean - emake \ - CC="$(tc-getCC)" \ - LD="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - prefix="${EPREFIX}/usr" \ - all -} - -src_install() { - emake \ - DESTDIR="${D}" \ - BINDIR="${EPREFIX}/usr/bin" \ - MANDIR="${EPREFIX}/usr/share/man" \ - prefix="${EPREFIX}/usr" \ - install - - doman chkfont.6 figlet.6 figlist.6 showfigfonts.6 - dodoc README figfont.txt - - dobashcomp "${FILESDIR}"/figlet.bashcomp -}