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 C48B8138206 for ; Sun, 31 Dec 2017 11:14:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD218E086B; Sun, 31 Dec 2017 11:14:31 +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 9C024E086B for ; Sun, 31 Dec 2017 11:14:31 +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 4ACBE335C31 for ; Sun, 31 Dec 2017 11:14:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93F9812F for ; Sun, 31 Dec 2017 11:14:28 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1514718837.c54389fe2c1aaa51200e558649e0d65f7e873e1c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-uim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild X-VCS-Directories: app-i18n/scim-uim/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c54389fe2c1aaa51200e558649e0d65f7e873e1c X-VCS-Branch: master Date: Sun, 31 Dec 2017 11:14:28 +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: dc498045-a0ac-4242-bcae-17b49e8028b2 X-Archives-Hash: 625884c18afe2333bdedd9c1b273f8c5 commit: c54389fe2c1aaa51200e558649e0d65f7e873e1c Author: David Seifert gentoo org> AuthorDate: Sun Dec 31 09:54:57 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 31 11:13:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c54389fe app-i18n/scim-uim: Port to EAPI 6 Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild b/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild index ad0fc7d82d8..8b9fe22e071 100644 --- a/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild +++ b/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild @@ -1,8 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" -inherit eutils +EAPI=6 DESCRIPTION="An input module for Smart Common Input Method (SCIM) which uses uim as backend" HOMEPAGE="http://www.scim-im.org/" @@ -13,20 +12,26 @@ SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" -RDEPEND=">=app-i18n/uim-1.5.0 +RDEPEND=" + >=app-i18n/uim-1.5.0 >=app-i18n/scim-1.4.0" DEPEND="${RDEPEND} virtual/pkgconfig" -src_prepare() { - epatch "${FILESDIR}/${P}-gcc43.patch" \ - "${FILESDIR}/${P}-uim-1.5.patch" +PATCHES=( + "${FILESDIR}"/${P}-gcc43.patch + "${FILESDIR}"/${P}-uim-1.5.patch +) + +src_configure() { + econf --disable-static } src_install() { - emake DESTDIR="${D}" install || die "make install failed" + default - dodoc AUTHORS ChangeLog README THANKS || die + # plugin module, no point in .la files + find "${D}" -name '*.la' -delete || die } pkg_postinst() {