diff options
author | 2008-03-17 15:56:08 +0000 | |
---|---|---|
committer | 2008-03-17 15:56:08 +0000 | |
commit | 66d0e0b371aa89606142f0faaf3287ed341a8fb7 (patch) | |
tree | 7c871f3ac52cca5842794e0be6aab8d50d9b6374 /dev-lang/gforth/gforth-0.6.2-r1.ebuild | |
parent | Version bumped. (diff) | |
download | historical-66d0e0b371aa89606142f0faaf3287ed341a8fb7.tar.gz historical-66d0e0b371aa89606142f0faaf3287ed341a8fb7.tar.bz2 historical-66d0e0b371aa89606142f0faaf3287ed341a8fb7.zip |
Fix quoting
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'dev-lang/gforth/gforth-0.6.2-r1.ebuild')
-rw-r--r-- | dev-lang/gforth/gforth-0.6.2-r1.ebuild | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/dev-lang/gforth/gforth-0.6.2-r1.ebuild b/dev-lang/gforth/gforth-0.6.2-r1.ebuild index 77c4008394b4..6f79e7675c68 100644 --- a/dev-lang/gforth/gforth-0.6.2-r1.ebuild +++ b/dev-lang/gforth/gforth-0.6.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gforth/gforth-0.6.2-r1.ebuild,v 1.4 2008/01/11 21:56:14 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gforth/gforth-0.6.2-r1.ebuild,v 1.5 2008/03/17 15:56:08 coldwind Exp $ inherit elisp-common eutils toolchain-funcs flag-o-matic @@ -11,8 +11,7 @@ SRC_URI="http://www.complang.tuwien.ac.at/forth/gforth/${P}.tar.gz LICENSE="GPL-2" SLOT="0" -# KEYWORDS="~amd64 ~ppc ~x86" -KEYWORDS="~ppc ~x86 ~x86-fbsd" # dev-libs/ffcall needs to be keyworded for amd64 +KEYWORDS="~ppc ~x86 ~x86-fbsd" IUSE="emacs force-reg" DEPEND="virtual/libc @@ -39,11 +38,11 @@ EOF src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-ppc-configure-gentoo.patch # Bug #131931 - epatch ${FILESDIR}/gforth.el-gentoo.patch - epatch ${FILESDIR}/${PV}-c-to-forth-to-c.patch - epatch ${DISTDIR}/${PV}-debug.diff + cd "${S}" + epatch "${FILESDIR}"/${PV}-ppc-configure-gentoo.patch # Bug #131931 + epatch "${FILESDIR}"/gforth.el-gentoo.patch + epatch "${FILESDIR}"/${PV}-c-to-forth-to-c.patch + epatch "${DISTDIR}"/${PV}-debug.diff } @@ -62,18 +61,18 @@ src_compile() { src_install() { make \ - libdir=${D}/usr/lib \ - infodir=${D}/usr/share/info \ - mandir=${D}/usr/share/man \ - datadir=${D}/usr/share \ - bindir=${D}/usr/bin \ + libdir="${D}"/usr/lib \ + infodir="${D}"/usr/share/info \ + mandir="${D}"/usr/share/man \ + datadir="${D}"/usr/share \ + bindir="${D}"/usr/bin \ install || die dodoc AUTHORS BUGS ChangeLog NEWS* README* ToDo doc/glossaries.doc doc/*.ps if use emacs; then elisp-install ${PN} *.el *.elc - elisp-site-file-install ${FILESDIR}/${SITEFILE} + elisp-site-file-install "${FILESDIR}"/${SITEFILE} fi } |