diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-01-28 17:35:20 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-01-28 17:36:56 +0100 |
commit | 1c5d6ea701f8c4b0bcfa18177170a1eb8b6ecdf5 (patch) | |
tree | 9493a2f31ba2f1ec5c0dc833a2215ecdd9b17066 /app-text/libexttextcat | |
parent | games-emulation/stella: drop 6.7 (diff) | |
download | gentoo-1c5d6ea701f8c4b0bcfa18177170a1eb8b6ecdf5.tar.gz gentoo-1c5d6ea701f8c4b0bcfa18177170a1eb8b6ecdf5.tar.bz2 gentoo-1c5d6ea701f8c4b0bcfa18177170a1eb8b6ecdf5.zip |
app-text/libexttextcat: add 3.4.7
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text/libexttextcat')
-rw-r--r-- | app-text/libexttextcat/Manifest | 1 | ||||
-rw-r--r-- | app-text/libexttextcat/libexttextcat-3.4.7.ebuild | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/app-text/libexttextcat/Manifest b/app-text/libexttextcat/Manifest index 000e00b163d0..9904a5437486 100644 --- a/app-text/libexttextcat/Manifest +++ b/app-text/libexttextcat/Manifest @@ -1 +1,2 @@ DIST libexttextcat-3.4.6.tar.xz 1111320 BLAKE2B d89b69450a66e8c0f2c4f42ca8d08f2f571d6d7c28e78e43c056c454cee09b95be3f9b32ab445be4c676225b5604535c8948b6942e9c366b94f9773a7b614781 SHA512 5fe7b9b78d2d81b26ba07ce16c6dae490369a0a8b11561cc1260d893c86ef54cf76982751927eed71ac792cdbb47bac0f7acc71939a38c93310ee2bda174448b +DIST libexttextcat-3.4.7.tar.xz 1122804 BLAKE2B 45d4fab17d66ede2a32cf65a8ee79c85ccb9993b1b5a5260f77a468c67478a28a9a45bf5fc9c5e6f6eb9f21407dff861d08649c6398373f00b036dd49f9cd4ee SHA512 ccd95061419aedd651c3b899fade6d3cc8ebf87ddfea622edecacd810798de8257829255e3cb3325fa2a0b9f54bc20d4e24b6596ae37891ed3fbe7c0425ff864 diff --git a/app-text/libexttextcat/libexttextcat-3.4.7.ebuild b/app-text/libexttextcat/libexttextcat-3.4.7.ebuild new file mode 100644 index 000000000000..3a25fcdc8534 --- /dev/null +++ b/app-text/libexttextcat/libexttextcat-3.4.7.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Library implementing N-gram-based text categorization" +HOMEPAGE="https://wiki.documentfoundation.org/Libexttextcat" +SRC_URI="https://dev-www.libreoffice.org/src/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +src_configure() { + econf \ + --disable-werror +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} |