diff options
author | Mark Bryars <mark@darkskiez.co.uk> | 2012-05-04 22:22:30 +0100 |
---|---|---|
committer | Mark Bryars <mark@darkskiez.co.uk> | 2012-05-04 22:22:30 +0100 |
commit | 0a80168c6a9d87aa21f7ce4eb887fee0d0b5f5cf (patch) | |
tree | 2e16e9a74a6b3c007f92cb80b82e265052076e65 /debian/emacsen-startup.ex | |
parent | e756c7948078bd5109c5b8a0f252851efc4532d6 (diff) | |
download | vyos-opennhrp-0a80168c6a9d87aa21f7ce4eb887fee0d0b5f5cf.tar.gz vyos-opennhrp-0a80168c6a9d87aa21f7ce4eb887fee0d0b5f5cf.zip |
Debian boilerplate with dh_make
dh_make -p opennhrp_0.13 -e debian@darkskiez.co.uk -s
Diffstat (limited to 'debian/emacsen-startup.ex')
-rw-r--r-- | debian/emacsen-startup.ex | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/emacsen-startup.ex b/debian/emacsen-startup.ex new file mode 100644 index 0000000..b68a9ec --- /dev/null +++ b/debian/emacsen-startup.ex @@ -0,0 +1,25 @@ +;; -*-emacs-lisp-*- +;; +;; Emacs startup file, e.g. /etc/emacs/site-start.d/50opennhrp.el +;; for the Debian opennhrp package +;; +;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at> +;; Modified by Dirk Eddelbuettel <edd@debian.org> +;; Adapted for dh-make by Jim Van Zandt <jrv@debian.org> + +;; The opennhrp package follows the Debian/GNU Linux 'emacsen' policy and +;; byte-compiles its elisp files for each 'emacs flavor' (emacs19, +;; xemacs19, emacs20, xemacs20...). The compiled code is then +;; installed in a subdirectory of the respective site-lisp directory. +;; We have to add this to the load-path: +(let ((package-dir (concat "/usr/share/" + (symbol-name flavor) + "/site-lisp/opennhrp"))) +;; If package-dir does not exist, the opennhrp package must have +;; removed but not purged, and we should skip the setup. + (when (file-directory-p package-dir) + (setq load-path (cons package-dir load-path)) + (autoload 'opennhrp-mode "opennhrp-mode" + "Major mode for editing opennhrp files." t) + (add-to-list 'auto-mode-alist '("\\.opennhrp$" . opennhrp-mode)))) + |