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 6C4CF1382FE for ; Mon, 11 Jul 2016 09:22:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A620E0B3A; Mon, 11 Jul 2016 09:22:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 27C62E0B3A for ; Mon, 11 Jul 2016 09:22:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A506D33BE44 for ; Mon, 11 Jul 2016 09:22:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFCF897B for ; Mon, 11 Jul 2016 09:22:49 +0000 (UTC) From: "Martin Mokrejs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Martin Mokrejs" Message-ID: <1468228963.43cdfcbd2e4349dc930e42e59d35a413a204b95b.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/tigr-foundation-libs/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/tigr-foundation-libs/tigr-foundation-libs-2.0-r1.ebuild X-VCS-Directories: sci-biology/tigr-foundation-libs/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: 43cdfcbd2e4349dc930e42e59d35a413a204b95b X-VCS-Branch: master Date: Mon, 11 Jul 2016 09:22:49 +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: c182b69f-5b8a-4b7b-a60b-910093bcaa3f X-Archives-Hash: 5aa4489a1b3b0fa6677bf82a33522cb9 commit: 43cdfcbd2e4349dc930e42e59d35a413a204b95b Author: Martin Mokrejš fold natur cuni cz> AuthorDate: Mon Jul 11 09:22:43 2016 +0000 Commit: Martin Mokrejs fold natur cuni cz> CommitDate: Mon Jul 11 09:22:43 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=43cdfcbd sci-biology/tigr-foundation-libs: respect EPREFIX Package-Manager: portage-2.2.28 sci-biology/tigr-foundation-libs/tigr-foundation-libs-2.0-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sci-biology/tigr-foundation-libs/tigr-foundation-libs-2.0-r1.ebuild b/sci-biology/tigr-foundation-libs/tigr-foundation-libs-2.0-r1.ebuild index 2e08a91..1996813 100644 --- a/sci-biology/tigr-foundation-libs/tigr-foundation-libs-2.0-r1.ebuild +++ b/sci-biology/tigr-foundation-libs/tigr-foundation-libs-2.0-r1.ebuild @@ -26,5 +26,7 @@ src_prepare(){ } src_install(){ - emake install DESTDIR="${D}/"${EPREFIX}"/usr" + emake install DESTDIR="${D}/${EPREFIX}"/usr # Makefile does not respect DESTDIR + mkdir -p "${D}/${EPREFIX}" || die + mv "${D}/${EPREFIX}"/usr "${D}/${EPREFIX}"/ || die }