summaryrefslogtreecommitdiff
path: root/dev-util/hfstospell
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-04-02 11:17:22 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-04-02 11:17:22 +0100
commitf253e820eb4e6794ad484f5bc27182d236aeb41e (patch)
tree375327f21ced0de6f9688adbec7db685ef28c511 /dev-util/hfstospell
parent6882d8d1110ef4feeec532196a1f0a25420d0fd1 (diff)
gentoo auto-resync : 02:04:2023 - 11:17:22
Diffstat (limited to 'dev-util/hfstospell')
-rw-r--r--dev-util/hfstospell/Manifest1
-rw-r--r--dev-util/hfstospell/hfstospell-0.5.3.ebuild50
2 files changed, 0 insertions, 51 deletions
diff --git a/dev-util/hfstospell/Manifest b/dev-util/hfstospell/Manifest
index ff93bb172840..23a3116a676a 100644
--- a/dev-util/hfstospell/Manifest
+++ b/dev-util/hfstospell/Manifest
@@ -1,5 +1,4 @@
AUX hfstospell-0.5.3-gcc-13-fix.patch 505 BLAKE2B 96e97a6b2969759dd864e30f3beb9dad5eb97cb8682fd1fc91b97b578daa9a18c6e30eea174174d64bb186380ed6812e231f30cbc4a89b6bead4fa7ac2ea97b3 SHA512 3b6573c4fd3e27026f07f1c2a3abd22b788c682f759b25743c540c2b1bdb83f72db2e7d7bdc85f963acf789dacbdc68c1c5af71cc90f676aa4bdcd10b3df756e
DIST hfstospell-0.5.3.tar.gz 152654 BLAKE2B f77c86e18b9dcb098460bdaec2f6a148b4bf515670aad3d17002b3027026483658d0df924a5d71b12251128ba89bee3a9d7c1d03a5983830accf0340445a1331 SHA512 f25bae6c083894139ba1e3dbd24f010e1c4695bdfe4c2499d31f2f0bd2f5688b662ea15666b46f174fc75f0aa6f5cd114456f735b1d49bcf33322221b6f57ff5
EBUILD hfstospell-0.5.3-r1.ebuild 1079 BLAKE2B 986a7d4ab362b624eee6d8e10a15cf54510b173ad73251e64dc208d90e1fbc9eff46e561f95a7209bd6d476d223d88e0f2934164914b70609cb141102989cbf7 SHA512 6f8cfbe780361aa38540b2c83033c04655ab3d62caadf110fc6423c8da588d9644b50a17e4c1cdb348df1a0d47ce8506869a950a93e248cd57b36a205410ef6c
-EBUILD hfstospell-0.5.3.ebuild 1018 BLAKE2B 73fe117faca691ad9558b4563feb2fcbb9efefec2dd5426c1b12b6e81c8bc22c85126038d953385006eb04c7e71651533bf580aa22a09cc4fef9753a1e460930 SHA512 51b2d0db29a9b2bd5f0ddad714aeeba9fea094369d0e8ba5665473f575d26bf209adff627dd940776a48b9147cac1c6a145adf8b94f2cbef5d2f0c3abef69020
MISC metadata.xml 436 BLAKE2B 3ed5583ea7f135568d9dcc00182ddde46c89ddb1923a03bc6f88606fecc5ff3956b768a1ca4de16b9e84179a3e57196d56b9789006cc1c6ea9482e5dd72b8e52 SHA512 9b902cff3f380d68348a756774f99ca4aafd807cb637ecb591d0f3a63d23fae6c688b542a6018fdbcce6e2dac34ef1d8e122b0bab671f31d99383ea4aa8f52bb
diff --git a/dev-util/hfstospell/hfstospell-0.5.3.ebuild b/dev-util/hfstospell/hfstospell-0.5.3.ebuild
deleted file mode 100644
index f1d817be298e..000000000000
--- a/dev-util/hfstospell/hfstospell-0.5.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="HFST spell checker library and command line tool"
-HOMEPAGE="https://github.com/hfst/hfst-ospell"
-SRC_URI="https://github.com/hfst/hfst-ospell/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-IUSE="clang"
-
-DEPEND="app-arch/libarchive:=
- dev-libs/icu:=
- !clang? (
- dev-cpp/glibmm:2
- dev-cpp/libxmlpp:2.6
- dev-libs/glib:2
- dev-libs/libsigc++:2
- dev-libs/libxml2
- )"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/hfst-ospell-${PV}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # https://github.com/hfst/hfst-ospell/issues/48
- if tc-is-clang; then
- econf --without-libxmlpp --without-tinyxml2
- elif use clang; then
- econf --without-libxmlpp --without-tinyxml2
- else
- default
- fi
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die
-}