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 503E7138359 for ; Thu, 16 Jul 2020 13:33:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60791E0805; Thu, 16 Jul 2020 13:33:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4AF66E0805 for ; Thu, 16 Jul 2020 13:33:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 226DB34EDCF for ; Thu, 16 Jul 2020 13:33:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A4592A4 for ; Thu, 16 Jul 2020 13:33:07 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1594906385.af16fd46aa775f5bf09415a74b35805455597d1b.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/figlet/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/figlet/figlet-9999.ebuild X-VCS-Directories: app-misc/figlet/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: af16fd46aa775f5bf09415a74b35805455597d1b X-VCS-Branch: master Date: Thu, 16 Jul 2020 13:33:07 +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: 6aee2c26-2097-402f-8e93-ec1399f742aa X-Archives-Hash: 5e07f85fa54c4a26cd39191f83ef6010 commit: af16fd46aa775f5bf09415a74b35805455597d1b Author: Jeroen Roovers gentoo org> AuthorDate: Thu Jul 16 13:30:43 2020 +0000 Commit: Jeroen Roovers gentoo 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 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 +}