Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/mkconsole/Portfile

Revision 27859, 1.8 KB (checked in by nox@…, 17 months ago)

mkconsole:

  • Updated to 1.10.
  • Ported to xcode portgroup.
  • Added universal support.
  • Added sha1 and rmd160 checksums and livecheck.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem              1.0
4PortGroup               xcode 1.0
5
6name                    mkconsole
7set my_name             MkConsole
8version                 1.10
9categories              aqua
10maintainers             nomaintainer
11description             application that displays logfiles on your desktop
12
13long_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
28homepage                http://www.mulle-kybernetik.com/software/${my_name}/
29master_sites    ${homepage}Downloads/
30distname                ${name}-${version}-s
31
32checksums               md5 ded91a1455b454ea7f029afef985bc7b \
33                                sha1 4926efca81e5548b09b5ec931904f0640b82af23 \
34                                rmd160 f5e238825e17d7b0964bb5a57bc9b9926614c4ba
35
36worksrcdir              ${my_name}
37
38# Dummy configure to enable universal variant
39use_configure   yes
40configure               {}
41
42if {! [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
52xcode.destroot.settings-append SKIP_INSTALL=no
53
54platform darwin 7 {
55        xcode.configuration "Deployment 10.3"
56}
57
58livecheck.check regex
59livecheck.url   ${homepage}
60livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)-s"
Note: See TracBrowser for help on using the browser.