From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AF71B1382C5 for ; Thu, 23 Jun 2016 16:39:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9155B941C3; Thu, 23 Jun 2016 16:39:29 +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 26CA8941C3 for ; Thu, 23 Jun 2016 16:39:29 +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 E17F5340C15 for ; Thu, 23 Jun 2016 16:39:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EEA0A2098 for ; Thu, 23 Jun 2016 16:39:25 +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: <1466699956.4fb5985d99147d5e886518ce226c2143251de123.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/Atlas/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/Atlas/Atlas-2005.ebuild X-VCS-Directories: sci-biology/Atlas/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: 4fb5985d99147d5e886518ce226c2143251de123 X-VCS-Branch: master Date: Thu, 23 Jun 2016 16:39: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: c2614553-58e7-42bd-9add-c14aee6f6a75 X-Archives-Hash: 993b1459e781bb776bbba182dbb4ad29 commit: 4fb5985d99147d5e886518ce226c2143251de123 Author: Martin Mokrejš fold natur cuni cz> AuthorDate: Thu Jun 23 16:39:16 2016 +0000 Commit: Martin Mokrejs fold natur cuni cz> CommitDate: Thu Jun 23 16:39:16 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4fb5985d sci-biology/Atlas: improve ebuild, still does not work Package-Manager: portage-2.2.28 sci-biology/Atlas/Atlas-2005.ebuild | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sci-biology/Atlas/Atlas-2005.ebuild b/sci-biology/Atlas/Atlas-2005.ebuild index c66660b..c95df06 100644 --- a/sci-biology/Atlas/Atlas-2005.ebuild +++ b/sci-biology/Atlas/Atlas-2005.ebuild @@ -14,5 +14,15 @@ SLOT="0" KEYWORDS="" IUSE="" -DEPEND="" +DEPEND="dev-libs/boost" RDEPEND="${DEPEND}" + +S="${WORKDIR}"/atlas-src + +src_compile(){ + # install headers, bins and libs into CBT_DEVEL_USER, then compile apps + cd src || die + emake CBT_DEVEL_DIR="${S}"/CBT CBT_INSTALL_DIR="${D}" + cd ../CBTApps || die + emake CBT_DEVEL_DIR="${S}"/CBT CBT_INSTALL_DIR="${D}" +}