From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PoIGU-0001II-Vv for garchives@archives.gentoo.org; Sat, 12 Feb 2011 16:24:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEF5CE096A; Sat, 12 Feb 2011 16:23:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7BAC2E096A for ; Sat, 12 Feb 2011 16:23:58 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED8031B4141 for ; Sat, 12 Feb 2011 16:23:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 27F758006A for ; Sat, 12 Feb 2011 16:23:57 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <5aebb187440378b39048cf8a0ac4f7b19ad14aa9.kleiner_otti@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/votca-csg/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/votca-csg/votca-csg-1.0.1.ebuild X-VCS-Directories: sci-chemistry/votca-csg/ X-VCS-Committer: kleiner_otti X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 5aebb187440378b39048cf8a0ac4f7b19ad14aa9 Date: Sat, 12 Feb 2011 16:23:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: b6a7e9e1a5f44f4cfa22d0f923181aed commit: 5aebb187440378b39048cf8a0ac4f7b19ad14aa9 Author: Christoph Junghans gentoo org> AuthorDate: Sat Feb 12 16:34:33 2011 +0000 Commit: Christoph Junghans gmx de> CommitDate: Sat Feb 12 16:34:33 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D5aebb187 [sci-chemistry/votca-csg] 1.0.1 moved to the main tree (Portage version: 2.1.9.25/git/Linux i686, signed Manifest commit with ke= y C2000586) --- sci-chemistry/votca-csg/votca-csg-1.0.1.ebuild | 80 ------------------= ------ 1 files changed, 0 insertions(+), 80 deletions(-) diff --git a/sci-chemistry/votca-csg/votca-csg-1.0.1.ebuild b/sci-chemist= ry/votca-csg/votca-csg-1.0.1.ebuild deleted file mode 100644 index 21fdec3..0000000 --- a/sci-chemistry/votca-csg/votca-csg-1.0.1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=3D"3" - -inherit autotools bash-completion - -if [ "${PV}" !=3D "9999" ]; then - SRC_URI=3D"http://votca.googlecode.com/files/${PF}.tar.gz" -else - SRC_URI=3D"" - inherit mercurial - EHG_REPO_URI=3D"https://csg.votca.googlecode.com/hg" - S=3D"${WORKDIR}/${EHG_REPO_URI##*/}" -fi - -DESCRIPTION=3D"Votca coarse-graining engine" -HOMEPAGE=3D"http://www.votca.org" - -LICENSE=3D"Apache-2.0" -SLOT=3D"0" -KEYWORDS=3D"~x86 ~amd64" -IUSE=3D"doc +gromacs static-libs" - -RDEPEND=3D"=3Dsci-libs/votca-tools-${PV} - gromacs? ( >=3Dsci-chemistry/gromacs-4.0.7-r5 =3Dapp-text/txt2tags-2.5 )" - -DEPEND=3D"${RDEPEND} - dev-util/pkgconfig" - -src_prepare() { - #from bootstrap.sh - [ -z "${PV##*9999}" ] && \ - emake -C share/scripts/inverse -f Makefile.am.in Makefile.am - - eautoreconf || die "eautoreconf failed" -} - -src_configure() { - local myconf=3D"--disable-la-files --disable-rc-files" - - if use gromacs; then - #prefer gromacs double-precision if it is there - if has_version sci-chemistry/gromacs[double-precision]; then - myconf=3D"${myconf} --with-libgmx=3Dlibgmx_d" - else - myconf=3D"${myconf} --with-libgmx=3Dlibgmx" - fi - else - myconf=3D"${myconf} --without-libgmx" - fi - - myconf=3D"${myconf} $(use_enable static-libs static)" - - econf ${myconf} || die "econf failed" -} - -src_install() { - emake install DESTDIR=3D"${D}" || die "emake install failed" - dodoc README NOTICE - if use doc; then - emake CHANGELOG || die "emake CHANGELOG failed" - dodoc CHANGELOG - fi - - dobashcompletion scripts/csg-completion.bash ${PN} -} - -pkg_postinst() { - elog - elog "Please read and cite:" - elog "VOTCA, J. Chem. Theory Comput. 5, 3211 (2009). " - elog "http://dx.doi.org/10.1021/ct900369w" - elog - bash-completion_pkg_postinst -}