Ticket #27391: Portfile

File Portfile, 1.1 KB (added by jking+macports@…, 13 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4name                THE
5version             3.2
6categories          editors
7platforms           darwin
8maintainers         deadpixi.com:jking
9
10description         The Hessling Editor
11long_description    The Hessling Editor (THE) is a text editor modeled after \
12                    the XEDIT editor for IBM mainframe operating systems.
13
14homepage            http://hessling-editor.sourceforge.net/
15master_sites        sourceforge:hessling-editor
16checksums           md5 6cc01734a336812aab383687806af970 \
17                    sha1 7b86275c764efadbfb61c8f7c7507b0db1812db3 \
18                    rmd160 586f5ab46ad483fb9036651b5ca2bfe1f7b8652d
19
20depends_lib         port:rexx   \
21                    port:ncurses
22
23configure.args      --with-ncurses \
24                    --with-curseslibdir=${prefix}/lib \
25                    --with-cursesincdir=${prefix}/include \
26                    --mandir=${prefix}/share/man \
27                    --with-rexx=regina
28
29post-destroot {
30    # Rename nthe to the, since it's the only one installed.
31    file rename ${destroot}${prefix}/bin/nthe ${destroot}${prefix}/bin/the
32}