From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 07613139694 for ; Sat, 29 Apr 2017 18:49:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F3FCE0DC6; Sat, 29 Apr 2017 18:49:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3B0C6E0DC6 for ; Sat, 29 Apr 2017 18:49:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 65798340AC7 for ; Sat, 29 Apr 2017 18:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 281557446 for ; Sat, 29 Apr 2017 18:49:19 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1493491754.5a75133ead1e97dbb1ff7853a5fdb23c146f4af2.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/procheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/procheck/procheck-3.5.4-r1.ebuild X-VCS-Directories: sci-chemistry/procheck/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 5a75133ead1e97dbb1ff7853a5fdb23c146f4af2 X-VCS-Branch: master Date: Sat, 29 Apr 2017 18:49:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2a7c4ef1-0f91-4484-957c-46feed665af0 X-Archives-Hash: d0ca1ff91e0da68e28958046424a7d4a commit: 5a75133ead1e97dbb1ff7853a5fdb23c146f4af2 Author: Justin Lecher gentoo org> AuthorDate: Sat Apr 29 18:34:04 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Apr 29 18:49:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a75133e sci-chemistry/procheck: Drop old Package-Manager: Portage-2.3.5, Repoman-2.3.2 Signed-off-by: Justin Lecher gentoo.org> sci-chemistry/procheck/procheck-3.5.4-r1.ebuild | 86 ------------------------- 1 file changed, 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 c93ea1996d6..00000000000 --- 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 -}