diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-02-15 11:46:17 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-02-15 11:46:17 +0000 |
commit | ed85418aa11f924215259391a91a459f6d776180 (patch) | |
tree | b20e8c1bc33782c7aa5305269e1ee7fb3fa107fa /sci-chemistry/eden | |
parent | Added b2evolution-1.10.3 and 2.4.0_rc2 in response to request #203367. (diff) | |
download | gentoo-2-ed85418aa11f924215259391a91a459f6d776180.tar.gz gentoo-2-ed85418aa11f924215259391a91a459f6d776180.tar.bz2 gentoo-2-ed85418aa11f924215259391a91a459f6d776180.zip |
Fixed QA issues and added bindist for >=gsl-1.10 (see bug #199451).
(Portage version: 2.1.4.2)
Diffstat (limited to 'sci-chemistry/eden')
-rw-r--r-- | sci-chemistry/eden/ChangeLog | 7 | ||||
-rw-r--r-- | sci-chemistry/eden/eden-5.3.ebuild | 22 |
2 files changed, 17 insertions, 12 deletions
diff --git a/sci-chemistry/eden/ChangeLog b/sci-chemistry/eden/ChangeLog index c066ca988f81..dd741dfc5b38 100644 --- a/sci-chemistry/eden/ChangeLog +++ b/sci-chemistry/eden/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/eden -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/eden/ChangeLog,v 1.8 2007/04/28 16:42:41 swegener Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/eden/ChangeLog,v 1.9 2008/02/15 11:46:17 markusle Exp $ + + 15 Feb 2008; Markus Dittrich <markusle@gentoo.org> eden-5.3.ebuild: + Fixed QA issues and added bindist for >=gsl-1.10 (see bug #199451). 28 Apr 2007; Sven Wegener <swegener@gentoo.org> eden-5.3.ebuild: Drop dodir from dodir/*into combination. diff --git a/sci-chemistry/eden/eden-5.3.ebuild b/sci-chemistry/eden/eden-5.3.ebuild index 00fe0b0a0e90..c9e16f935dc5 100644 --- a/sci-chemistry/eden/eden-5.3.ebuild +++ b/sci-chemistry/eden/eden-5.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/eden/eden-5.3.ebuild,v 1.4 2007/04/28 16:42:41 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/eden/eden-5.3.ebuild,v 1.5 2008/02/15 11:46:17 markusle Exp $ inherit eutils multilib toolchain-funcs @@ -11,9 +11,11 @@ SRC_URI="http://www.edencrystallography.org/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -IUSE="double-precision" +IUSE="double-precision bindist" RDEPEND="=sci-libs/fftw-2* - sci-libs/gsl" + !bindist? ( sci-libs/gsl ) + bindist? ( <sci-libs/gsl-1.10 )" + DEPEND="${RDEPEND}" S="${WORKDIR}/${PN}" SRC="${S}/source" @@ -21,7 +23,7 @@ SRC="${S}/source" src_unpack() { unpack ${A} - epatch ${FILESDIR}/makefile-fixes.patch + epatch "${FILESDIR}"/makefile-fixes.patch sed -i \ -e "s:^\(FFTW.*=\).*:\1 /usr:g" \ @@ -50,7 +52,7 @@ src_install() { dodir /usr/bin make install || die "install failed" - cd ${S} + cd "${S}" exeinto ${EDENHOME}/python doexe python/* @@ -62,19 +64,19 @@ src_install() { dodoc manual/UserManual.pdf -cat << EOF > ${T}/eden +cat << EOF > "${T}"/eden #!/bin/bash export EDENHOME="${EDENHOME}" ${EXE} \$* EOF - dobin ${T}/eden + dobin "${T}"/eden -cat << EOF > ${T}/ieden +cat << EOF > "${T}"/ieden #!/bin/bash export EDENHOME="${EDENHOME}" \${EDENHOME}/python/eden.py EOF - dobin ${T}/ieden + dobin "${T}"/ieden } |