From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F1FFF1384B4 for ; Sat, 21 Nov 2015 14:40:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D336121C001; Sat, 21 Nov 2015 14:40:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7892521C001 for ; Sat, 21 Nov 2015 14:40:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9DA634098F for ; Sat, 21 Nov 2015 14:40:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D03ED1067 for ; Sat, 21 Nov 2015 14:40:15 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1448116805.b92ceb656447b395da33987df9fd03dc34a45a53.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/im-freewnn/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild X-VCS-Directories: app-i18n/im-freewnn/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: b92ceb656447b395da33987df9fd03dc34a45a53 X-VCS-Branch: master Date: Sat, 21 Nov 2015 14:40:15 +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: b4b44220-a202-4af5-9ec8-5fe4b1e30c82 X-Archives-Hash: 6b493995b214049c051c49edd4b2f548 commit: b92ceb656447b395da33987df9fd03dc34a45a53 Author: Pacho Ramos gentoo org> AuthorDate: Sat Nov 21 14:37:16 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Nov 21 14:40:05 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b92ceb65 app-i18n/im-freewnn: Bump EAPI, fix RDEPEND, drop .la files Package-Manager: portage-2.2.24 app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild | 54 ++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild b/app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild new file mode 100644 index 0000000..253d3c2 --- /dev/null +++ b/app-i18n/im-freewnn/im-freewnn-0.0.2-r2.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils gnome2-utils multilib + +DESCRIPTION="Japanese FreeWnn input method module for GTK+2" +HOMEPAGE="http://bonobo.gnome.gr.jp/~nakai/immodule/" +SRC_URI="http://bonobo.gnome.gr.jp/~nakai/immodule/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/pango + >=x11-libs/gtk+-2.4:2 + >=app-i18n/freewnn-1.1.1_alpha21-r1 +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +pkg_setup() { + # An arch specific config directory is used on multilib systems + has_multilib_profile && GTK2_CONFDIR="/etc/gtk-2.0/${CHOST}" + GTK2_CONFDIR=${GTK2_CONFDIR:=/etc/gtk-2.0/} +} + +src_prepare() { + epatch "${FILESDIR}/${PN}-wnnrc-gentoo.diff" + # bug #298744 + epatch "${FILESDIR}/${P}-as-needed.patch" + epatch "${FILESDIR}/${P}-implicit-declaration.patch" + + mv configure.in configure.ac || die + eautoreconf +} + +src_install() { + default + prune_libtool_files --modules +} + +pkg_postinst() { + gnome2_query_immodules_gtk2 +} + +pkg_postrm() { + gnome2_query_immodules_gtk2 +}