From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 87D3F1381F3 for ; Sun, 16 Jun 2013 15:54:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 355F1E098A; Sun, 16 Jun 2013 15:54:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A4AC8E0980 for ; Sun, 16 Jun 2013 15:53:56 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8184133E3EA for ; Sun, 16 Jun 2013 15:53:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D4043E5461 for ; Sun, 16 Jun 2013 15:53:46 +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: <1371389576.54c8c9253776bf41414c7b0ed390f80c95b5a88b.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/shiftx/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/shiftx/ChangeLog sci-chemistry/shiftx/metadata.xml sci-chemistry/shiftx/shiftx-1.1.ebuild X-VCS-Directories: sci-chemistry/shiftx/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 54c8c9253776bf41414c7b0ed390f80c95b5a88b X-VCS-Branch: master Date: Sun, 16 Jun 2013 15:53:46 +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: afdfa9bf-9362-4970-b0bc-74def8c7d43f X-Archives-Hash: 37d18121ca0eaeae0b719f38d97e4d24 commit: 54c8c9253776bf41414c7b0ed390f80c95b5a88b Author: Justin Lecher gentoo org> AuthorDate: Sun Jun 16 13:32:56 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Jun 16 13:32:56 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=54c8c925 sci-chemistry/shiftx: Bump to EAPI=5 and fix license Package-Manager: portage-2.2.0_alpha180 --- sci-chemistry/shiftx/ChangeLog | 5 ++++- sci-chemistry/shiftx/metadata.xml | 8 ++++---- sci-chemistry/shiftx/shiftx-1.1.ebuild | 24 +++++++++++------------- 3 files changed, 19 insertions(+), 18 deletions(-) diff --git a/sci-chemistry/shiftx/ChangeLog b/sci-chemistry/shiftx/ChangeLog index 3284d50..e588d4f 100644 --- a/sci-chemistry/shiftx/ChangeLog +++ b/sci-chemistry/shiftx/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-chemistry/shiftx -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 16 Jun 2013; Justin Lecher shiftx-1.1.ebuild, metadata.xml: + Bump to EAPI=5 and fix license + *shiftx-1.1 (14 Jun 2009) 14 Jun 2009; Justin Lecher (jlec) diff --git a/sci-chemistry/shiftx/metadata.xml b/sci-chemistry/shiftx/metadata.xml index 0fbe927..d410f15 100644 --- a/sci-chemistry/shiftx/metadata.xml +++ b/sci-chemistry/shiftx/metadata.xml @@ -1,8 +1,8 @@ -sci-chemistry - - sci@gentoo.org - + sci-chemistry + + sci@gentoo.org + diff --git a/sci-chemistry/shiftx/shiftx-1.1.ebuild b/sci-chemistry/shiftx/shiftx-1.1.ebuild index 336c77c..5f26ed3 100644 --- a/sci-chemistry/shiftx/shiftx-1.1.ebuild +++ b/sci-chemistry/shiftx/shiftx-1.1.ebuild @@ -1,33 +1,31 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ +EAPI=5 + inherit base toolchain-funcs -DESCRIPTION="With this form you can predict 1H, 13C and 15N chemical shifts for your favorite protein" -HOMEPAGE="http://redpoll.pharmacy.ualberta.ca/shiftx/" -SRC_URI="http://redpoll.pharmacy.ualberta.ca/download/${PN}/${PN}.tar.gz" +DESCRIPTION="Prediction of 1H, 13C and 15N chemical shifts for proteins" +HOMEPAGE="http://shiftx.wishartlab.com/" +SRC_URI="http://shiftx.wishartlab.com/download/${PN}.tar.gz -> ${P}.tar.gz" -LICENSE="as-is" +LICENSE="all-rights-reserved" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" S="${WORKDIR}"/${PN} -PATCHES=( - "${FILESDIR}"/${PV}-Makefile.patch -) +PATCHES=( "${FILESDIR}"/${PV}-Makefile.patch ) DOCS="README FEATURES *.pdb *.out" src_compile() { - emake \ - CC="$(tc-getCC)" || \ - die "compilation failed" + emake CC="$(tc-getCC)" } src_install() { - dobin ${PN} || die "installationof ${PN} failed" - dodoc ${DOCS} || die + dobin ${PN} + dodoc ${DOCS} }