diff options
-rw-r--r-- | sci-chemistry/sparky/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/sparky/sparky-3.113.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sci-chemistry/sparky/ChangeLog b/sci-chemistry/sparky/ChangeLog index 921c4128bc84..5c4e0763d8fa 100644 --- a/sci-chemistry/sparky/ChangeLog +++ b/sci-chemistry/sparky/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/sparky # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sparky/ChangeLog,v 1.10 2008/02/06 09:20:31 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sparky/ChangeLog,v 1.11 2008/02/06 09:21:26 dberkholz Exp $ + + 06 Feb 2008; Donnie Berkholz <dberkholz@gentoo.org>; sparky-3.113.ebuild: + Fix minor syntax issues. 06 Feb 2008; Donnie Berkholz <dberkholz@gentoo.org>; -sparky-3.111.ebuild: (#208859) Drop old version so python 2.3 can leave the tree. diff --git a/sci-chemistry/sparky/sparky-3.113.ebuild b/sci-chemistry/sparky/sparky-3.113.ebuild index c971e8e564b7..016d8c47f8ac 100644 --- a/sci-chemistry/sparky/sparky-3.113.ebuild +++ b/sci-chemistry/sparky/sparky-3.113.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/sparky/sparky-3.113.ebuild,v 1.1 2007/06/06 00:06:09 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sparky/sparky-3.113.ebuild,v 1.2 2008/02/06 09:21:26 dberkholz Exp $ inherit eutils toolchain-funcs multilib python @@ -51,14 +51,14 @@ pkg_setup() { src_unpack() { unpack ${A} - cd ${S} + cd "${S}" - epatch ${FILESDIR}/fix-install.patch + epatch "${FILESDIR}"/fix-install.patch sed -i \ -e "s:^\(set PYTHON[[:space:]]*=\).*:\1 /usr/bin/python${PYVER}:g" \ -e "s:^\(setenv TCLTK_LIB[[:space:]]*\).*:\1 /usr/$(get_libdir):g" \ - ${S}/bin/sparky + "${S}"/bin/sparky } src_compile() { |