diff options
author | 2007-10-20 15:55:05 +0000 | |
---|---|---|
committer | 2007-10-20 15:55:05 +0000 | |
commit | 39f6d572b307f33ff87e7d9811ccd3445a4f6e75 (patch) | |
tree | 6c8f10d8a203413656f7679b6b40b80e31c61f0e /sci-mathematics/coq/coq-8.0_p3.ebuild | |
parent | remove old versions (diff) | |
download | historical-39f6d572b307f33ff87e7d9811ccd3445a4f6e75.tar.gz historical-39f6d572b307f33ff87e7d9811ccd3445a4f6e75.tar.bz2 historical-39f6d572b307f33ff87e7d9811ccd3445a4f6e75.zip |
quote directory variables
Package-Manager: portage-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 } |