diff -Nru emacs-app-orig/Portfile emacs-app/Portfile
old
|
new
|
|
4 | 4 | PortSystem 1.0 |
5 | 5 | |
6 | 6 | name emacs-app |
7 | | version 23.2 |
8 | | revision 3 |
| 7 | version 23.3 |
| 8 | revision 0 |
9 | 9 | categories aqua editors |
10 | 10 | maintainers css |
11 | 11 | description The GNU Emacs text editor (Cocoa version) |
… |
… |
|
21 | 21 | # configuration is untested at this time. |
22 | 22 | |
23 | 23 | platforms darwin |
24 | | homepage http://emacs-app.sourceforge.net/ |
| 24 | homepage http://www.gnu.org/software/emacs/ |
25 | 25 | master_sites gnu:emacs |
26 | 26 | distname emacs-${version} |
27 | 27 | use_bzip2 yes |
28 | | checksums md5 057a0379f2f6b85fb114d8c723c79ce2 \ |
29 | | sha1 b46e6b33e1f5e24ede0ecd0d8703b64847c83946 \ |
30 | | rmd160 b7441be0a32e78e02f108dcb3b09b531c6849d95 |
| 28 | checksums md5 a673c163b4714362b94ff6096e4d784a \ |
| 29 | sha1 de2c924655f0f4e012cc119840cd341a1d40e32c \ |
| 30 | rmd160 bddaba77f543b41a91d133c6700078a9b41b0bf8 |
31 | 31 | |
32 | 32 | depends_lib port:ncurses |
33 | 33 | use_parallel_build yes |
34 | 34 | |
35 | 35 | configure.args --with-ns --without-x --without-dbus |
36 | 36 | |
37 | | patchfiles patch-ns-win.el.diff \ |
38 | | patch-src_unexmacosx.c.diff |
| 37 | patchfiles patch-src_unexmacosx.c.diff |
39 | 38 | |
40 | 39 | variant fullscreen description {Add fullscreen patch from http://gist.github.com/291150 as mentioned in http://www.sanityinc.com/full-screen-support-for-cocoa-emacs-on-osx} { |
41 | 40 | patchfiles-append patch-fullscreen.diff |
diff -Nru emacs-app-orig/files/patch-ns-win.el.diff emacs-app/files/patch-ns-win.el.diff
old
|
new
|
|
1 | | --- lisp/term/ns-win.el.orig 2010-12-12 23:31:04.000000000 -0500 |
2 | | +++ lisp/term/ns-win.el 2010-12-12 23:32:00.000000000 -0500 |
3 | | @@ -785,7 +785,7 @@ |
4 | | "Do a `find-file' with the `ns-input-file' as argument." |
5 | | (interactive) |
6 | | (let ((f) (file) (bufwin1) (bufwin2)) |
7 | | - (setq f (file-truename (car ns-input-file))) |
8 | | + (setq f (file-truename (expand-file-name (car ns-input-file) command-line-default-directory))) |
9 | | (setq ns-input-file (cdr ns-input-file)) |
10 | | (setq file (find-file-noselect f)) |
11 | | (setq bufwin1 (get-buffer-window file 'visible)) |
diff -Nru emacs-app-orig/files/site-start.el emacs-app/files/site-start.el
old
|
new
|
|
1 | 1 | (setq load-path (cons "__PREFIX__/share/emacs/site-lisp" load-path)) |
| 2 | (if (file-readable-p "__PREFIX__/share/emacs/site-lisp/subdirs.el") |
| 3 | (let ((default-directory "__PREFIX__/share/emacs/site-lisp")) |
| 4 | (load "__PREFIX__/share/emacs/site-lisp/subdirs.el"))) |