Ticket #16339: Portfile.2

File Portfile.2, 1.2 KB (added by cssdev, 16 years ago)

emacs-app-devel builds from the emacs cvs repository

Line 
1# $Id$
2
3PortSystem 1.0
4
5name            emacs-app-devel
6version         20081001
7
8categories      editors aqua
9maintainers     nomaintainer
10description     The GNU Emacs text editor, recent CVS development version
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 the CVS version\
18   of the code from a recent date, which includes the NextStep (aqua)  \
19   option
20
21platforms       darwin freebsd
22homepage        http://www.gnu.org/software/emacs/emacs.html
23
24fetch.type      cvs
25cvs.root        :pserver:anonymous@cvs.savannah.gnu.org:/sources/emacs
26cvs.date        2008-10-01
27cvs.module      emacs
28worksrcdir      emacs
29
30configure.args  --with-ns
31depends_lib     port:ncurses
32
33destroot {
34        system "cd ${worksrcpath} && make install"     
35        xinstall -m 755 -d ${destroot}/Applications/MacPorts
36        file copy ${worksrcpath}/nextstep/Emacs.app \
37                ${destroot}/Applications/MacPorts
38}