|
Revision 28208, 1.3 KB
(checked in by nox@…, 17 months ago)
|
|
sloth: Restored distfile from upstream.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | PortGroup xcode 1.0 |
|---|
| 5 | |
|---|
| 6 | name sloth |
|---|
| 7 | version 1.3.1 |
|---|
| 8 | categories aqua sysutils |
|---|
| 9 | maintainers nomaintainer |
|---|
| 10 | description Program that displays a list of open files by applications |
|---|
| 11 | |
|---|
| 12 | long_description Sloth is a program that displays a list of all open \ |
|---|
| 13 | files in use by all the applications your user \ |
|---|
| 14 | account is running on the system -- this list \ |
|---|
| 15 | includes IP and Unix sockets, character devices and \ |
|---|
| 16 | directories. This list is presented along with the \ |
|---|
| 17 | names of applications using the file and their \ |
|---|
| 18 | process IDs. |
|---|
| 19 | |
|---|
| 20 | homepage http://www.sveinbjorn.org/sloth |
|---|
| 21 | master_sites http://www.sveinbjorn.org/files/software/sloth |
|---|
| 22 | distname ${name}-${version}.src |
|---|
| 23 | use_zip yes |
|---|
| 24 | |
|---|
| 25 | checksums md5 e17c20da5ac0a661fff8b2060b3fb995 \ |
|---|
| 26 | sha1 88bbc2dbe13ad084c9aabc2d188be4c8cba1597f \ |
|---|
| 27 | rmd160 cae9b1570f34df3b95711c30e64726a6d8307240 |
|---|
| 28 | |
|---|
| 29 | worksrcdir Sloth |
|---|
| 30 | |
|---|
| 31 | # Dummy configure to enable universal variant |
|---|
| 32 | use_configure yes |
|---|
| 33 | configure {} |
|---|
| 34 | |
|---|
| 35 | if {! [variant_isset universal]} { |
|---|
| 36 | set arch ${os.arch} |
|---|
| 37 | if {! [string compare ${arch} powerpc]} { |
|---|
| 38 | set arch ppc |
|---|
| 39 | } |
|---|
| 40 | |
|---|
| 41 | xcode.build.settings-append ARCHS=${arch} |
|---|
| 42 | xcode.destroot.settings-append ARCHS=${arch} |
|---|
| 43 | } |
|---|
| 44 | |
|---|
| 45 | xcode.configuration Release |
|---|
| 46 | |
|---|
| 47 | livecheck.check regex |
|---|
| 48 | livecheck.url ${homepage} |
|---|
| 49 | livecheck.regex "Sloth (\\d+(?:\\.\\d+)*)" |
|---|