summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2022-02-09 20:54:47 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-02-09 23:55:18 +0100
commit12a255b8b8182ef1f193379b6aa8b4350e37539b (patch)
treeaf1e6bfaea5140222dd945635c66aaa181e5c82a /app-text/msort
parentapp-text/msort: update EAPI 7 -> 8 (diff)
downloadgentoo-12a255b8b8182ef1f193379b6aa8b4350e37539b.tar.gz
gentoo-12a255b8b8182ef1f193379b6aa8b4350e37539b.tar.bz2
gentoo-12a255b8b8182ef1f193379b6aa8b4350e37539b.zip
app-text/msort: drop 8.53
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-text/msort')
-rw-r--r--app-text/msort/msort-8.53.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/app-text/msort/msort-8.53.ebuild b/app-text/msort/msort-8.53.ebuild
deleted file mode 100644
index 62a6fff19ef6..000000000000
--- a/app-text/msort/msort-8.53.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A program for sorting files in sophisticated ways"
-HOMEPAGE="https://billposer.org/Software/msort.html"
-SRC_URI="https://billposer.org/Software/Downloads/${P}.tar.bz2"
-
-KEYWORDS="amd64 x86"
-LICENSE="GPL-3 LGPL-3"
-SLOT="0"
-IUSE="heap +icu +libuninum"
-
-RDEPEND="dev-libs/tre
- icu? ( dev-libs/icu:= )
- !icu? ( dev-libs/libutf8proc:= )
- libuninum? ( dev-libs/libuninum:= )"
-
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix-icu-build.patch"
- "${FILESDIR}/${P}-fix-missing-limits-header.patch"
- "${FILESDIR}/${P}-fix-segfault-on-certain-input.patch"
- "${FILESDIR}/${P}-respect-users-cflags.patch"
- )
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_enable !heap allocaok)
- $(use_enable !icu utf8proc)
- $(use_enable libuninum uninum)
- --disable-debugbuild
- )
-
- econf "${myeconfargs[@]}"
-}