Ticket #20536: Portfile

File Portfile, 1.2 KB (added by drkp (Dan Ports), 15 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4name            emacs-app
5version         23.1
6revision        1
7categories      aqua editors
8maintainers     css
9description     The GNU Emacs text editor (Cocoa version)
10
11long_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
23platforms       darwin
24homepage        http://www.gnu.org/software/emacs/emacs.html
25master_sites    gnu:emacs
26distname        emacs-${version}
27extract.suffix  .tar.bz2
28use_bzip2       yes
29checksums       md5     17f7f0ba68a0432d58fa69d05a2225be
30
31configure.args  --with-ns
32depends_lib     port:ncurses
33use_parallel_build      yes
34
35destroot {
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}