app-i18n/skk-jisyo: new snapshot
authorAkinori Hattori <hattya@gentoo.org>
Mon, 7 May 2018 13:05:25 +0000 (22:05 +0900)
committerAkinori Hattori <hattya@gentoo.org>
Mon, 7 May 2018 13:06:45 +0000 (22:06 +0900)
Package-Manager: Portage-2.3.24, Repoman-2.3.6

app-i18n/skk-jisyo/Manifest
app-i18n/skk-jisyo/skk-jisyo-201805.ebuild [new file with mode: 0644]

index 2b102fe8622d005dec3279792c450a36ab7f5ef8..9cece8ff1f6c8a24af4587da2c4719d576faa34b 100644 (file)
@@ -1 +1,2 @@
 DIST skk-jisyo-201605.tar.xz 6288104 BLAKE2B d68332a4fa0804b596fc42f3dc8231a6eebe8bddacc6e0babec6cc5992ddaadb46e8fa9af742daa30545a585428afe79eab28329ce1d37e0192b08b20d7c584e SHA512 1093d363fe571c3e3e05fa54046fc4b88cbed2fbd104838576c83694556585401c3affa0afb2ed078c6f1b06f62a7b14145b1305f6fef089f160b4073900c7a1
+DIST skk-jisyo-201805.tar.xz 6133180 BLAKE2B 52408eb2f1fa5e5146fd4db55c249f80b5ede7d2ce1e7a3c11fb69507f87f86d778e25b04ce4e39dd241ea2d8000d829b34c47df991cb91f886923e330b652eb SHA512 13675502332609857b66391bdb9dc252b9f7a48814f6db10c60106b9cc3ce823df7615d77e0579d13b9d3da93dae2006cedc145d8dd80af39b9d4ecfe94373d5
diff --git a/app-i18n/skk-jisyo/skk-jisyo-201805.ebuild b/app-i18n/skk-jisyo/skk-jisyo-201805.ebuild
new file mode 100644 (file)
index 0000000..097ef29
--- /dev/null
@@ -0,0 +1,66 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+MY_PN=${PN^^}
+
+DESCRIPTION="Jisyo (dictionary) files for the SKK Japanese-input software"
+HOMEPAGE="http://openlab.ring.gr.jp/skk/dic.html"
+SRC_URI="mirror://gentoo/${P}.tar.xz
+       https://dev.gentoo.org/~hattya/distfiles/${P}.tar.xz"
+
+LICENSE="GPL-2 freedist public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+IUSE="cdb"
+
+DEPEND="virtual/awk
+       cdb? (
+               || (
+                       dev-db/tinycdb
+                       dev-db/cdb
+               )
+       )"
+RDEPEND=""
+
+DOCS=( ChangeLog{,.{1..3}} READMEs/committers.txt edict_doc.txt zipcode/README.ja )
+
+src_prepare() {
+       rm -f ${MY_PN}.{wrong*,noregist,not_wrong,hukugougo,notes,requested,pubdic+}
+
+       default
+}
+
+cdb_make() {
+       cdbmake "${1}" "${1}.tmp"
+}
+
+tinycdb_make() {
+       cdb -c "${1}"
+}
+
+src_compile() {
+       if use cdb; then
+               local cdbmake=cdb_make f
+               if has_version dev-db/tinycdb; then
+                       cdbmake=tinycdb_make
+               fi
+               for f in {,zipcode/}${MY_PN}.*; do
+                       LC_ALL=C awk '
+                               /^[^;]/ {
+                                       s = substr($0, index($0, " ") + 1)
+                                       print "+" length($1) "," length(s) ":" $1 "->" s
+                               }
+                               END {
+                                       print ""
+                               }
+                       ' ${f} | ${cdbmake} ${f}.cdb || die
+               done
+       fi
+}
+
+src_install() {
+       insinto /usr/share/skk
+       doins {,zipcode/}${MY_PN}.*
+}