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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 486E61396D9 for ; Mon, 23 Oct 2017 17:25:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD68A2BC0C2; Mon, 23 Oct 2017 17:24:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8B2B2BC0C3 for ; Mon, 23 Oct 2017 17:24:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC79833FE49 for ; Mon, 23 Oct 2017 17:24:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F079583C for ; Mon, 23 Oct 2017 17:24:51 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1508779481.9cf9419d826f0df2d59e63352799fadac5c1fedd.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-hangul/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/fcitx-hangul/fcitx-hangul-4.9999.ebuild X-VCS-Directories: app-i18n/fcitx-hangul/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 9cf9419d826f0df2d59e63352799fadac5c1fedd X-VCS-Branch: master Date: Mon, 23 Oct 2017 17:24:51 +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-Archives-Salt: 7a5b6a10-4024-41f1-a3b6-81ffed1370a1 X-Archives-Hash: 5521783307951449038baabdd80fc707 commit: 9cf9419d826f0df2d59e63352799fadac5c1fedd Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Oct 19 20:47:40 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Oct 23 17:24:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf9419d app-i18n/fcitx-hangul: Add live ebuild. app-i18n/fcitx-hangul/fcitx-hangul-4.9999.ebuild | 43 ++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/app-i18n/fcitx-hangul/fcitx-hangul-4.9999.ebuild b/app-i18n/fcitx-hangul/fcitx-hangul-4.9999.ebuild new file mode 100644 index 00000000000..7fd3d0bc647 --- /dev/null +++ b/app-i18n/fcitx-hangul/fcitx-hangul-4.9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit cmake-utils gnome2-utils + +if [[ "${PV}" =~ (^|\.)9999$ ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/fcitx/fcitx-hangul" +fi + +DESCRIPTION="Korean Hangul input method for Fcitx" +HOMEPAGE="https://fcitx-im.org/ https://github.com/fcitx/fcitx-hangul" +if [[ "${PV}" =~ (^|\.)9999$ ]]; then + SRC_URI="" +else + SRC_URI="https://download.fcitx-im.org/${PN}/${P}.tar.xz" +fi + +LICENSE="GPL-2+" +SLOT="4" +KEYWORDS="" +IUSE="" + +RDEPEND=">=app-i18n/fcitx-4.2.9:4 + app-i18n/libhangul:= + virtual/libiconv + virtual/libintl" +DEPEND="${RDEPEND} + sys-devel/gettext + virtual/pkgconfig" + +DOCS=(AUTHORS) + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}