| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | name emacs-app |
|---|
| 5 | version 23.1 |
|---|
| 6 | revision 1 |
|---|
| 7 | categories aqua editors |
|---|
| 8 | maintainers css |
|---|
| 9 | description The GNU Emacs text editor (Cocoa version) |
|---|
| 10 | |
|---|
| 11 | long_description \ |
|---|
| 12 | GNU Emacs is a self-documenting, customizable, extensible real-time \ |
|---|
| 13 | display editor. Users new to Emacs will be able to use basic \ |
|---|
| 14 | features fairly rapidly by studying the tutorial and using the \ |
|---|
| 15 | self-documentation features. Emacs also has an extensive \ |
|---|
| 16 | interactive manual browser. It is easily extensible since its \ |
|---|
| 17 | editing commands are written in Lisp. This port uses version 23 \ |
|---|
| 18 | of, which includes the NextStep (aqua) option |
|---|
| 19 | |
|---|
| 20 | # Note that this distribution can support GNUstep as well, but that |
|---|
| 21 | # configuration is untested at this time. |
|---|
| 22 | |
|---|
| 23 | platforms darwin |
|---|
| 24 | homepage http://www.gnu.org/software/emacs/emacs.html |
|---|
| 25 | master_sites gnu:emacs |
|---|
| 26 | distname emacs-${version} |
|---|
| 27 | extract.suffix .tar.bz2 |
|---|
| 28 | use_bzip2 yes |
|---|
| 29 | checksums md5 17f7f0ba68a0432d58fa69d05a2225be |
|---|
| 30 | |
|---|
| 31 | configure.args --with-ns |
|---|
| 32 | depends_lib port:ncurses |
|---|
| 33 | use_parallel_build yes |
|---|
| 34 | |
|---|
| 35 | destroot { |
|---|
| 36 | system "cd ${worksrcpath} && make install" |
|---|
| 37 | xinstall -m 755 -d ${destroot}${applications_dir} |
|---|
| 38 | file copy ${worksrcpath}/nextstep/Emacs.app \ |
|---|
| 39 | ${destroot}${applications_dir} |
|---|
| 40 | } |
|---|