summaryrefslogtreecommitdiff
path: root/app-dicts/dictd-vera
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-06-15 14:57:03 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-06-15 14:57:03 +0100
commitd18bf1e01b65ee4bf0c804e2843b282d3d4e5d7c (patch)
tree4a95cbc6ffdf13bad6ecbc7f8d5af99631984123 /app-dicts/dictd-vera
parente748ba9741f6540f4675c23e3e37b73e822c13a4 (diff)
gentoo resync : 15.06.2021
Diffstat (limited to 'app-dicts/dictd-vera')
-rw-r--r--app-dicts/dictd-vera/Manifest1
-rw-r--r--app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/app-dicts/dictd-vera/Manifest b/app-dicts/dictd-vera/Manifest
index 321eaa92c443..2854d83ba3f0 100644
--- a/app-dicts/dictd-vera/Manifest
+++ b/app-dicts/dictd-vera/Manifest
@@ -1,4 +1,5 @@
AUX dictd-vera-1.24-U+D7.patch 359 BLAKE2B 42895ad91dc2a0c8e154cf27bbbd74d0b27129bc73672dfabd305a60ed4d2c7acc11affbfd13a3b34ce0e728e4fbfa8181020d878710f730ee63125da731a089 SHA512 c0b9828c1f2639bca664bbd29729ce90b5db0a16bda713205c8be75bbd0d0ef2ba9cb8fc3b486d13ff7da37d129f34b81a99c360d23863f84857c233778acd11
DIST vera-1.24.tar.gz 240378 BLAKE2B f35df71c4fc9b95a9abba83cf49f9a70db03f1353f7d4e2b4e1db1a2f6ae41dc88f0f61b28e5405e76a97a7305f8a8bf6414b19a8067f113e2fd6bb54e57de43 SHA512 1727c91b0b60dc579e8f634375488a145921cf419bf3213118f90af031c48ed3d3408609d0a8a41135a3f6c6e9fa579b412981883325ae0dd9f0f72f56da5cd9
+EBUILD dictd-vera-1.24-r1.ebuild 766 BLAKE2B 50da3696293e9472a6d01b14c7e2941b5c399ff2154b89a3462d18d167d6fd4ce3bf29407cc030fe6b3d5940bad67eab7239670ea736e98d2991b3a84b3a64f2 SHA512 2b1dbbf2dd99146d9bc71c343a1d7e946b92c1fe25505e3f3ca5341b831ff5ef81fbad4c8f72684af659f591d669a4eec8f0741985a8256546cc363abca7a043
EBUILD dictd-vera-1.24.ebuild 759 BLAKE2B 7440e1a1e1b9fe7dd86f0a65425385884b2c8675c2ac46879fed706d9bb518c8bfe3207a62f276e1c52b0af6d049322fa163c7dce059a280342feeea26b2d482 SHA512 112cf141b37c6521d31cd2f79a9e24ca6b08f2084304912257f6040c8a3b2bade9f9ac4624829c8517c0019347a668b67b75cddc832df4360245cf0899fbdc37
MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild b/app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild
new file mode 100644
index 000000000000..57e23417d5eb
--- /dev/null
+++ b/app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="V.E.R.A. -- Virtual Entity of Relevant Acronyms for dict"
+HOMEPAGE="http://home.snafu.de/ohei/vera/vueber-e.html"
+SRC_URI="mirror://gnu/vera/vera-${PV}.tar.gz"
+S="${WORKDIR}/vera-${PV}"
+SLOT="0"
+LICENSE="FDL-1.3"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=app-text/dictd-1.5.5"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-U+D7.patch" )
+
+src_compile() {
+ cat vera.[0-9a-z] | dictfmt -f -u http://home.snafu.de/ohei \
+ -s "V.E.R.A. -- Virtual Entity of Relevant Acronyms" \
+ vera || die
+ dictzip -v vera.dict || die
+}
+
+src_install() {
+ insinto /usr/share/dict
+ doins vera.dict.dz
+ doins vera.index
+
+ dodoc changelog README
+}