1 | # $Id: Portfile 32941 2008-01-15 11:52:40Z ryandesign@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name Eterm |
---|
6 | version 0.9.5 |
---|
7 | revision 1 |
---|
8 | maintainers nomaintainer |
---|
9 | categories x11 |
---|
10 | platforms darwin |
---|
11 | homepage http://www.eterm.org/ |
---|
12 | description Eterm is a color terminal emulator. |
---|
13 | long_description \ |
---|
14 | Eterm is a color vt102 terminal emulator intended as a \ |
---|
15 | replacement for xterm. It is designed with a Freedom of \ |
---|
16 | Choice philosophy, leaving as much power, flexibility, and \ |
---|
17 | freedom as possible in the hands of the user. It is designed \ |
---|
18 | to look good and work well, but takes a feature-rich approach \ |
---|
19 | rather than one of minimalism while still maintaining speed \ |
---|
20 | and efficiency. |
---|
21 | |
---|
22 | master_sites ${homepage}download/ sourceforge |
---|
23 | |
---|
24 | distfiles-append ${name}-bg-${version}${extract.suffix} |
---|
25 | checksums \ |
---|
26 | ${distname}${extract.suffix} \ |
---|
27 | md5 87220a61f763d111a4f5fc88ef9e50f1 \ |
---|
28 | ${name}-bg-${version}${extract.suffix} \ |
---|
29 | md5 e8c6567b13d7fb760bded56c1d1a181d |
---|
30 | |
---|
31 | post-extract { |
---|
32 | foreach dir {bg/tile bg/scale} { |
---|
33 | foreach file [glob -directory ${workpath} ${dir}/*] { |
---|
34 | move -force ${file} ${worksrcpath}/${dir} |
---|
35 | } |
---|
36 | } |
---|
37 | } |
---|
38 | |
---|
39 | #patchfiles patch_command.c |
---|
40 | depends_lib port:libast |
---|
41 | |
---|
42 | configure.env LDDFLAGS="-lXmu" |
---|
43 | configure.cflags-append -DDARWIN |
---|
44 | configure.args \ |
---|
45 | --mandir=${prefix}/share/man \ |
---|
46 | --enable-auto-encoding \ |
---|
47 | --enable-escreen \ |
---|
48 | --enable-escreen-fx \ |
---|
49 | --enable-multi-charset \ |
---|
50 | --enable-name-reporting-escapes \ |
---|
51 | --enable-profile \ |
---|
52 | --enable-trans \ |
---|
53 | --disable-utmp |
---|