public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Christoph Junghans" <ottxor@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/bowtie/
Date: Sun,  8 Feb 2015 21:07:47 +0000 (UTC)	[thread overview]
Message-ID: <1423254241.60ba53b88755c62f589c3787765bd6f39da78eef.ottxor@gentoo> (raw)

commit:     60ba53b88755c62f589c3787765bd6f39da78eef
Author:     Ted Tanberry <ted.tanberry <AT> gmail <DOT> com>
AuthorDate: Fri Feb  6 08:52:03 2015 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Fri Feb  6 20:24:01 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=60ba53b8

Updated bowtie:{1,2} ebuilds to match current ebuild policy.

---
 sci-biology/bowtie/bowtie-1.1.1.ebuild | 29 +++++++++++++++++++----------
 sci-biology/bowtie/bowtie-2.2.4.ebuild | 23 ++++++++++++-----------
 2 files changed, 31 insertions(+), 21 deletions(-)

diff --git a/sci-biology/bowtie/bowtie-1.1.1.ebuild b/sci-biology/bowtie/bowtie-1.1.1.ebuild
index ad20591..f152518 100644
--- a/sci-biology/bowtie/bowtie-1.1.1.ebuild
+++ b/sci-biology/bowtie/bowtie-1.1.1.ebuild
@@ -4,22 +4,27 @@
 
 EAPI=5
 
-inherit base eutils toolchain-funcs
+inherit eutils toolchain-funcs
 
 DESCRIPTION="An ultrafast memory-efficient short read aligner"
 HOMEPAGE="http://bowtie-bio.sourceforge.net/"
-SRC_URI="mirror://sourceforge/bowtie-bio/bowtie-1.1.1-src.zip"
+SRC_URI="mirror://sourceforge/bowtie-bio/${P}-src.zip"
 
 LICENSE="Artistic"
 SLOT="1"
-IUSE=""
 KEYWORDS="~amd64 ~x86 ~x64-macos"
 
+IUSE="examples"
+
 DEPEND="app-arch/unzip"
 RDEPEND=""
 
 PATCHES=( "${FILESDIR}"/${P}-buildsystem.patch )
 
+src_prepare() {
+	epatch ${PATCHES[@]}
+}
+
 src_compile() {
 	unset CFLAGS
 	emake \
@@ -29,14 +34,18 @@ src_compile() {
 }
 
 src_install() {
-	dobin bowtie bowtie-*
-	exeinto /usr/share/${PN}/scripts
-	doexe scripts/*
+	dobin ${PN} ${PN}-*
 
-	insinto /usr/share/${PN}
-	doins -r genomes indexes
+	exeinto /usr/libexec/${PN}
+	doexe scripts/*
 
-	newman MANUAL bowtie.1
+	newman MANUAL ${PN}
 	dodoc AUTHORS NEWS TUTORIAL doc/README
-	dohtml doc/{manual.html,style.css}
+	docinto html
+	dodoc doc/{manual.html,style.css}
+
+	if use examples; then
+		insinto /usr/share/${PN}
+		doins -r genomes indexes
+	fi
 }

diff --git a/sci-biology/bowtie/bowtie-2.2.4.ebuild b/sci-biology/bowtie/bowtie-2.2.4.ebuild
index 19e0bca..4b518ca 100644
--- a/sci-biology/bowtie/bowtie-2.2.4.ebuild
+++ b/sci-biology/bowtie/bowtie-2.2.4.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit base eutils toolchain-funcs
+inherit eutils toolchain-funcs
 
 DESCRIPTION="An ultrafast memory-efficient short read aligner"
 HOMEPAGE="http://bowtie-bio.sourceforge.net/bowtie2/"
@@ -12,9 +12,11 @@ SRC_URI="mirror://sourceforge/project/${PN}-bio/${PN}2/${PV}/${PN}2-${PV}-source
 
 LICENSE="GPL-3"
 SLOT="2"
-IUSE="examples"
 KEYWORDS="~amd64 ~x86"
 
+IUSE="examples cpu_flags_x86_sse2"
+REQUIRED_USE="cpu_flags_x86_sse2"
+
 RDEPEND="dev-lang/perl"
 DEPEND="${RDEPEND}
 		app-arch/unzip"
@@ -23,16 +25,13 @@ S="${WORKDIR}/${PN}2-${PV}"
 
 PATCHES=( "${FILESDIR}"/${P}-buildsystem.patch )
 
-pkg_pretend() {
-	grep "sse2" /proc/cpuinfo > /dev/null
-	if [[ $? -ne 0 ]] ; then
-		ewarn "Your processor does not support sse2. Bowtie will probably not work on this machine."
-	fi
+src_prepare() {
+	epatch ${PATCHES[@]}
 }
 
 src_compile() {
+	unset CFLAGS
 	emake \
-		CC="$(tc-getCC)" \
 		CXX="$(tc-getCXX)" \
 		EXTRA_FLAGS="${LDFLAGS}" \
 		RELEASE_FLAGS="${CXXFLAGS} -msse2"
@@ -40,12 +39,14 @@ src_compile() {
 
 src_install() {
 	dobin ${PN}2 ${PN}2-*
-	exeinto /usr/share/${PN}2/scripts
+
+	exeinto /usr/libexec/${PN}2
 	doexe scripts/*
 
-	newman MANUAL ${PN}2.1
+	newman MANUAL ${PN}2.2
 	dodoc AUTHORS NEWS TUTORIAL
-	dohtml doc/manual.html doc/style.css
+	docinto html
+	dodoc doc/{manual.html,style.css}
 
 	if use examples; then
 		insinto /usr/share/${PN}2


             reply	other threads:[~2015-02-08 21:07 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-08 21:07 Christoph Junghans [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-03-17 10:37 [gentoo-commits] proj/sci:master commit in: sci-biology/bowtie/ Andrew Ammerlaan
2021-03-16 18:15 Andrew Ammerlaan
2021-03-06 10:02 Andrew Ammerlaan
2020-12-30 22:52 Martin Mokrejs
2020-02-28 23:07 Martin Mokrejs
2020-02-26  8:49 Martin Mokrejs
2019-03-25 11:21 Martin Mokrejs
2019-02-19 11:26 Martin Mokrejs
2019-02-19 11:24 Martin Mokrejs
2015-10-12  6:51 Marius Brehler
2015-10-12  6:51 Marius Brehler
2015-05-01 20:38 Martin Mokrejs
2015-04-27 11:01 Martin Mokrejs
2015-02-08 21:07 Christoph Junghans
2013-09-28 10:57 Justin Lecher
2013-09-27 15:05 Nicolas Bock

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1423254241.60ba53b88755c62f589c3787765bd6f39da78eef.ottxor@gentoo \
    --to=ottxor@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox