1 | # $Id: Portfile 22478 2007-03-02 05:16:40Z pipping@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name nano |
---|
5 | version 2.0.3 |
---|
6 | categories editors |
---|
7 | maintainers nomaintainer@macports.org |
---|
8 | description Nano's ANOther editor - enhanced free Pico Clone |
---|
9 | long_description \ |
---|
10 | GNU nano is a small and friendly text editor. Besides basic text \ |
---|
11 | editing, nano offers many extra features like an interactive search \ |
---|
12 | and replace, goto line number, auto-indentation, feature toggles, \ |
---|
13 | internationalization support, and filename tab completion. |
---|
14 | homepage http://www.nano-editor.org/ |
---|
15 | platforms darwin freebsd |
---|
16 | master_sites http://www.nano-editor.org/dist/v2.0/ |
---|
17 | checksums md5 b8e2c1450b36d21f9a82509da3e4d9b1 \ |
---|
18 | sha1 5012a57c3aeabd6f798f5c767970ba1d260854c4 \ |
---|
19 | rmd160 8325e70c957ef84cae7a47ac78d893095e5128d2 |
---|
20 | depends_lib port:ncurses port:svk |
---|
21 | configure.args --infodir=\\\${prefix}/share/info \ |
---|
22 | --mandir=\\\${prefix}/share/man \ |
---|
23 | --enable-all \ |
---|
24 | --disable-nls |
---|
25 | configure.env CPPFLAGS="-I${prefix}/include" LDFLAGS="-L${prefix}/lib" |
---|
26 | destroot.target install-strip |
---|
27 | |
---|
28 | post-destroot { |
---|
29 | file delete -force ${destroot}${prefix}/share/info/dir |
---|
30 | } |
---|