You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
687 B
35 lines
687 B
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Tools for Short Read FASTA/FASTQ file processing"
|
|
HOMEPAGE="http://hannonlab.cshl.edu/fastx_toolkit"
|
|
SRC_URI="https://github.com/agordon/fastx_toolkit/releases/download/${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="AGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
sci-biology/libgtextutils
|
|
virtual/pkgconfig"
|
|
RDEPEND="
|
|
dev-perl/PerlIO-gzip
|
|
dev-perl/GDGraph
|
|
sci-biology/libgtextutils:=
|
|
sci-visualization/gnuplot"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-fix-build-system.patch
|
|
"${FILESDIR}"/${P}-gcc7.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|