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 B1FD5138334 for ; Fri, 27 Jul 2018 13:45:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77261E086D; Fri, 27 Jul 2018 13:45:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 4F8A0E086D for ; Fri, 27 Jul 2018 13:45: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 4AAD4335C94 for ; Fri, 27 Jul 2018 13:45:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C2EC377 for ; Fri, 27 Jul 2018 13:45:22 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1532698853.0c1a4c029221aac43aec4a8db1e71cfde59a4db2.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/rime-data/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/rime-data/rime-data-0.35.ebuild X-VCS-Directories: app-i18n/rime-data/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 0c1a4c029221aac43aec4a8db1e71cfde59a4db2 X-VCS-Branch: master Date: Fri, 27 Jul 2018 13:45:22 +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: 63b7740c-5d09-42de-9fa2-7f826816524d X-Archives-Hash: 6b831c5a99854b2534a30ca731522ad5 commit: 0c1a4c029221aac43aec4a8db1e71cfde59a4db2 Author: Akinori Hattori gentoo org> AuthorDate: Fri Jul 27 13:40:53 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Fri Jul 27 13:40:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c1a4c02 app-i18n/rime-data: respect EPREFIX Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-i18n/rime-data/rime-data-0.35.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app-i18n/rime-data/rime-data-0.35.ebuild b/app-i18n/rime-data/rime-data-0.35.ebuild index d047cace41e..4290b96b363 100644 --- a/app-i18n/rime-data/rime-data-0.35.ebuild +++ b/app-i18n/rime-data/rime-data-0.35.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -7,7 +7,7 @@ MY_PN="brise" MY_P="${MY_PN}-${PV}" DESCRIPTION="Data resources for Rime Input Method Engine" -HOMEPAGE="http://rime.im/ https://github.com/rime/brise" +HOMEPAGE="https://rime.im/ https://github.com/rime/brise" SRC_URI="https://dl.bintray.com/lotem/rime/${MY_P}.tar.gz" LICENSE="GPL-3" @@ -17,5 +17,10 @@ IUSE="" DEPEND="app-i18n/librime" RDEPEND="${DEPEND}" - S="${WORKDIR}/${MY_PN}" + +src_prepare() { + sed -i "/^[[:space:]]*PREFIX/s:/usr:${EPREFIX}/usr:" Makefile + + default +}