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 10FBA1396D0 for ; Tue, 29 Aug 2017 14:02:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB4B71FC09B; Tue, 29 Aug 2017 14:02:20 +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 CB3A01FC09B for ; Tue, 29 Aug 2017 14:02:10 +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 B832F33FE7D for ; Tue, 29 Aug 2017 14:02:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1765786C9 for ; Tue, 29 Aug 2017 14:02:08 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1504014099.d6456d27f08bf36829217ab89e81365ab694cdd5.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/qmtest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/qmtest/qmtest-2.4.1-r1.ebuild X-VCS-Directories: dev-util/qmtest/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: d6456d27f08bf36829217ab89e81365ab694cdd5 X-VCS-Branch: master Date: Tue, 29 Aug 2017 14:02:08 +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: d362c4a8-172b-4bdf-b827-2a599fbd9ebb X-Archives-Hash: 4b366dc2f76d2e27ca8a84ac91a79d02 commit: d6456d27f08bf36829217ab89e81365ab694cdd5 Author: Guilherme Amadio gentoo org> AuthorDate: Tue Aug 29 13:40:31 2017 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Tue Aug 29 13:41:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6456d27 dev-util/qmtest: add prefix support Package-Manager: Portage-2.3.8, Repoman-2.3.3 dev-util/qmtest/qmtest-2.4.1-r1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-util/qmtest/qmtest-2.4.1-r1.ebuild b/dev-util/qmtest/qmtest-2.4.1-r1.ebuild index 1f4a13ccb8a..93ad4a8feb9 100644 --- a/dev-util/qmtest/qmtest-2.4.1-r1.ebuild +++ b/dev-util/qmtest/qmtest-2.4.1-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://www.codesourcery.com/public/${PN}/${P}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~mips x86" +KEYWORDS="amd64 ~mips x86 ~amd64-linux ~x86-linux" IUSE="" DEPEND="" @@ -26,8 +26,8 @@ pkg_setup() { src_install() { distutils-r1_src_install - find "${D}" -name config.py -print0 | xargs -0 sed -i "s:${D}:/usr:" - rm -r "${D}"usr/share/doc/${PN}/{COPYING,LICENSE.OPL} || die - mv "${D}"usr/share/doc/${PN}/* "${D}"usr/share/doc/${PF} || die - rm -r "${D}"/usr/share/doc/${PN} || die + find "${ED}" -name config.py -print0 | xargs -0 sed -i "s:${ED}:${EPREFIX}/usr:" + rm -r "${ED}"usr/share/doc/${PN}/{COPYING,LICENSE.OPL} || die + mv "${ED}"usr/share/doc/${PN}/* "${ED}"usr/share/doc/${PF} || die + rm -r "${ED}"/usr/share/doc/${PN} || die }