aboutsummaryrefslogtreecommitdiff
blob: 48617329e3bc38e53456e3ac4139b8b3eb78f83a (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

AUTOTOOLS_AUTORECONF=yes

inherit flag-o-matic eutils perl-module webapp autotools

DESCRIPTION="Analyze restriction enzyme data, draw gen. maps, population genomics"
HOMEPAGE="http://creskolab.uoregon.edu/stacks"
SRC_URI="http://creskolab.uoregon.edu/stacks/source/${P}.tar.gz"

LICENSE="GPL-3"
# SLOT="0" # webapp ebuilds do not set SLOT
KEYWORDS=""
IUSE=""

DEPEND="
	>=sci-libs/htslib-1.3.1
	dev-cpp/sparsehash
	sci-biology/samtools:*
	sci-biology/bamtools
	sci-biology/gmap" # Source code for both GMAP and GSNAP
RDEPEND="${DEPEND}
	dev-lang/perl
	>=dev-lang/php-5
	dev-perl/DBD-mysql"

src_prepare(){
	sed -e 's/SUBDIRS = htslib/SUBDIRS = /' -i Makefile.am || die
	mycppflags=`pkg-config --cflags htslib` # is blocked by bug #601366
	sed -e "s#-I./htslib/htslib#-I${mycppflags}#" -i configure.ac || die
	eautoreconf
}

src_configure() {
	econf --enable-bam --enable-sparsehash
	webapp_src_preinst
	sed -i 's#/usr/lib/libbam.a#-lbam#' Makefile || die
}

src_compile(){
	rm -rf htslib # zap bundled htslib-1.3.1
	emake DESTDIR="${D}"
}

src_install() {
	emake install DESTDIR="${D}"
	mydoc="Changes README TODO INSTALL"
	perl-module_src_install DESTDIR="${D}"
	webapp_src_install || die "Failed running webapp_src_install"
}

pkg_postinst() {
	webapp_pkg_postinst || die "webapp_pkg_postinst failed"
}