diff options
author | Mark Wright <gienah@gentoo.org> | 2012-01-08 15:14:11 +0000 |
---|---|---|
committer | Mark Wright <gienah@gentoo.org> | 2012-01-08 15:14:11 +0000 |
commit | 675068230031f7d631a64bc1d17a3865167b0aaa (patch) | |
tree | c50db23d8a86f768905918cce2ad979430f8f2a2 /sci-mathematics/p9m4 | |
parent | Compress the mirrored patch, thanks to xarthisius for reviewing (diff) | |
download | gentoo-2-675068230031f7d631a64bc1d17a3865167b0aaa.tar.gz gentoo-2-675068230031f7d631a64bc1d17a3865167b0aaa.tar.bz2 gentoo-2-675068230031f7d631a64bc1d17a3865167b0aaa.zip |
Thanks to xarthisius for reviewing, move S higher in file and fix missing || on cd
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/p9m4')
-rw-r--r-- | sci-mathematics/p9m4/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/p9m4/p9m4-05.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sci-mathematics/p9m4/ChangeLog b/sci-mathematics/p9m4/ChangeLog index 077f6418e21b..6971388fe166 100644 --- a/sci-mathematics/p9m4/ChangeLog +++ b/sci-mathematics/p9m4/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/p9m4 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/p9m4/ChangeLog,v 1.1 2012/01/08 14:48:52 gienah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/p9m4/ChangeLog,v 1.2 2012/01/08 15:14:11 gienah Exp $ + + 08 Jan 2012; Mark Wright <gienah@gentoo.org> p9m4-05.ebuild: + Thanks to xarthisius for reviewing, move S higher in file and fix missing || + on cd *p9m4-05 (08 Jan 2012) diff --git a/sci-mathematics/p9m4/p9m4-05.ebuild b/sci-mathematics/p9m4/p9m4-05.ebuild index 2f1ef8620859..036f32619da5 100644 --- a/sci-mathematics/p9m4/p9m4-05.ebuild +++ b/sci-mathematics/p9m4/p9m4-05.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/p9m4/p9m4-05.ebuild,v 1.1 2012/01/08 14:48:52 gienah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/p9m4/p9m4-05.ebuild,v 1.2 2012/01/08 15:14:11 gienah Exp $ EAPI="4" PYTHON_DEPEND="2:2.5" @@ -30,6 +30,8 @@ PATCHES=("${DISTDIR}/${MY_PN}05-64bit.patch.bz2" "${FILESDIR}/${MY_PN}05-package.patch" "${FILESDIR}/${MY_PN}05-python2.6.patch") +S="${WORKDIR}/${MY_P}/" + pkg_setup() { python_set_active_version 2 python_pkg_setup @@ -68,7 +70,7 @@ src_install() { dodir /usr/share/${PN}/Images insinto /usr/share/${PN}/Images cd "${S}/Images" \ - die "Could not cd to Images" + || die "Could not cd to Images" doins *.gif *.ico if use examples; then dodir /usr/share/${PN}/Samples @@ -106,5 +108,3 @@ src_install() { pkg_postinst() { distutils_pkg_postinst } - -S="${WORKDIR}/${MY_P}/" |