| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | PortGroup xcode 1.0 |
|---|
| 5 | |
|---|
| 6 | name mkconsole |
|---|
| 7 | set my_name MkConsole |
|---|
| 8 | version 1.10 |
|---|
| 9 | categories aqua |
|---|
| 10 | maintainers nomaintainer |
|---|
| 11 | description application that displays logfiles on your desktop |
|---|
| 12 | |
|---|
| 13 | long_description \ |
|---|
| 14 | This is a little application that displays logfiles on your \ |
|---|
| 15 | desktop. Really useful if you have to monitor servers or you \ |
|---|
| 16 | just want to keep an eye on what's going on on your machine. \ |
|---|
| 17 | In its standard configuration it displays entries from any \ |
|---|
| 18 | number of logfiles interleaved in a single window. Have a \ |
|---|
| 19 | look at some screenshots. MkConsole is smart enough to close \ |
|---|
| 20 | and reopen files every now and then to deal with rotating \ |
|---|
| 21 | files and it transparently works around stale NFS handles \ |
|---|
| 22 | which often exist after your Mac wakes up from sleep and \ |
|---|
| 23 | tries to read from a logfile mounted via NFS. If you don't \ |
|---|
| 24 | mind hacking the user defaults (rather than using the \ |
|---|
| 25 | preferences panel) you can also configure multiple windows \ |
|---|
| 26 | with multiple logifiles each. |
|---|
| 27 | |
|---|
| 28 | homepage http://www.mulle-kybernetik.com/software/${my_name}/ |
|---|
| 29 | master_sites ${homepage}Downloads/ |
|---|
| 30 | distname ${name}-${version}-s |
|---|
| 31 | |
|---|
| 32 | checksums md5 ded91a1455b454ea7f029afef985bc7b \ |
|---|
| 33 | sha1 4926efca81e5548b09b5ec931904f0640b82af23 \ |
|---|
| 34 | rmd160 f5e238825e17d7b0964bb5a57bc9b9926614c4ba |
|---|
| 35 | |
|---|
| 36 | worksrcdir ${my_name} |
|---|
| 37 | |
|---|
| 38 | # Dummy configure to enable universal variant |
|---|
| 39 | use_configure yes |
|---|
| 40 | configure {} |
|---|
| 41 | |
|---|
| 42 | if {! [variant_isset universal]} { |
|---|
| 43 | set arch ${os.arch} |
|---|
| 44 | if {! [string compare ${os.arch} powerpc]} { |
|---|
| 45 | set arch ppc |
|---|
| 46 | } |
|---|
| 47 | |
|---|
| 48 | xcode.build.settings-append ARCHS=${arch} |
|---|
| 49 | xcode.destroot.settings-append ARCHS=${arch} |
|---|
| 50 | } |
|---|
| 51 | |
|---|
| 52 | xcode.destroot.settings-append SKIP_INSTALL=no |
|---|
| 53 | |
|---|
| 54 | platform darwin 7 { |
|---|
| 55 | xcode.configuration "Deployment 10.3" |
|---|
| 56 | } |
|---|
| 57 | |
|---|
| 58 | livecheck.check regex |
|---|
| 59 | livecheck.url ${homepage} |
|---|
| 60 | livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)-s" |
|---|