Ticket #20640: Portfile

File Portfile, 1.1 KB (added by ranauei@…, 15 years ago)

Tweaked Portfile

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