app-misc/boxes: add 2.3.1

Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
Closes: https://github.com/gentoo/gentoo/pull/38916
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Pascal Jäger
2024-10-08 15:07:43 +02:00
committed by Joonas Niilola
parent 89e290d972
commit 49e17806b9
2 changed files with 53 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST boxes-2.2.1.tar.gz 230900 BLAKE2B 65ab0c8ad52d2764279397135b072bfa6f4bf86e465cc3a4778d30c5b19ce2c0d7c5f8636173529eca92754ee16d38b46a83b067b94315b1ea82448e4b1ac0a8 SHA512 0afa115d5ec01944878ef4d8f33e2887d123b172a0589eda53a04ba671916d9ef1d8299f9df9aeac8989807f86ca1b96b1c34aed03856643a89a07586b82e3b6
DIST boxes-2.3.0.tar.gz 272302 BLAKE2B 282b41aee214f54aa3c8b237bc9f2e48e4144eebd6619880a38c7a71d9bf7bb434a250f29a05f20746530e8458bb0d062cd7e5bea88ebdf64030f090b1a8674a SHA512 d7580462ed5cf8a3299f528d7e4abea1c9733da2823c204bff69a804c72b768c4d3e8505b4d8881aae066f1fd95133cf9dc52e960333a82d8c529f85eb096fb4
DIST boxes-2.3.1.tar.gz 299074 BLAKE2B 12bf2389d689194a9dc9efd34f6fad3686bf9120874b91671bb871e221e13d5b00e4baca4eb081ccafb346207584be0ba7ffd16bb7a80d45bf83ac2484b2481e SHA512 cfb772c11d4bc169f1a6cc7f550af02947e4fee43cd70cb8ec7c8f9c976d9e59bc017d4b40b77ba60d2c52a76fd826d0a2b962b3dc02021407ca4f0cbcb316d8

View File

@@ -0,0 +1,52 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Draw any kind of boxes around your text"
HOMEPAGE="https://boxes.thomasjensen.com/ https://github.com/ascii-boxes/boxes"
SRC_URI="https://github.com/ascii-boxes/boxes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/libpcre2:=[pcre32]
dev-libs/libunistring:=
sys-libs/ncurses:=
"
DEPEND="
${RDEPEND}
"
BDEPEND="
app-alternatives/yacc
app-alternatives/lex
test? ( app-editors/vim-core )
"
PATCHES=( "${FILESDIR}/boxes-2.3.0-ncurses-gentoo.patch" )
src_prepare() {
default
sed \
-e 's:STRIP=true:STRIP=false:g' \
-i src/Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS_ADDTL="${CFLAGS}" LDFLAGS_ADDTL="${LDFLAGS}"
}
src_install() {
dobin out/boxes
doman doc/boxes.1
insinto /usr/share
newins boxes-config boxes
einstalldocs
}