Showing posts with label debian. Show all posts
Showing posts with label debian. Show all posts

2010-03-07

emacs.info under Debian

Because of Debian policy documentation covered by FDL license with invariant sections is not allowed in packets repository tree. So it must be installed manually.

You can set INFOPATH env var in your ~/.profile, but I done this in .emacs in such way:

;; Because of Debian policy documentation covered by FDL license ;; with invariant sections is not allowed in packets ;; repository tree. So it must be installed manually. ;; My usual configuration is install user local software ;; into ~/usr DISTDIR. (unless (getenv "INFOPATH") (setenv "INFOPATH" "~/usr/share/info:"))

This code also useful as manually builded software I configure like this:

$ configure --prefix=$HOME/use
so their info documentation automatically become available in Emacs Info system.