1 | # $Id: Portfile 36333 2008-04-27 10:47:30Z ryandesign@macports.org $ |
---|
2 | PortSystem 1.0 |
---|
3 | name jed |
---|
4 | version 0.99-18 |
---|
5 | categories editors |
---|
6 | maintainers nomaintainer |
---|
7 | description JED is a powerful editor for programmers. |
---|
8 | long_description JED is a powerful editor designed for use by \ |
---|
9 | programmers, its drop-down menu facility make it \ |
---|
10 | one of the friendliest text editors around. Hence \ |
---|
11 | it is ideal for composing simple email messages \ |
---|
12 | as well as editing complex programs in a variety \ |
---|
13 | of computer languages. |
---|
14 | homepage http://www.jedsoft.org/jed/ |
---|
15 | platforms darwin |
---|
16 | master_sites ftp://space.mit.edu/pub/davis/jed/v0.99/ \ |
---|
17 | ftp://space.mit.edu/pub/davis/jed/v0.99/old/ |
---|
18 | use_bzip2 yes |
---|
19 | checksums md5 5378c8e7805854018d9ec5c3cfadf637 \ |
---|
20 | sha1 fa4b3313fdde0466546e36100b0de2d9cc75806d \ |
---|
21 | rmd160 6925b67eab24d6dd2d5b5a975c350cfda515632d |
---|
22 | depends_lib port:slang2 |
---|
23 | patchfiles patch-pty.c \ |
---|
24 | patch-misc.c |
---|
25 | configure.args --mandir=${prefix}/share/man --with-slang=/opt/local |
---|
26 | configure.cppflags-append "-L${prefix}/lib" |
---|
27 | configure.cflags-append "-no-cpp-precomp -flat_namespace -undefined suppress" |
---|
28 | configure.env JED_ROOT=${prefix}/share/jed |
---|
29 | destroot { |
---|
30 | xinstall ${worksrcpath}/src/objs/jed ${destroot}${prefix}/bin |
---|
31 | |
---|
32 | xinstall ${worksrcpath}/doc/manual/jed.1 ${destroot}${prefix}/share/man/man1/ |
---|
33 | |
---|
34 | xinstall -d ${destroot}${prefix}/share/jed/lib |
---|
35 | foreach f [glob -nocomplain [file join ${worksrcpath}/lib *]] { |
---|
36 | if {![file isdirectory $f] } { |
---|
37 | xinstall $f ${destroot}${prefix}/share/jed/lib/ |
---|
38 | } |
---|
39 | } |
---|
40 | |
---|
41 | xinstall -d ${destroot}${prefix}/share/jed/lib/colors |
---|
42 | foreach f [glob -nocomplain [file join ${worksrcpath}/lib/colors *]] { |
---|
43 | if {![file isdirectory $f] } { |
---|
44 | xinstall $f ${destroot}${prefix}/share/jed/lib/colors/ |
---|
45 | } |
---|
46 | } |
---|
47 | |
---|
48 | xinstall -d ${destroot}${prefix}/share/jed/lib/colors/Xjed |
---|
49 | foreach f [glob -nocomplain [file join ${worksrcpath}/lib/colors/Xjed *]] { |
---|
50 | if {![file isdirectory $f] } { |
---|
51 | xinstall $f ${destroot}${prefix}/share/jed/lib/colors/Xjed/ |
---|
52 | } |
---|
53 | } |
---|
54 | } |
---|