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 632191396D9 for ; Mon, 23 Oct 2017 17:25:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6590B2BC0C7; Mon, 23 Oct 2017 17:24:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4420E2BC0C7 for ; Mon, 23 Oct 2017 17:24:57 +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 05A5033BF0F for ; Mon, 23 Oct 2017 17:24:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3462783F for ; Mon, 23 Oct 2017 17:24:52 +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: <1508779482.a83f2edc68355376106c96a88e604d417a2c6393.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/fcitx-rime/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/fcitx-rime/fcitx-rime-4.9999.ebuild X-VCS-Directories: app-i18n/fcitx-rime/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: a83f2edc68355376106c96a88e604d417a2c6393 X-VCS-Branch: master Date: Mon, 23 Oct 2017 17:24:52 +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: 090707db-6678-48a7-8897-7af37c89896d X-Archives-Hash: 6a5c88a8676afc6d4f73d1f61652af5d commit: a83f2edc68355376106c96a88e604d417a2c6393 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Oct 19 20:52:30 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Oct 23 17:24:42 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a83f2edc app-i18n/fcitx-rime: Add live ebuild. app-i18n/fcitx-rime/fcitx-rime-4.9999.ebuild | 50 ++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/app-i18n/fcitx-rime/fcitx-rime-4.9999.ebuild b/app-i18n/fcitx-rime/fcitx-rime-4.9999.ebuild new file mode 100644 index 00000000000..35443f12a6e --- /dev/null +++ b/app-i18n/fcitx-rime/fcitx-rime-4.9999.ebuild @@ -0,0 +1,50 @@ +# 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-rime" +fi + +DESCRIPTION="Chinese RIME input method for Fcitx" +HOMEPAGE="https://fcitx-im.org/ https://github.com/fcitx/fcitx-rime" +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/librime-1.0.0:= + app-i18n/rime-data + virtual/libintl" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=() + +src_configure() { + local mycmakeargs=( + -DRIME_DATA_DIR="${EPREFIX}/usr/share/rime-data" + ) + + cmake-utils_src_configure +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}