Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/express/
Date: Wed, 08 Feb 2017 11:36:46
Message-Id: 1486553787.c6ab3d3efa5f0b10bc6070967a2f435156488b32.johu@gentoo
1 commit: c6ab3d3efa5f0b10bc6070967a2f435156488b32
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 8 11:35:54 2017 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 8 11:36:27 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6ab3d3e
7
8 sci-biology/express: Remove 0.9.5 (r0)
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sci-biology/express/express-0.9.5.ebuild | 35 --------------------------------
13 1 file changed, 35 deletions(-)
14
15 diff --git a/sci-biology/express/express-0.9.5.ebuild b/sci-biology/express/express-0.9.5.ebuild
16 deleted file mode 100644
17 index a4fcff4be4..0000000000
18 --- a/sci-biology/express/express-0.9.5.ebuild
19 +++ /dev/null
20 @@ -1,35 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -inherit cmake-utils
28 -
29 -DESCRIPTION="Streaming RNA-Seq Analysis"
30 -HOMEPAGE="http://bio.math.berkeley.edu/eXpress/"
31 -SRC_URI="http://bio.math.berkeley.edu/eXpress/downloads/express-${PV}/express-${PV}-src.tgz"
32 -
33 -LICENSE="Artistic"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -IUSE=""
37 -
38 -DEPEND="
39 - dev-libs/boost
40 - sys-libs/zlib
41 - sci-biology/bamtools"
42 -RDEPEND="${DEPEND}"
43 -
44 -S="${WORKDIR}/${P}-src"
45 -
46 -CMAKE_USE_DIR="${S}/src"
47 -
48 -src_prepare() {
49 - sed \
50 - -e 's|"${CMAKE_CURRENT_SOURCE_DIR}/../bamtools/lib/libbamtools.a"|bamtools|' \
51 - -e '1 a find_package(Boost 1.46 COMPONENTS filesystem program_options thread)' \
52 - -e '1 a find_package(ZLIB)' \
53 - -e '/add_executable/ a include_directories("/usr/include/bamtools")' \
54 - -i src/CMakeLists.txt || die
55 -}