From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QaWdT-000306-6t for garchives@archives.gentoo.org; Sat, 25 Jun 2011 17:27:11 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B1411C150; Sat, 25 Jun 2011 17:21:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5EE251C155 for ; Sat, 25 Jun 2011 17:21:58 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E64A2AC066 for ; Sat, 25 Jun 2011 17:21:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7F12E8003D for ; Sat, 25 Jun 2011 17:21:57 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <7425632b1897ebe8bdc4848c92be09eff06646f1.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/smalt-bin/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/smalt-bin/ChangeLog sci-biology/smalt-bin/smalt-bin-0.5.1.ebuild X-VCS-Directories: sci-biology/smalt-bin/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 7425632b1897ebe8bdc4848c92be09eff06646f1 Date: Sat, 25 Jun 2011 17:21:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: b8cace6095734a3e9f821adf120e0d42 commit: 7425632b1897ebe8bdc4848c92be09eff06646f1 Author: Justin Lecher gentoo org> AuthorDate: Sat Jun 25 12:59:45 2011 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Jun 25 12:59:45 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D7425632b Cleaned ebuild and fixed LICENSE (Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit = with key 70EB7916) --- sci-biology/smalt-bin/ChangeLog | 7 +++++++ sci-biology/smalt-bin/smalt-bin-0.5.1.ebuild | 26 +++++++++-----------= ------ 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/sci-biology/smalt-bin/ChangeLog b/sci-biology/smalt-bin/Chan= geLog new file mode 100644 index 0000000..f3268fd --- /dev/null +++ b/sci-biology/smalt-bin/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for sci-biology/smalt-bin +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 25 Jun 2011; Justin Lecher smalt-bin-0.5.1.ebuild: + Cleaned ebuild and fixed LICENSE + diff --git a/sci-biology/smalt-bin/smalt-bin-0.5.1.ebuild b/sci-biology/s= malt-bin/smalt-bin-0.5.1.ebuild index 9124a6c..7566c20 100644 --- a/sci-biology/smalt-bin/smalt-bin-0.5.1.ebuild +++ b/sci-biology/smalt-bin/smalt-bin-0.5.1.ebuild @@ -2,32 +2,24 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ =20 -EAPI=3D3 +EAPI=3D4 =20 -DESCRIPTION=3D"Pairwise sequence alignment mapping DNA reads onto genomi= c reference, better over SSAHA2." +DESCRIPTION=3D"Pairwise sequence alignment mapping DNA reads onto genomi= c reference, better over SSAHA2" HOMEPAGE=3D"http://www.sanger.ac.uk/resources/software/smalt/" SRC_URI=3D"ftp://ftp.sanger.ac.uk/pub4/resources/software/smalt/smalt-"$= {PV}".tgz" =20 -LICENSE=3D"GRL" +LICENSE=3D"as-is" SLOT=3D"0" KEYWORDS=3D"~x86 ~amd64" IUSE=3D"" =20 -DEPEND=3D"" -RDEPEND=3D"${DEPEND}" - S=3D"${WORKDIR}"/smalt-"${PV}" =20 src_install(){ - if use x86; then - newbin smalt_i386 smalt || die - fi - if use amd64; then - newbin smalt_x86_64 smalt || die - fi - if use ia64; then - newbin smalt_ia64 || die - fi - dodoc NEWS smalt_manual.pdf || die - doman smalt.1 || die + use x86 && newbin smalt_i386 smalt + use amd64 && newbin smalt_x86_64 smalt + use ia64 && newbin smalt_ia64 + + dodoc NEWS smalt_manual.pdf + doman smalt.1 }