blob: 8d46197d88c7d420e540cb725211688508ce5921 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit qt4-r2
DESCRIPTION="Display, edit next-gen sequence alignment (BED, BLAST, Eland, mapview processed MAQ, Corona formats)"
HOMEPAGE="http://sourceforge.net/projects/ngsview"
SRC_URI="mirror://sourceforge/projects/${PN}/files/${PN}/${P}.tar.gz"
# http://ngsview.sourceforge.net/manual.html
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
media-gfx/graphviz
sys-libs/db:*
dev-qt/qtcore:4"
RDEPEND="${DEPEND}"
src_configure(){
cd src/trapper || die "Cannot cd to src/trapper"
eqmake4
}
src_compile() {
cd src/trapper || die "Cannot cd to src/trapper"
default
}
|