Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save textarcana/69098 to your computer and use it in GitHub Desktop.
Save textarcana/69098 to your computer and use it in GitHub Desktop.
Install and configure ECB (the Emacs Code Browser) and its dependencies, on Macports 1.7
;; Emacs Code Browser
;; On Macports 1.7 it appears ECB can't install because it looks for speedbar as a dependency, but that port isnt available as its been rolled into cedet-devel.
;; So with 1.7, I did the following (which appears to work):
;; sudo port install cedet-devel
;; wget http://downloads.sourceforge.net/ecb/ecb-2.32.tar.gz
;; open ecb-2.32.tar.gz
;; mv ecb-2.32 ecb
;; sudo mv ecb /usr/share/emacs/site-lisp/
(load-file "/opt/local/var/macports/software/cedet-devel/1.0pre4_0/opt/local/share/emacs/site-lisp/common/cedet.el")
(add-to-list 'load-path "/usr/share/emacs/site-lisp/ecb-2.32")
(require 'ecb)
(require 'ecb-autoloads)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment