summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2007-12-14 11:47:05 +0000
committerUlrich Müller <ulm@gentoo.org>2007-12-14 11:47:05 +0000
commit118697151d4c72ff72dce4896523ed1956be56f6 (patch)
tree1119dc06b9ac7158e5b857919b1664d0a7f9ea7a /app-emacs/inform-mode
parentVersion bump to 0.5.15 (diff)
downloadhistorical-118697151d4c72ff72dce4896523ed1956be56f6.tar.gz
historical-118697151d4c72ff72dce4896523ed1956be56f6.tar.bz2
historical-118697151d4c72ff72dce4896523ed1956be56f6.zip
Update HOMEPAGE. Use add-to-list for auto-mode-alist in site-init file.
Package-Manager: portage-2.1.4_rc9
Diffstat (limited to 'app-emacs/inform-mode')
-rw-r--r--app-emacs/inform-mode/ChangeLog6
-rw-r--r--app-emacs/inform-mode/files/50inform-mode-gentoo.el8
-rw-r--r--app-emacs/inform-mode/inform-mode-1.5.8.ebuild14
3 files changed, 14 insertions, 14 deletions
diff --git a/app-emacs/inform-mode/ChangeLog b/app-emacs/inform-mode/ChangeLog
index 92fac47bb1a8..6529c39ae18c 100644
--- a/app-emacs/inform-mode/ChangeLog
+++ b/app-emacs/inform-mode/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-emacs/inform-mode
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/inform-mode/ChangeLog,v 1.11 2007/03/07 10:00:30 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/inform-mode/ChangeLog,v 1.12 2007/12/14 11:47:04 ulm Exp $
+
+ 14 Dec 2007; Ulrich Mueller <ulm@gentoo.org>
+ files/50inform-mode-gentoo.el, inform-mode-1.5.8.ebuild:
+ Update HOMEPAGE. Use add-to-list for auto-mode-alist in site-init file.
07 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
files/50inform-mode-gentoo.el:
diff --git a/app-emacs/inform-mode/files/50inform-mode-gentoo.el b/app-emacs/inform-mode/files/50inform-mode-gentoo.el
index f73f9efb7d1e..56bb1ffb965e 100644
--- a/app-emacs/inform-mode/files/50inform-mode-gentoo.el
+++ b/app-emacs/inform-mode/files/50inform-mode-gentoo.el
@@ -2,11 +2,7 @@
;;; inform-mode site-lisp configuration
(add-to-list 'load-path "@SITELISP@")
-
(autoload 'inform-mode "inform-mode" "Inform editing mode." t)
(autoload 'inform-maybe-mode "inform-mode" "Inform/C header editing mode.")
-
-(setq auto-mode-alist
- (append '(("\\.h\\'" . inform-maybe-mode)
- ("\\.inf\\'" . inform-mode))
- auto-mode-alist))
+(add-to-list 'auto-mode-alist '("\\.h\\'" . inform-maybe-mode))
+(add-to-list 'auto-mode-alist '("\\.inf\\'" . inform-mode))
diff --git a/app-emacs/inform-mode/inform-mode-1.5.8.ebuild b/app-emacs/inform-mode/inform-mode-1.5.8.ebuild
index b6b01067ee59..7bffa69d5fce 100644
--- a/app-emacs/inform-mode/inform-mode-1.5.8.ebuild
+++ b/app-emacs/inform-mode/inform-mode-1.5.8.ebuild
@@ -1,19 +1,19 @@
-# Copyright 1999-2005 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/inform-mode/inform-mode-1.5.8.ebuild,v 1.13 2005/07/01 19:35:20 mkennedy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/inform-mode/inform-mode-1.5.8.ebuild,v 1.14 2007/12/14 11:47:04 ulm Exp $
inherit elisp
-IUSE=""
-
-DESCRIPTION="A major mode for editing Inform programs."
-HOMEPAGE="http://rupert-lane.org/inform-mode/"
+DESCRIPTION="A major mode for editing Inform programs"
+HOMEPAGE="http://web.archive.org/web/20061205053408/http://rupert-lane.org/inform-mode/
+ http://www.emacswiki.org/cgi-bin/emacs-en/InformMode"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc ~amd64"
+IUSE=""
S="${WORKDIR}/${PN}"
-SITEFILE='50inform-mode-gentoo.el'
+SITEFILE=50${PN}-gentoo.el