Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/figlet/
Date: Thu, 07 Jan 2021 19:04:06
Message-Id: 1610046087.a1a1820cfffeee045793b9034d828d7f2fdca9cb.sam@gentoo
1 commit: a1a1820cfffeee045793b9034d828d7f2fdca9cb
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 19:01:27 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 19:01:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a1820c
7
8 app-misc/figlet: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-misc/figlet/figlet-2.2.5.ebuild | 39 -------------------------------------
14 1 file changed, 39 deletions(-)
15
16 diff --git a/app-misc/figlet/figlet-2.2.5.ebuild b/app-misc/figlet/figlet-2.2.5.ebuild
17 deleted file mode 100644
18 index bcf50ee4df2..00000000000
19 --- a/app-misc/figlet/figlet-2.2.5.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit eutils bash-completion-r1 toolchain-funcs
27 -
28 -DESCRIPTION="program for making large letters out of ordinary text"
29 -HOMEPAGE="http://www.figlet.org/"
30 -SRC_URI="ftp://ftp.figlet.org/pub/figlet/program/unix/${P}.tar.gz"
31 -
32 -LICENSE="BSD"
33 -SLOT="0"
34 -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
35 -IUSE=""
36 -
37 -src_compile() {
38 - emake clean
39 - emake \
40 - CC="$(tc-getCC)" \
41 - LD="$(tc-getCC)" \
42 - CFLAGS="${CFLAGS}" \
43 - LDFLAGS="${LDFLAGS}" \
44 - prefix="${EPREFIX}/usr" \
45 - all
46 -}
47 -
48 -src_install() {
49 - emake \
50 - DESTDIR="${D}" \
51 - BINDIR="${EPREFIX}/usr/bin" \
52 - MANDIR="${EPREFIX}/usr/share/man" \
53 - prefix="${EPREFIX}/usr" \
54 - install
55 -
56 - doman chkfont.6 figlet.6 figlist.6 showfigfonts.6
57 - dodoc README figfont.txt
58 -
59 - dobashcomp "${FILESDIR}"/figlet.bashcomp
60 -}