diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-02-24 08:23:04 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-02-24 08:23:04 +0000 |
commit | c936e2b556e5af8e5ade47d2070eba1a3c469e07 (patch) | |
tree | a911bc96132931ae7f08ec754cfeb51a71a6d46b /sci-chemistry/oasis | |
parent | Imprted from sci overlay (diff) | |
download | gentoo-2-c936e2b556e5af8e5ade47d2070eba1a3c469e07.tar.gz gentoo-2-c936e2b556e5af8e5ade47d2070eba1a3c469e07.tar.bz2 gentoo-2-c936e2b556e5af8e5ade47d2070eba1a3c469e07.zip |
fix for 306061, thanks ABCD for helping me
(Portage version: 2.2_rc63/cvs/Linux i686)
Diffstat (limited to 'sci-chemistry/oasis')
-rw-r--r-- | sci-chemistry/oasis/ChangeLog | 6 | ||||
-rw-r--r-- | sci-chemistry/oasis/oasis-4.0.ebuild | 16 |
2 files changed, 14 insertions, 8 deletions
diff --git a/sci-chemistry/oasis/ChangeLog b/sci-chemistry/oasis/ChangeLog index 8843b4c37fb1..e0ba9d0dc57e 100644 --- a/sci-chemistry/oasis/ChangeLog +++ b/sci-chemistry/oasis/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-chemistry/oasis # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/oasis/ChangeLog,v 1.1 2010/02/06 11:39:53 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/oasis/ChangeLog,v 1.2 2010/02/24 08:23:04 jlec Exp $ + + 24 Feb 2010; Justin Lecher (jlec) <jlec@j-schmitz.net> oasis-4.0.ebuild: + fperms -> chmod to use bash globs, fixes 306061 + removed circular dependencies *oasis-4.0 (06 Feb 2010) diff --git a/sci-chemistry/oasis/oasis-4.0.ebuild b/sci-chemistry/oasis/oasis-4.0.ebuild index 12e33174f330..970a2c7de578 100644 --- a/sci-chemistry/oasis/oasis-4.0.ebuild +++ b/sci-chemistry/oasis/oasis-4.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/oasis/oasis-4.0.ebuild,v 1.1 2010/02/06 11:39:53 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/oasis/oasis-4.0.ebuild,v 1.2 2010/02/24 08:23:04 jlec Exp $ -EAPI="2" +EAPI="3" inherit eutils multilib toolchain-funcs @@ -18,15 +18,17 @@ LICENSE="ccp4 oasis" IUSE="examples +minimal" RDEPEND=" + ${RDEPEND} sci-chemistry/ccp4-apps sci-chemistry/pymol - sci-libs/ccp4-libs sci-libs/mmdb sci-visualization/gnuplot !minimal? ( - sci-chemistry/solve-resolve-bin - sci-chemistry/arp-warp-bin )" -DEPEND="${RDEPEND}" + sci-chemistry/solve-resolve-bin + sci-chemistry/arp-warp-bin + )" +DEPEND="sci-libs/ccp4-libs" + S="${WORKDIR}"/${MY_P} @@ -51,7 +53,7 @@ src_install() { insinto /usr/$(get_libdir)/${PN}/html doins bin/html/* || die - fperms 755 /usr/$(get_libdir)/${PN}/html/*.{csh,awk} || die + chmod 755 "${ED}"/usr/$(get_libdir)/${PN}/html/*.{csh,awk} || die if use examples; then insinto /usr/share/${PN} |