Ticket #28942: Portfile

File Portfile, 1.1 KB (added by gkarabin, 13 years ago)

Update on minicom's portfile to build version 2.5

Line 
1# $Id: Portfile 75257 2011-01-19 06:23:12Z ryandesign@macports.org $
2
3PortSystem 1.0
4
5name            minicom
6version         2.5
7categories      comms
8maintainers     waqar openmaintainer
9platforms       darwin
10description     Menu driven communications program
11long_description  \
12        Minicom is a menu driven communications program. It emulates    \
13        ANSI and VT102 terminals. It has a dialing directory and auto   \
14        zmodem download.
15homepage        http://alioth.debian.org/projects/minicom
16master_sites    http://alioth.debian.org/frs/download.php/3487
17checksums       md5 a5117d4d21e2c9e825edb586ee2fe8d2                    \
18                sha1 442250314de63189b619f8744c0669445e2cdd1d           \
19                rmd160 4131b9ef37d25cf8f77a70fc4b4de32e7896cc23
20
21depends_lib     port:ncurses port:gettext port:kermit
22depends_run     port:lrzsz
23
24use_autoreconf  yes
25
26configure.args  --enable-dfl-port=/dev/cu.modem     \
27                --enable-lock-dir=/tmp              \
28                --infodir=${prefix}/share/info      \
29                --mandir=${prefix}/share/man        \
30                --with-libiconv-prefix=${prefix}/lib
31
32post-destroot   {
33        file delete -force ${destroot}${prefix}/lib/charset.alias       \
34                ${destroot}${prefix}/share/locale/locale.alias
35}