diff options
author | Sam James <sam@gentoo.org> | 2021-01-07 19:01:27 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-07 19:01:27 +0000 |
commit | a1a1820cfffeee045793b9034d828d7f2fdca9cb (patch) | |
tree | d25cdd15068e5bf4468d5ab345c249063a66b181 /app-misc | |
parent | dev-libs/librep: cleanup old (diff) | |
download | gentoo-a1a1820cfffeee045793b9034d828d7f2fdca9cb.tar.gz gentoo-a1a1820cfffeee045793b9034d828d7f2fdca9cb.tar.bz2 gentoo-a1a1820cfffeee045793b9034d828d7f2fdca9cb.zip |
app-misc/figlet: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/figlet/figlet-2.2.5.ebuild | 39 |
1 files changed, 0 insertions, 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 bcf50ee4df29..000000000000 --- 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 -} |