blob: 952c5e5e77618e7e2ad63e82e2950cf7b685e01e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/seqan/seqan-1.3.1-r1.ebuild,v 1.3 2013/07/17 07:09:45 jlec Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit cmake-utils flag-o-matic python-single-r1
DESCRIPTION="C++ Sequence Analysis Library"
HOMEPAGE="http://www.seqan.de/"
SRC_URI="http://ftp.seqan.de/releases/${P}.zip"
SLOT="0"
LICENSE="BSD GPL-3"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
sci-biology/samtools"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/${P}/cmake
src_prepare() {
append-cppflags -I"${EPREFIX}/usr/include/bam"
rm -rf "${S}"/../lib/samtools || die
sed \
-e "s:docs:docs/.:g" \
-e "/DESTINATION/s:seqan:doc/${PF}/html:g" \
-i CMakeLists.txt || die
sed \
-e "/DESTINATION/s:bin):share/${PN}):g" \
-i apps/CMakeLists.txt || die
cmake-utils_src_prepare
}
|