diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-01-22 10:41:58 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-01-22 10:41:58 +0000 |
commit | 1cf3b62a9421f7f63220ad0498961e4be3f3774b (patch) | |
tree | 7ee449aa433b5662d40a24250b24849edf513dfd /app-emacs | |
parent | Add ~x86-fbsd keyword. (diff) | |
download | gentoo-2-1cf3b62a9421f7f63220ad0498961e4be3f3774b.tar.gz gentoo-2-1cf3b62a9421f7f63220ad0498961e4be3f3774b.tar.bz2 gentoo-2-1cf3b62a9421f7f63220ad0498961e4be3f3774b.zip |
corrected initialisation for newer haskell mode, thanks to Ivan <the_greatguru@hotmail.com>, who reported that in bug 163211
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/haskell-mode/ChangeLog | 9 | ||||
-rw-r--r-- | app-emacs/haskell-mode/files/51haskell-mode-gentoo.el | 1 | ||||
-rw-r--r-- | app-emacs/haskell-mode/haskell-mode-2.1.ebuild | 8 |
3 files changed, 12 insertions, 6 deletions
diff --git a/app-emacs/haskell-mode/ChangeLog b/app-emacs/haskell-mode/ChangeLog index ec19b17d20ca..478364dc3c64 100644 --- a/app-emacs/haskell-mode/ChangeLog +++ b/app-emacs/haskell-mode/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/haskell-mode -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/haskell-mode/ChangeLog,v 1.15 2006/04/27 10:28:51 antarus Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/haskell-mode/ChangeLog,v 1.16 2007/01/22 10:41:58 opfer Exp $ + + 22 Jan 2007; Christian Faulhammer <opfer@gentoo.org> + +files/51haskell-mode-gentoo.el, haskell-mode-2.1.ebuild: + corrected initialisation for newer haskell mode, thanks to Ivan + <the_greatguru@hotmail.com>, who reported that in bug 163211 27 Apr 2006; Alec Warner <antarus@gentoo.org> files/digest-haskell-mode-1.44-r1, files/digest-haskell-mode-1.45, diff --git a/app-emacs/haskell-mode/files/51haskell-mode-gentoo.el b/app-emacs/haskell-mode/files/51haskell-mode-gentoo.el new file mode 100644 index 000000000000..4f5f9c83e965 --- /dev/null +++ b/app-emacs/haskell-mode/files/51haskell-mode-gentoo.el @@ -0,0 +1 @@ +(load "/usr/share/emacs/site-lisp/haskell-mode/haskell-site-file") diff --git a/app-emacs/haskell-mode/haskell-mode-2.1.ebuild b/app-emacs/haskell-mode/haskell-mode-2.1.ebuild index 483a9f12b9c6..7308153f396b 100644 --- a/app-emacs/haskell-mode/haskell-mode-2.1.ebuild +++ b/app-emacs/haskell-mode/haskell-mode-2.1.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/haskell-mode/haskell-mode-2.1.ebuild,v 1.1 2006/03/06 06:24:59 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/haskell-mode/haskell-mode-2.1.ebuild,v 1.2 2007/01/22 10:41:58 opfer Exp $ inherit elisp @@ -14,7 +14,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~amd64 ~sparc" -SITEFILE="50${PN}-gentoo.el" +SITEFILE="51${PN}-gentoo.el" # src_unpack() { # unpack ${A} @@ -29,7 +29,7 @@ src_compile() { src_install() { elisp-install ${PN} *.{el,elc} # elisp-site-file-install ${SITEFILE} - elisp-site-file-install ${FILESDIR}/${SITEFILE} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" dohtml *.html *.hs dodoc ChangeLog NEWS insinto /usr/share/doc/${PF} |