diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-10-20 15:55:05 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-10-20 15:55:05 +0000 |
commit | 5a18367e3c1e1f5ca834a8ada0f253eb6cfef836 (patch) | |
tree | daaa94eee2e3dc39b6bc080847323d36513bccbd /sci-mathematics/coq/coq-8.0_p3.ebuild | |
parent | remove old versions (diff) | |
download | gentoo-2-5a18367e3c1e1f5ca834a8ada0f253eb6cfef836.tar.gz gentoo-2-5a18367e3c1e1f5ca834a8ada0f253eb6cfef836.tar.bz2 gentoo-2-5a18367e3c1e1f5ca834a8ada0f253eb6cfef836.zip |
quote directory variables
(Portage version: 2.1.3.15)
Diffstat (limited to 'sci-mathematics/coq/coq-8.0_p3.ebuild')
-rw-r--r-- | sci-mathematics/coq/coq-8.0_p3.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sci-mathematics/coq/coq-8.0_p3.ebuild b/sci-mathematics/coq/coq-8.0_p3.ebuild index ad88033cc4b6..fc6f38255b6c 100644 --- a/sci-mathematics/coq/coq-8.0_p3.ebuild +++ b/sci-mathematics/coq/coq-8.0_p3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/coq-8.0_p3.ebuild,v 1.6 2007/07/02 15:26:46 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/coq-8.0_p3.ebuild,v 1.7 2007/10/20 15:55:05 aballier Exp $ inherit eutils @@ -29,11 +29,11 @@ S="${WORKDIR}/${MY_P}" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" if has_version ">=dev-lang/ocaml-3.09"; then - epatch ${WORKDIR}/${P}-ocaml-3.09.patch + epatch "${WORKDIR}/${P}-ocaml-3.09.patch" fi } @@ -69,11 +69,11 @@ src_compile() { } src_install() { - make COQINSTALLPREFIX=${D} install || die + make COQINSTALLPREFIX="${D}" install || die dodoc README CREDITS CHANGES LICENSE if use translator; then - cd ${WORKDIR}/${MY_P}-translator + cd "${WORKDIR}/${MY_P}-translator" mv translate-v8 coq-translate-v8 dobin coq-translate-v8 if use doc; then @@ -83,6 +83,6 @@ src_install() { if use ide; then insinto /usr/share/applnk/Edutainment/Mathematics - doins ${FILESDIR}/coqide.desktop + doins "${FILESDIR}/coqide.desktop" fi } |