diff options
author | Justin Lecher <jlec@gentoo.org> | 2017-04-29 19:34:04 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2017-04-29 19:49:14 +0100 |
commit | 5a75133ead1e97dbb1ff7853a5fdb23c146f4af2 (patch) | |
tree | 8e49e64643347b6e8245cebc9fb8b2f50c6424b1 /sci-chemistry | |
parent | sys-kernel/aufs-sources: Bump to latest genpatches and linux release (diff) | |
download | gentoo-5a75133ead1e97dbb1ff7853a5fdb23c146f4af2.tar.gz gentoo-5a75133ead1e97dbb1ff7853a5fdb23c146f4af2.tar.bz2 gentoo-5a75133ead1e97dbb1ff7853a5fdb23c146f4af2.zip |
sci-chemistry/procheck: Drop old
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/procheck/procheck-3.5.4-r1.ebuild | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/sci-chemistry/procheck/procheck-3.5.4-r1.ebuild b/sci-chemistry/procheck/procheck-3.5.4-r1.ebuild deleted file mode 100644 index c93ea1996d6f..000000000000 --- a/sci-chemistry/procheck/procheck-3.5.4-r1.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils fortran-2 multilib toolchain-funcs versionator - -DESCRIPTION="Checks the stereochemical quality of a protein structure" -HOMEPAGE="http://www.biochem.ucl.ac.uk/~roman/procheck/procheck.html" -SRC_URI=" - ${P}.tar.gz ${P}-README - doc? ( ${P}-manual.tar.gz )" - -LICENSE="procheck" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -RDEPEND="app-shells/tcsh" -DEPEND="${RDEPEND}" - -RESTRICT="fetch" - -S="${WORKDIR}/${PN}" - -pkg_nofetch() { - elog "Please visit http://www.ebi.ac.uk/thornton-srv/software/PROCHECK/download.html" - elog "And follow the instruction for downloading." - elog "Files should be stored in following way" - elog "${PN}.tar.gz -> ${DISTDIR}/${P}.tar.gz" - elog "README -> ${DISTDIR}/${P}-README" - if use doc; then - elog "manual.tar.gz -> ${DISTDIR}/${P}-manual.tar.gz" - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-ldflags.patch -} - -src_compile() { - emake \ - F77=$(tc-getFC) \ - CC=$(tc-getCC) \ - COPTS="${CFLAGS}" \ - FOPTS="${FFLAGS}" -} - -src_install() { - for i in *.scr; do - newbin ${i} ${i%.scr} - done - - exeinto /usr/$(get_libdir)/${PN}/ - doexe \ - anglen \ - clean \ - rmsdev \ - secstr \ - gfac2pdb \ - pplot \ - bplot \ - tplot \ - mplot \ - vplot \ - viol2pdb \ - wirplot \ - nb - dodoc "${DISTDIR}"/${P}-README - - insinto /usr/$(get_libdir)/${PN}/ - doins *.dat *.prm - newins resdefs.dat resdefs.data - - cat >> "${T}"/30${PN} <<- EOF - prodir="${EPREFIX}/usr/$(get_libdir)/${PN}/" - EOF - - doenvd "${T}"/30${PN} - - if use doc; then - pushd "${WORKDIR}" - dohtml -r manual - popd - fi -} |