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.
gentoo-overlay/sci-biology/trf/trf-4.04.ebuild

38 lines
910 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/trf/trf-4.04.ebuild,v 1.5 2013/03/04 08:31:57 jlec Exp $
EAPI=4
inherit eutils
MY_P="${PN}404"
DESCRIPTION="Tandem Repeats Finder"
HOMEPAGE="http://tandem.bu.edu/trf/trf.html"
SRC_URI="http://tandem.bu.edu/trf/downloads/${MY_P}.linux.exe"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="amd64 x86"
S="${WORKDIR}"
QA_PREBUILT="opt/${PN}/.*"
src_unpack() {
cp "${DISTDIR}/${MY_P}.linux.exe" "${S}" || die
}
src_install() {
exeinto /opt/${PN}
doexe trf404.linux.exe
dosym /opt/${PN}/${MY_P}.linux.exe /opt/bin/trf
# 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
}