commit: af16fd46aa775f5bf09415a74b35805455597d1b Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Thu Jul 16 13:30:43 2020 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Thu Jul 16 13:33:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af16fd46
app-misc/figlet: Add live ebuild Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org> app-misc/figlet/figlet-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/app-misc/figlet/figlet-9999.ebuild b/app-misc/figlet/figlet-9999.ebuild new file mode 100644 index 00000000000..30e2a9d7e97 --- /dev/null +++ b/app-misc/figlet/figlet-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 git-r3 toolchain-funcs + +DESCRIPTION="program for making large letters out of ordinary text" +HOMEPAGE="http://www.figlet.org/" +EGIT_REPO_URI="https://github.com/cmatsuoka/figlet" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="" + +src_compile() { + emake clean + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LD="$(tc-getCC)" \ + LDFLAGS="${LDFLAGS}" \ + prefix="${EPREFIX}/usr" \ + all +} + +src_install() { + emake \ + BINDIR="${EPREFIX}/usr/bin" \ + DESTDIR="${D}" \ + MANDIR="${EPREFIX}/usr/share/man" \ + prefix="${EPREFIX}/usr" \ + install + + doman chkfont.6 figlet.6 figlist.6 showfigfonts.6 + dodoc README figfont.txt + + newbashcomp "${FILESDIR}"/figlet.bashcomp-r1 figlet +}
