| 1 | # $Id: Portfile 50980 2009-05-14 19:41:55Z and.damore@macports.org $ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name minicom |
|---|
| 6 | version 2.3 |
|---|
| 7 | revision 1 |
|---|
| 8 | categories comms |
|---|
| 9 | maintainers waqar |
|---|
| 10 | platforms darwin |
|---|
| 11 | description Menu driven communications program |
|---|
| 12 | long_description \ |
|---|
| 13 | Minicom is a menu driven communications program. It emulates \ |
|---|
| 14 | ANSI and VT102 terminals. It has a dialing directory and auto \ |
|---|
| 15 | zmodem download. |
|---|
| 16 | homepage http://alioth.debian.org/projects/minicom |
|---|
| 17 | master_sites http://alioth.debian.org/download.php/2332 |
|---|
| 18 | checksums md5 0ebe7a91898384ca906787cc4e2c3f25 \ |
|---|
| 19 | sha1 407c4898a882f14639f30b394805382df0585b50 \ |
|---|
| 20 | rmd160 562995c04e6ff912d6bcab77b5007eac8950793a |
|---|
| 21 | #depends_run port:lrzsz port:kermit |
|---|
| 22 | |
|---|
| 23 | configure.args --enable-dfl-port=/dev/cu.modem \ |
|---|
| 24 | --enable-lock-dir=/var/tmp \ |
|---|
| 25 | --infodir=${prefix}/share/info \ |
|---|
| 26 | --mandir=${prefix}/share/man |
|---|
| 27 | |
|---|
| 28 | variant kermit { |
|---|
| 29 | depends_run-append port:kermit |
|---|
| 30 | configure.args-append --enable-kermit=${prefix}/bin/kermit |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | variant lrzsz { |
|---|
| 34 | depends_run-append port:lrzsz |
|---|
| 35 | } |
|---|
| 36 | |
|---|
| 37 | post-destroot { |
|---|
| 38 | file delete -force ${destroot}${prefix}/lib/charset.alias \ |
|---|
| 39 | ${destroot}${prefix}/share/locale/locale.alias |
|---|
| 40 | } |
|---|