Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/
Date: Sun, 12 Feb 2017 19:51:58
Message-Id: 1486929110.4cf3fe6662033dee34c33a2ed48246c9cdee6835.jlec@gentoo
1 commit: 4cf3fe6662033dee34c33a2ed48246c9cdee6835
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 19:37:24 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 19:51:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf3fe66
7
8 sci-biology/finchtv: Install icon
9
10 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=608722
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
14
15 sci-biology/finchtv/finchtv-1.3.1-r3.ebuild | 37 +++++++++++++++++++++++++++++
16 1 file changed, 37 insertions(+)
17
18 diff --git a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
19 new file mode 100644
20 index 0000000000..a08703a645
21 --- /dev/null
22 +++ b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
23 @@ -0,0 +1,37 @@
24 +# Copyright 1999-2017 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +# $Id$
27 +
28 +EAPI=6
29 +
30 +inherit eutils
31 +
32 +MY_PV="${PV//./_}"
33 +MY_P=${PN}_${MY_PV}
34 +
35 +DESCRIPTION="Graphical viewer for chromatogram files"
36 +HOMEPAGE="http://www.geospiza.com/finchtv/"
37 +SRC_URI="http://www.geospiza.com/finchtv/download/programs/linux/${MY_P}.tar.gz"
38 +
39 +LICENSE="finchtv"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
42 +IUSE=""
43 +
44 +S="${WORKDIR}/${MY_P}"
45 +
46 +QA_PREBUILT="opt/bin/*"
47 +
48 +src_install() {
49 + exeinto /opt/bin
50 + doexe finchtv
51 +
52 + dodoc ReleaseNotes.txt
53 + docinto html
54 + dodoc -r Help/*
55 +
56 + insinto /usr/share/doc/${PN}
57 + doins -r SampleData
58 +
59 + newicon Help/media/FinchTV_Mac_App.png ${PN}.png
60 +}