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 6B99C138A1A for ; Fri, 13 Feb 2015 21:53:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F853E0930; Fri, 13 Feb 2015 21:53:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8FD9FE0930 for ; Fri, 13 Feb 2015 21:53:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D6D76340836 for ; Fri, 13 Feb 2015 21:53:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8252211B13 for ; Fri, 13 Feb 2015 21:53:23 +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: <1423864214.db6da9e797597d6c9ea43fce8adf4af218c013fc.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/primerD/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/primerD/ChangeLog sci-biology/primerD/primerD-1.0.0.ebuild X-VCS-Directories: sci-biology/primerD/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: db6da9e797597d6c9ea43fce8adf4af218c013fc X-VCS-Branch: master Date: Fri, 13 Feb 2015 21:53:23 +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: 519ee081-f830-4538-9ad5-8556b1fe4e1b X-Archives-Hash: b4ebcfed15d3561cfcd53ff7e3404d9d commit: db6da9e797597d6c9ea43fce8adf4af218c013fc Author: Martin Mokrejš fold natur cuni cz> AuthorDate: Fri Feb 13 21:50:14 2015 +0000 Commit: Martin Mokrejs fold natur cuni cz> CommitDate: Fri Feb 13 21:50:14 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=db6da9e7 edit the bundled Makefile Package-Manager: portage-2.2.15 --- sci-biology/primerD/ChangeLog | 5 ++++- sci-biology/primerD/primerD-1.0.0.ebuild | 13 +++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/sci-biology/primerD/ChangeLog b/sci-biology/primerD/ChangeLog index 55298f3..f98ebf8 100644 --- a/sci-biology/primerD/ChangeLog +++ b/sci-biology/primerD/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 13 Feb 2015; Martin Mokrejs + primerD-1.0.0.ebuild: + edit the bundled Makefile + 10 Jan 2015; Justin Lecher primerD-1.0.0.ebuild: Fix license @@ -10,4 +14,3 @@ 07 Jan 2015; Martin Mokrejs +primerD-1.0.0.ebuild, +metadata.xml: ebuild skeleton - diff --git a/sci-biology/primerD/primerD-1.0.0.ebuild b/sci-biology/primerD/primerD-1.0.0.ebuild index 2dbabc8..a77c039 100644 --- a/sci-biology/primerD/primerD-1.0.0.ebuild +++ b/sci-biology/primerD/primerD-1.0.0.ebuild @@ -4,6 +4,8 @@ EAPI=5 +inherit toolchain-funcs + DESCRIPTION="Design degenerate primers" HOMEPAGE="http://mblab.wustl.edu/software.html" SRC_URI="http://mblab.wustl.edu/software/download/primerD.tar.gz -> primerD-1.0.tar.gz" @@ -12,3 +14,14 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="" IUSE="" + +S="${WORKDIR}"/primerD + +src_prepare(){ + sed -e "s:CC=g++:CC=$(tc-getCXX):; s:-Wall -g:${CFLAGS}:" -i Makefile || die +} + +src_install(){ + dodoc README + dobin primerD +}