blob: 7b5d1972b3e7c079eb99eaa296e8a79b661fc128 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="gff2ps can render features annotated in GFF file format into PostScript figures"
HOMEPAGE="http://genome.crg.es/software/gfftools/GFF2PS.html"
SRC_URI="ftp://genome.imim.es/pub/gff_tools/gff2ps/gff2ps_v0.98d.gz
http://genome.imim.es/software/gfftools/gff2ps_docs/manual/MANUAL_GFF2PS_v0.96.ps.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"
src_install(){
mv gff2ps_v0.98d gff2ps
dobin gff2ps
dodoc MANUAL_GFF2PS_v0.96.ps
}
|