diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-24 20:36:06 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-24 20:40:21 +0200 |
commit | 80c8de5c36e4f9b96247a568d066c3c2fa9823d3 (patch) | |
tree | ed1b2c3f3bf5f495cbe1afe8544be41bab0ec21d /app-text/mythes | |
parent | www-client/microsoft-edge-dev: remove old (diff) | |
download | gentoo-80c8de5c36e4f9b96247a568d066c3c2fa9823d3.tar.gz gentoo-80c8de5c36e4f9b96247a568d066c3c2fa9823d3.tar.bz2 gentoo-80c8de5c36e4f9b96247a568d066c3c2fa9823d3.zip |
app-text/mythes: add 1.2.5
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text/mythes')
-rw-r--r-- | app-text/mythes/Manifest | 1 | ||||
-rw-r--r-- | app-text/mythes/mythes-1.2.5.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/app-text/mythes/Manifest b/app-text/mythes/Manifest index eecadde98eb5..898deef3d38c 100644 --- a/app-text/mythes/Manifest +++ b/app-text/mythes/Manifest @@ -1 +1,2 @@ DIST mythes-1.2.4.tar.gz 4910303 BLAKE2B aa091344aebd117618d90aa574ec5e68594782511e1aa85a2d46740ecc4ff2cdf1d9f9f6de9dfd454cc0056076bdb9a21ad14d2935e39e4fdbd7753930fda605 SHA512 a04da39812bcfb1391a2cba7de73e955eafe141679ec03ed6657d03bebf360b432480d0037dff9ed72a1dfda5a70d77d44ac2bb14cdb109fd8e2a38376feee21 +DIST mythes-1.2.5.tar.xz 2891852 BLAKE2B e292e49187a9b225fdcfccb467afed0b8ce90769bbefe331d7d7f026f2dd6686543b14f3666af5b1693198467206c53da0bbd030420d87c94315f9da769f45a6 SHA512 304fd05619e0ae02c9c29d92a6ada8f4a85f41f331b87b8820728c1919f3dd9c5cd951dbef9a27e649466f94dc5daa19350c9fd09c90d49b198b73b1f9eb770e diff --git a/app-text/mythes/mythes-1.2.5.ebuild b/app-text/mythes/mythes-1.2.5.ebuild new file mode 100644 index 000000000000..e9e541fbdbd0 --- /dev/null +++ b/app-text/mythes/mythes-1.2.5.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Simple thesaurus for LibreOffice" +HOMEPAGE="https://github.com/hunspell/mythes" +SRC_URI="https://github.com/hunspell/${PN}/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="debug" + +RDEPEND="app-text/hunspell:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_configure() { + econf \ + --disable-werror \ + $(use_enable debug) +} + +src_install() { + default + find "${ED}" -type f -name '*.la' -delete || die +} |