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 CE589138AE9 for ; Wed, 27 Dec 2017 21:16:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39A34E0FAD; Wed, 27 Dec 2017 21:16:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 08DE5E0FAD for ; Wed, 27 Dec 2017 21:16:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9ABBB33BF05 for ; Wed, 27 Dec 2017 21:16:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F22FAF9A for ; Wed, 27 Dec 2017 21:16:25 +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: <1514409359.2e03e41079d3879f49fe679ebd75c8cedec84e62.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/imhangul/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/imhangul/imhangul-3.1.1.ebuild X-VCS-Directories: app-i18n/imhangul/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 2e03e41079d3879f49fe679ebd75c8cedec84e62 X-VCS-Branch: master Date: Wed, 27 Dec 2017 21:16:25 +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: bf700b3f-34b9-43e1-8d62-d6dfe10db833 X-Archives-Hash: 194b772993d3b3840ba776a5579b9ec0 commit: 2e03e41079d3879f49fe679ebd75c8cedec84e62 Author: David Seifert gentoo org> AuthorDate: Wed Dec 27 21:06:53 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Dec 27 21:15:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e03e410 app-i18n/imhangul: Port to EAPI 6 Bug: https://bugs.gentoo.org/621942 Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-i18n/imhangul/imhangul-3.1.1.ebuild | 38 ++++++++++++++++----------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/app-i18n/imhangul/imhangul-3.1.1.ebuild b/app-i18n/imhangul/imhangul-3.1.1.ebuild index 6d32c118487..1cebdc2d5fc 100644 --- a/app-i18n/imhangul/imhangul-3.1.1.ebuild +++ b/app-i18n/imhangul/imhangul-3.1.1.ebuild @@ -1,15 +1,14 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="3" -inherit multilib +EAPI=6 DESCRIPTION="Gtk+-3.0 Hangul Input Modules" HOMEPAGE="https://code.google.com/p/imhangul/" SRC_URI="https://imhangul.googlecode.com/files/${P}.tar.bz2" -SLOT="3" LICENSE="LGPL-2.1" +SLOT="3" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" @@ -21,31 +20,32 @@ DEPEND="${RDEPEND} sys-devel/gettext" src_prepare() { + default + # Drop DEPRECATED flags, bug #387825 sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' Makefile.am Makefile.in || die } src_configure() { - econf --with-gtk-im-module-dir="${EPREFIX}/usr/$(get_libdir)/gtk-3.0/$(pkg-config gtk+-3.0 --variable=gtk_binary_version)/immodules" || die + econf --with-gtk-im-module-dir="${EPREFIX}/usr/$(get_libdir)/gtk-3.0/$(pkg-config gtk+-3.0 --variable=gtk_binary_version)/immodules" } src_install() { - emake DESTDIR="${D}" install || die - - find "${ED}" -name "*.la" -type f -delete || die + default + dodoc imhangul.conf insinto /etc/X11/xinit/xinput.d - newins "${FILESDIR}/xinput-imhangul2" imhangul2.conf || die - newins "${FILESDIR}/xinput-imhangul2y" imhangul2y.conf || die - newins "${FILESDIR}/xinput-imhangul32" imhangul32.conf || die - newins "${FILESDIR}/xinput-imhangul39" imhangul39.conf || die - newins "${FILESDIR}/xinput-imhangul3f" imhangul3f.conf || die - newins "${FILESDIR}/xinput-imhangul3s" imhangul3s.conf || die - newins "${FILESDIR}/xinput-imhangul3y" imhangul3y.conf || die - newins "${FILESDIR}/xinput-imhangulahn" imhangulahn.conf || die - newins "${FILESDIR}/xinput-imhangulro" imhangulro.conf || die - - dodoc AUTHORS ChangeLog NEWS README TODO imhangul.conf || die + newins "${FILESDIR}/xinput-imhangul2" imhangul2.conf + newins "${FILESDIR}/xinput-imhangul2y" imhangul2y.conf + newins "${FILESDIR}/xinput-imhangul32" imhangul32.conf + newins "${FILESDIR}/xinput-imhangul39" imhangul39.conf + newins "${FILESDIR}/xinput-imhangul3f" imhangul3f.conf + newins "${FILESDIR}/xinput-imhangul3s" imhangul3s.conf + newins "${FILESDIR}/xinput-imhangul3y" imhangul3y.conf + newins "${FILESDIR}/xinput-imhangulahn" imhangulahn.conf + newins "${FILESDIR}/xinput-imhangulro" imhangulro.conf + + find "${D}" -name '*.la' -delete || die } pkg_postinst() {