diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2011-03-22 18:10:25 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2011-03-22 18:10:25 +0000 |
commit | 9a3e921b24e9ba2137200954be3ce1d26c1ff8a9 (patch) | |
tree | 9623c2bc9e391ecf4401cc9b06793e7cbf54e460 /sci-chemistry | |
parent | games-action/openlierox: Apply compilation patch (bug #359655) (diff) | |
download | gentoo-2-9a3e921b24e9ba2137200954be3ce1d26c1ff8a9.tar.gz gentoo-2-9a3e921b24e9ba2137200954be3ce1d26c1ff8a9.tar.bz2 gentoo-2-9a3e921b24e9ba2137200954be3ce1d26c1ff8a9.zip |
New manual, added back pkg-config to DEPEND
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/gromacs/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/gromacs/gromacs-4.5.4.ebuild | 18 |
2 files changed, 13 insertions, 10 deletions
diff --git a/sci-chemistry/gromacs/ChangeLog b/sci-chemistry/gromacs/ChangeLog index 81792dee73a0..c4ecbfa896dc 100644 --- a/sci-chemistry/gromacs/ChangeLog +++ b/sci-chemistry/gromacs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/gromacs # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gromacs/ChangeLog,v 1.71 2011/03/21 16:24:52 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gromacs/ChangeLog,v 1.72 2011/03/22 18:10:25 ottxor Exp $ + + 22 Mar 2011; Christoph Junghans <ottxor@gentoo.org> gromacs-4.5.4.ebuild: + New manual, added back pkg-config to DEPEND *gromacs-4.5.4 (21 Mar 2011) diff --git a/sci-chemistry/gromacs/gromacs-4.5.4.ebuild b/sci-chemistry/gromacs/gromacs-4.5.4.ebuild index 73c92ec3e695..1fff4be8c1a3 100644 --- a/sci-chemistry/gromacs/gromacs-4.5.4.ebuild +++ b/sci-chemistry/gromacs/gromacs-4.5.4.ebuild @@ -1,18 +1,17 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gromacs/gromacs-4.5.4.ebuild,v 1.1 2011/03/21 16:24:52 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gromacs/gromacs-4.5.4.ebuild,v 1.2 2011/03/22 18:10:25 ottxor Exp $ EAPI="3" LIBTOOLIZE="true" TEST_PV="4.0.4" -MANUAL_PV="4.5.3" +MANUAL_PV="4.5.4" inherit autotools-utils bash-completion flag-o-matic multilib toolchain-funcs SRC_URI="test? ( ftp://ftp.gromacs.org/pub/tests/gmxtest-${TEST_PV}.tgz ) - doc? ( - http://www.gromacs.org/@api/deki/files/133/=manual-${MANUAL_PV}.pdf -> gromacs-manual-${MANUAL_PV}.pdf )" + doc? ( ftp://ftp.gromacs.org/pub/manual/manual-${MANUAL_PV}.pdf -> gromacs-manual-${MANUAL_PV}.pdf )" if [ "${PV%9999}" != "${PV}" ]; then EGIT_REPO_URI="git://git.gromacs.org/gromacs" @@ -31,8 +30,7 @@ KEYWORDS="~alpha ~amd64 ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="X altivec blas dmalloc doc -double-precision +fftw fkernels +gsl lapack mpi +single-precision sse sse2 static-libs test +threads +xml zsh-completion" -DEPEND=" - app-shells/tcsh +CDEPEND=" X? ( x11-libs/libX11 x11-libs/libSM x11-libs/libICE ) @@ -43,8 +41,10 @@ DEPEND=" lapack? ( virtual/lapack ) mpi? ( virtual/mpi ) xml? ( dev-libs/libxml2:2 )" - -RDEPEND="${DEPEND}" +DEPEND="${CDEPEND} + dev-util/pkgconfig" +RDEPEND="${CDEPEND} + app-shells/tcsh" RESTRICT="test" @@ -128,7 +128,7 @@ src_configure() { local sseflag="x86-64-sse" use x86 && sseflag="ia32-sse" - #a bug in gromacs autotools + #missing flag in autotools (bug #339837) use sse && append-flags -msse use sse2 && append-flags -msse2 |