updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / emacs-jdibug-svn / emacs-jdibug-svn.install
blob1775db6b39ad7ca52cd7f05cf507de133fd0ac4a
1 # -*- mode: sh; -*-
3 note () {
4     cat << EOF
6 ==> Don't forget about the java source code convention 
7 ==> (smth like http://stackoverflow.com/questions/3004835/
8 ==> why-do-java-source-files-go-into-a-directory-structure)
9 ==> or the debugger will not be able to find the sources.
11 ==> To start using this package, add the lines below to your .emacs:
13     (add-to-list 'load-path "/usr/share/emacs/site-lisp/jdibug/")
15     ;; Uncomment the lines below if you are using JDEE:
17     ;; (require 'jde)           ; should be before (require 'jdibug)
19     ;; (set-variable 'jde-run-option-debug
20     ;;               (quote ("Server" "Socket" "javadebug" nil "6001" t)))
22     (require 'jdibug)
24     or
26     (add-to-list 'load-path "/usr/share/emacs/site-lisp/jdibug/")
28     (autoload 'jdibug-connect   "jdibug" nil t)
29     (autoload 'jdibug-run       "jdibug" nil t)
31 EOF
34 post_install() {
35     install-info --name=jdibug /usr/share/info/jdibug.info --info-dir=/usr/share/info/
36     note
39 pre_remove() {
40     install-info --remove /usr/share/info/jdibug.info --info-dir=/usr/share/info/
43 post_upgrade() {
44     note