diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-04-06 10:25:18 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-04-06 10:25:18 +0000 |
commit | 4da16e23046da5afbdd5b64c5d527fdaa9721117 (patch) | |
tree | 9732b32de3a21c0c694ffd622b512d950adab801 /app-emacs/delicious | |
parent | ppc stable (diff) | |
download | gentoo-2-4da16e23046da5afbdd5b64c5d527fdaa9721117.tar.gz gentoo-2-4da16e23046da5afbdd5b64c5d527fdaa9721117.tar.bz2 gentoo-2-4da16e23046da5afbdd5b64c5d527fdaa9721117.zip |
used the correct elisp functions, so it has not to be adjust to new releases of Emacs CVS; fixes bug 173444, reported by Hans Halvorson <hhalvors@princeton.edu>, fix provided by Ulrich Mueller <ulm@kph.uni-mainz.de>
(Portage version: 2.1.2.2)
Diffstat (limited to 'app-emacs/delicious')
-rw-r--r-- | app-emacs/delicious/ChangeLog | 8 | ||||
-rw-r--r-- | app-emacs/delicious/delicious-0.3.ebuild | 31 |
2 files changed, 12 insertions, 27 deletions
diff --git a/app-emacs/delicious/ChangeLog b/app-emacs/delicious/ChangeLog index bcfdd6505282..f04fd05eb640 100644 --- a/app-emacs/delicious/ChangeLog +++ b/app-emacs/delicious/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emacs/delicious # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/delicious/ChangeLog,v 1.3 2007/02/06 13:24:37 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/delicious/ChangeLog,v 1.4 2007/04/06 10:25:18 opfer Exp $ + + 06 Apr 2007; Christian Faulhammer <opfer@gentoo.org> delicious-0.3.ebuild: + used the correct elisp functions, so it has not to be adjust to new releases + of Emacs CVS; fixes bug 173444, reported by Hans Halvorson + <hhalvors@princeton.edu>, fix provided by Ulrich Mueller + <ulm@kph.uni-mainz.de> 06 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/app-emacs/delicious/delicious-0.3.ebuild b/app-emacs/delicious/delicious-0.3.ebuild index 4695a3f2c782..d7cc8ae8621c 100644 --- a/app-emacs/delicious/delicious-0.3.ebuild +++ b/app-emacs/delicious/delicious-0.3.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/delicious/delicious-0.3.ebuild,v 1.1 2006/01/22 22:45:16 wrobel Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/delicious/delicious-0.3.ebuild,v 1.2 2007/04/06 10:25:18 opfer Exp $ inherit elisp @@ -14,8 +14,7 @@ KEYWORDS="~x86" SLOT="0" -DEPEND=" -app-editors/emacs-cvs +DEPEND="app-editors/emacs-cvs planner? ( app-emacs/planner )" SITEFILE=50delicious-gentoo.el @@ -23,37 +22,17 @@ SITEFILE=50delicious-gentoo.el S="${WORKDIR}/${PN}-el" src_compile() { - - cd ${S} - - local LOADPATH="/usr/share/emacs/22.0.50/lisp" - LOADPATH="${LOADPATH}:${S}" - - if use planner; then - LOADPATH="${LOADPATH}:/usr/share/emacs/site-lisp/planner" - LOADPATH="${LOADPATH}:/usr/share/emacs/site-lisp/muse" - fi - local FILES="delicioapi.el delicious.el" use planner && FILES="${FILES} planner-delicious.el" - - EMACSLOADPATH="${LOADPATH}" elisp-compile ${FILES} || die + elisp-comp ${FILES} || die "elisp-comp fails" } src_install() { - cd ${S} + cd "${S}" dodoc README elisp-install ${PN} *.el *.elc elisp-site-file-install ${FILESDIR}/${SITEFILE} } - -pkg_postinst() { - elisp-site-regen -} - -pkg_postrm() { - elisp-site-regen -} |