Ticket #30914: dialog-libdialog.diff
File dialog-libdialog.diff, 1.7 KB (added by ryandesign (Ryan Carsten Schmidt), 13 years ago) |
---|
-
Portfile
9 9 license LGPL-2.1 10 10 maintainers jwa 11 11 12 description A utility to create nice user interfaces to shell scripts, \ 13 or other scripting languages, such as perl. 12 description a utility to create nice user interfaces for command-line scripts 14 13 15 long_description Dialog is a utility to create nice user interfaces to shell \ 16 scripts, or other scripting languages, such as perl. It is \ 17 non-graphical (it uses curses) so it can be run in the \ 18 console or an xterm. There are also graphical Xwindows versions. 14 long_description ${name} is ${description}. It is non-graphical (it uses \ 15 curses) so it can be run in the console or an xterm. 19 16 20 17 platforms darwin 21 18 homepage http://www.invisible-island.net/dialog/ … … 35 32 configure.args --mandir=${prefix}/share/man \ 36 33 --with-ncursesw 37 34 35 if {${name} == ${subport}} { 36 37 installs_libs no 38 38 39 post-destroot { 39 40 xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}/examples 40 41 xinstall -m 644 -W ${worksrcpath} CHANGES COPYING README VERSION \ … … 61 62 livecheck.type regex 62 63 livecheck.url [lindex ${master_sites} end] 63 64 livecheck.regex ${name}-(\[0-9.-\]+)${extract.suffix} 65 } else { 66 livecheck.type none 67 } 68 69 subport libdialog { 70 description a library to create nice user interfaces for command-line programs 71 72 long_description ${name} is ${description}. It is non-graphical (it uses \ 73 curses) so it can be used in console or xterm programs. 74 75 destroot.target install-lib 76 }