diff options
author | 2007-07-04 22:42:11 +0000 | |
---|---|---|
committer | 2007-07-04 22:42:11 +0000 | |
commit | d4eac7896760d66ea1a7ee0305f8e15c477e0272 (patch) | |
tree | 05340a82a7762c9ce986b4f7f057d8ed1acc3b54 /app-emacs | |
parent | Use JAVA_PKG_IUSE and delete bundled classes in src_unpack. (diff) | |
download | gentoo-2-d4eac7896760d66ea1a7ee0305f8e15c477e0272.tar.gz gentoo-2-d4eac7896760d66ea1a7ee0305f8e15c477e0272.tar.bz2 gentoo-2-d4eac7896760d66ea1a7ee0305f8e15c477e0272.zip |
added some quotes; added die comment
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/calc/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/calc/calc-2.02f.ebuild | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/app-emacs/calc/ChangeLog b/app-emacs/calc/ChangeLog index 3cafc7e6983e..54d9ac382435 100644 --- a/app-emacs/calc/ChangeLog +++ b/app-emacs/calc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/calc -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/calc/ChangeLog,v 1.2 2006/12/10 17:43:51 welp Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/calc/ChangeLog,v 1.3 2007/07/04 22:42:11 opfer Exp $ + + 04 Jul 2007; Christian Faulhammer <opfer@gentoo.org> calc-2.02f.ebuild: + added some quotes; added die comment 10 Dec 2006; Peter Weller <welp@gentoo.org> calc-2.02f.ebuild: Added ~amd64 keyword wrt bug #127269 diff --git a/app-emacs/calc/calc-2.02f.ebuild b/app-emacs/calc/calc-2.02f.ebuild index a84dfead8c26..d52cef0a6609 100644 --- a/app-emacs/calc/calc-2.02f.ebuild +++ b/app-emacs/calc/calc-2.02f.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/calc/calc-2.02f.ebuild,v 1.2 2006/12/10 17:43:51 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/calc/calc-2.02f.ebuild,v 1.3 2007/07/04 22:42:11 opfer Exp $ inherit elisp eutils @@ -17,18 +17,18 @@ SITEFILE="50calc-gentoo.el" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-emacs-21.patch - epatch ${FILESDIR}/${P}-info-dir.patch + cd "${S}" + epatch "${FILESDIR}/${P}-emacs-21.patch" + epatch "${FILESDIR}/${P}-info-dir.patch" } src_compile() { - emake compile info || die + emake compile info || die "emake failed" } src_install() { elisp-install ${PN} calc*.el calc*.elc - elisp-site-file-install ${FILESDIR}/${SITEFILE} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" doinfo calc.info* dodoc README README.prev } |