summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-01-18 11:14:04 +0100
committerDavid Seifert <soap@gentoo.org>2021-01-18 11:14:04 +0100
commit671d9e6161296f782c66fa2953830ae3b39fc3ce (patch)
tree925628898d668e0fc671f240d630a0e0e01505a0 /sci-biology/psipred
parentsci-biology/foldingathome: Remove old (diff)
downloadgentoo-671d9e6161296f782c66fa2953830ae3b39fc3ce.tar.gz
gentoo-671d9e6161296f782c66fa2953830ae3b39fc3ce.tar.bz2
gentoo-671d9e6161296f782c66fa2953830ae3b39fc3ce.zip
sci-biology/psipred: Remove old
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/psipred')
-rw-r--r--sci-biology/psipred/Manifest1
-rw-r--r--sci-biology/psipred/psipred-3.4.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/sci-biology/psipred/Manifest b/sci-biology/psipred/Manifest
index 3dfae4734db6..e16749782317 100644
--- a/sci-biology/psipred/Manifest
+++ b/sci-biology/psipred/Manifest
@@ -1,3 +1,2 @@
-DIST psipred3.4.tar.gz 1102416 BLAKE2B 9797f4181357bb26455253370aca39857c39a2c4bcd521b10a139784e6fd5dc9e14b76c11d99989ac33c3a01fb62807957f9969daa5ac9d928b0b4e83e943743 SHA512 1bc7ac41a213766139324540ba6952538f2890749ecf217d771b4ce59e25231857d38c237ea573674f11a82300750e9a3ff628ec0156864863a9528a144cd919
DIST psipred3.5.tar.gz 1101579 BLAKE2B 2fd86841cbc4bb86045b51f8283550832df8356ee88a6ef2c85281b5810debb23ac53652ddc5ffc9bd6f8e9e7248ce39ccee23400ff8fb49cd05b877d730b553 SHA512 a7b3f7d149f6a29cf0b48bdb900f6983d42af01132d8b54a7be88994d09fcf27dbe57115d41ec9654da6daf6898d5986d08fbdcefa3a4c81af0d358500cd40c2
DIST tdbdata.tar.gz 40241247 BLAKE2B c85a2fde9b29a14e1da27be1a7ea5fe1704f72b66cd79514dd50a3a0d2d8aab9341f7d5075f6d1896cefa54ca83948387b902b38780181777dc505a9a15b4aab SHA512 f96d7ffbb77e129251e27f62b7f099d944bacd14935e03fc52c9f0b262cce1ad477ad43520a93b407951fb8f5dd3ba2e27ff6b5ae8a637ec03bc02f8c7c3990c
diff --git a/sci-biology/psipred/psipred-3.4.ebuild b/sci-biology/psipred/psipred-3.4.ebuild
deleted file mode 100644
index 1fe4c6dced52..000000000000
--- a/sci-biology/psipred/psipred-3.4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils prefix toolchain-funcs versionator
-
-#MY_P="${PN}$(delete_all_version_separators)"
-MY_P="${PN}${PV}"
-
-DESCRIPTION="Protein Secondary Structure Prediction"
-HOMEPAGE="http://bioinf.cs.ucl.ac.uk/psipred/"
-SRC_URI="
- http://bioinf.cs.ucl.ac.uk/downloads/${PN}/${MY_P}.tar.gz
- test? ( http://bioinfadmin.cs.ucl.ac.uk/downloads/psipred/old/data/tdbdata.tar.gz )"
-
-LICENSE="psipred"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- app-shells/tcsh
- sci-biology/ncbi-tools
- sci-biology/update-blastdb"
-DEPEND=""
-
-S="${WORKDIR}"/${PN}
-
-src_prepare() {
- rm -f bin/*
- epatch \
- "${FILESDIR}"/3.1-Makefile.patch \
- "${FILESDIR}"/3.1-path.patch \
- "${FILESDIR}"/3.2-fgets.patch
- eprefixify runpsipred*
- emake -C src clean
-}
-
-src_compile() {
- emake -C src CC=$(tc-getCC)
-}
-
-src_install() {
- emake -C src DESTDIR="${D}" install
- dobin runpsipred* bin/* BLAST+/runpsipred*
- insinto /usr/share/${PN}
- doins -r data
- dodoc README
-}
-
-pkg_postinst() {
- elog "Please use the update_blastdb.pl in order to"
- elog "maintain your own local blastdb"
-}