From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F05F158099 for ; Fri, 1 Dec 2023 07:52:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3079F2BC038; Fri, 1 Dec 2023 07:52:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFBEC2BC038 for ; Fri, 1 Dec 2023 07:52:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D69FD335D6D for ; Fri, 1 Dec 2023 07:52:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B39011442 for ; Fri, 1 Dec 2023 07:52:38 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1701417137.6b0b48fe6d2f88791968a24da8cd0a1e7c727569.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/mecab-naist-jdic/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-dicts/mecab-naist-jdic/mecab-naist-jdic-0.6.3b_p20111013-r1.ebuild X-VCS-Directories: app-dicts/mecab-naist-jdic/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 6b0b48fe6d2f88791968a24da8cd0a1e7c727569 X-VCS-Branch: master Date: Fri, 1 Dec 2023 07:52:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0f23af18-a40c-4fdf-ab80-5995118cbc89 X-Archives-Hash: f024a0d6b6d32f0e8cbf58ef3195739a commit: 6b0b48fe6d2f88791968a24da8cd0a1e7c727569 Author: Leonardo Hernández Hernández proton me> AuthorDate: Mon Oct 16 00:24:54 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Dec 1 07:52:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b0b48fe app-dicts/mecab-naist-jdic: update EAPI 6 -> 8 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Joonas Niilola gentoo.org> .../mecab-naist-jdic-0.6.3b_p20111013-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-dicts/mecab-naist-jdic/mecab-naist-jdic-0.6.3b_p20111013-r1.ebuild b/app-dicts/mecab-naist-jdic/mecab-naist-jdic-0.6.3b_p20111013-r1.ebuild new file mode 100644 index 000000000000..94c36a30f1fd --- /dev/null +++ b/app-dicts/mecab-naist-jdic/mecab-naist-jdic-0.6.3b_p20111013-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="${P/_p/-}" + +DESCRIPTION="NAIST Japanese Dictionary" +HOMEPAGE="http://sourceforge.jp/projects/naist-jdic/" +SRC_URI="mirror://sourceforge.jp/${PN#*-}/53500/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~loong ~riscv ~x86" +IUSE="unicode" + +DEPEND="app-text/mecab[unicode=]" + +src_configure() { + econf $(use_with unicode charset UTF-8) +}