diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2009-02-27 00:12:51 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2009-02-27 00:12:51 +0000 |
commit | f10e59984249be30c5b0d7360c012602d8106d15 (patch) | |
tree | 8173ca18658563596de8ed278a27c75a12068949 /sci-biology/trf/trf-4.0.ebuild | |
parent | Import from Science overlay, bug 253364 (diff) | |
download | historical-f10e59984249be30c5b0d7360c012602d8106d15.tar.gz historical-f10e59984249be30c5b0d7360c012602d8106d15.tar.bz2 historical-f10e59984249be30c5b0d7360c012602d8106d15.zip |
Import from Science overlay
Package-Manager: portage-2.2_rc20/cvs/Linux 2.6.26-gentoo-r4 x86_64
Diffstat (limited to 'sci-biology/trf/trf-4.0.ebuild')
-rw-r--r-- | sci-biology/trf/trf-4.0.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sci-biology/trf/trf-4.0.ebuild b/sci-biology/trf/trf-4.0.ebuild new file mode 100644 index 000000000000..a76010b6257a --- /dev/null +++ b/sci-biology/trf/trf-4.0.ebuild @@ -0,0 +1,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.1 2009/02/27 00:11:33 weaver 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 +} |