blob: 09ab304a7a3d75f404060b0800ccbda3ec6be0e4 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
MY_PV="${PV//./_}"
MY_P=${PN}_${MY_PV}
DESCRIPTION="Graphical viewer for chromatogram files"
HOMEPAGE="http://www.geospiza.com/finchtv/"
SRC_URI="http://www.geospiza.com/finchtv/download/programs/linux/${MY_P}.tar.gz"
LICENSE="finchtv"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
S="${WORKDIR}/${MY_P}"
QA_PREBUILT="opt/bin/*"
src_install() {
exeinto /opt/bin
doexe finchtv
dodoc ReleaseNotes.txt
docinto html
dodoc -r Help/*
insinto /usr/share/doc/${PN}
doins -r SampleData
newicon Help/media/FinchTV_Mac_App.png ${PN}.png
}
|