summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPascal Jäger <pascal.jaeger@leimstift.de>2024-02-19 13:32:34 +0100
committerJoonas Niilola <juippis@gentoo.org>2024-04-20 10:53:48 +0300
commitd7138cf514932b242c3e5b40730d655d97a9849f (patch)
tree1dc78525a2a653b2bdcdaebc8701102623a84c41 /app-misc/boxes/boxes-2.2.0.ebuild
parentapp-misc/boxes: add 2.3.0 (diff)
downloadgentoo-d7138cf514932b242c3e5b40730d655d97a9849f.tar.gz
gentoo-d7138cf514932b242c3e5b40730d655d97a9849f.tar.bz2
gentoo-d7138cf514932b242c3e5b40730d655d97a9849f.zip
app-misc/boxes: drop 2.2.0
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de> Closes: https://github.com/gentoo/gentoo/pull/35424 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-misc/boxes/boxes-2.2.0.ebuild')
-rw-r--r--app-misc/boxes/boxes-2.2.0.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/app-misc/boxes/boxes-2.2.0.ebuild b/app-misc/boxes/boxes-2.2.0.ebuild
deleted file mode 100644
index ec80aa0a7e8e..000000000000
--- a/app-misc/boxes/boxes-2.2.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# 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/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-libs/libpcre2[pcre32]
- dev-libs/libunistring:=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- app-alternatives/yacc
- app-alternatives/lex
- test? ( app-editors/vim-core )
-"
-
-PATCHES=( "${FILESDIR}/${P}-fix-clang16-build.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
-}