summaryrefslogtreecommitdiff
blob: 88191a56dd55e8c91227bfb28091aa30e9599d91 (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/trf/trf-4.0.ebuild,v 1.2 2009/04/23 19:04:13 maekke Exp $

inherit eutils

DESCRIPTION="Tandem Repeats Finder"
HOMEPAGE="http://tandem.bu.edu/trf/trf.html"
SRC_URI="http://tandem.bu.edu/trf/downloads/trf400.linux.exe"

LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="amd64 x86"

DEPEND=""
RDEPEND=""
# gtk? ( x11-libs/gtk+ ) x11-libs/pango[X]

S="${WORKDIR}"

src_unpack() {
	cp "${DISTDIR}/trf400.linux.exe" "${S}"
}

src_install() {
	exeinto /opt/${PN}
	doexe trf400.linux.exe || die
	dosym /opt/${PN}/trf400.linux.exe /usr/bin/trf || die
	# GTK version (http://tandem.bu.edu/trf/downloads/trf400.linuxgtk.exe) has broken linking
	#if use gtk; then
	#	doexe trf400.linuxgtk.exe || die
	#	make_desktop_entry /opt/${PN}/trf400.linuxgtk.exe "Tandem Repeats Finder" || die
	#fi
}