From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- app-dicts/ipadic/Manifest | 4 +++ .../ipadic/files/ipadic-2.7.0-r2-gentoo.patch | 30 ++++++++++++++++++++++ app-dicts/ipadic/ipadic-2.7.0-r2.ebuild | 30 ++++++++++++++++++++++ app-dicts/ipadic/metadata.xml | 11 ++++++++ 4 files changed, 75 insertions(+) create mode 100644 app-dicts/ipadic/Manifest create mode 100644 app-dicts/ipadic/files/ipadic-2.7.0-r2-gentoo.patch create mode 100644 app-dicts/ipadic/ipadic-2.7.0-r2.ebuild create mode 100644 app-dicts/ipadic/metadata.xml (limited to 'app-dicts/ipadic') diff --git a/app-dicts/ipadic/Manifest b/app-dicts/ipadic/Manifest new file mode 100644 index 000000000000..ab66474b0a2a --- /dev/null +++ b/app-dicts/ipadic/Manifest @@ -0,0 +1,4 @@ +AUX ipadic-2.7.0-r2-gentoo.patch 896 BLAKE2B 69c2fb6a2379359d8060a59d0041faebd780769a0983e6797ed16d8143e0d05a046f82a0352a53226219c4888d91fd51b339a284e4e37f85d11c22e11a58f4a7 SHA512 0e6fa8f84c978c96d0fe8eebbda3166d298fa9709eec8025025e5705db04d08b3e7581f9341dad84808dba52c6dac2498743a4514701fa74289608287f3b2a82 +DIST ipadic-2.7.0.tar.gz 4300102 BLAKE2B bc6c60eb79c12dc06a30c021d5df2016f5b9c8a41540edfda3d9010716096ac25ee6a1a34b23690c86799eaa4c60fc68c499c0a20afbef865c07ec51b9ddcf40 SHA512 0c4617733d3a786f4a9d0773c50cd76da5433921dc4eb4f759b8b3c0fd3c0db411696068ee795a893063e1a7ab1bdb6afc740331c5fdd2c3ebc914324f4e33c3 +EBUILD ipadic-2.7.0-r2.ebuild 613 BLAKE2B 40a8d59f47ee03254702599421c33192f718f0c2d9104a0692dfa185273118dd9da9794a4d467f295ca4db347026927e71bf1b214e567d879cc37738657806b4 SHA512 a546f27a9757f5859344b6d9e6b2a2a9cd60421f360bd5e7f866993c7986ad807992ca30b52f47995e1ba0ddb8f9b49f8a58062b01f3c6a08425a010a7e19418 +MISC metadata.xml 313 BLAKE2B 29d8fd0791c9ef1edc0c84bec6d51512b47510bf511fe987d1d4e3ec9ebe235cde890508a545d4e8e16a7ab73d988261348fdfa94a44f294ae57d8bf8d8e9de1 SHA512 3319aeaacecbac0b8005dc910cfbb7357d068d920c739230fbeb61b1653d433efcadad1d07674d01ff092d9cbf8cd4f11ee317234b44b747bef6cf2fa0b1132b diff --git a/app-dicts/ipadic/files/ipadic-2.7.0-r2-gentoo.patch b/app-dicts/ipadic/files/ipadic-2.7.0-r2-gentoo.patch new file mode 100644 index 000000000000..8c701a363ec5 --- /dev/null +++ b/app-dicts/ipadic/files/ipadic-2.7.0-r2-gentoo.patch @@ -0,0 +1,30 @@ +diff -Naur ipadic-2.7.0.orig/Makefile.am ipadic-2.7.0/Makefile.am +--- ipadic-2.7.0.orig/Makefile.am 2003-09-13 14:37:17.000000000 +0900 ++++ ipadic-2.7.0/Makefile.am 2011-09-02 11:03:33.044589641 +0900 +@@ -11,18 +11,18 @@ + EXTRA_DIST = $(pre_data) $(lexical_dic) $(manual_files) @PACKAGE@.spec + CLEANFILES = $(gen_data) + # +-matrix.cha table.cha: ++matrix.cha table.cha chadic.lex chadic.dat: + $(MKDICDIR)/makemat + +-chadic.da: ++chadic.da: table.cha + $(MKDICDIR)/makeda chadic *.dic + +-install-data-local: +- if test -f @CHASEN_CHASENRC_PATH@ ; then \ +- echo "Please modify @CHASEN_CHASENRC_PATH@"; \ +- else \ +- cp chasenrc @CHASEN_CHASENRC_PATH@ ;\ +- fi ++#install-data-local: ++# if test -f @CHASEN_CHASENRC_PATH@ ; then \ ++# echo "Please modify @CHASEN_CHASENRC_PATH@"; \ ++# else \ ++# cp chasenrc @CHASEN_CHASENRC_PATH@ ;\ ++# fi + + sjis-dist: dist + gtar xzvf ipadic-@VERSION@.tar.gz diff --git a/app-dicts/ipadic/ipadic-2.7.0-r2.ebuild b/app-dicts/ipadic/ipadic-2.7.0-r2.ebuild new file mode 100644 index 000000000000..5c5669004c10 --- /dev/null +++ b/app-dicts/ipadic/ipadic-2.7.0-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="4" +inherit autotools eutils + +DESCRIPTION="Japanese dictionary for ChaSen" +HOMEPAGE="http://sourceforge.jp/projects/ipadic/" +SRC_URI="mirror://sourceforge.jp/${PN}/24435/${P}.tar.gz" + +LICENSE="ipadic" +KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos" +SLOT="0" +IUSE="" + +DEPEND=">=app-text/chasen-2.3.1" +RDEPEND="" + +src_prepare() { + epatch "${FILESDIR}/${PF}-gentoo.patch" + eautoreconf +} + +src_install () { + default + + insinto /etc + doins chasenrc + dodoc AUTHORS ChangeLog NEWS README +} diff --git a/app-dicts/ipadic/metadata.xml b/app-dicts/ipadic/metadata.xml new file mode 100644 index 000000000000..96adbff6dce0 --- /dev/null +++ b/app-dicts/ipadic/metadata.xml @@ -0,0 +1,11 @@ + + + + + cjk@gentoo.org + Cjk + + + ipadic + + -- cgit v1.2.3