|
Revision 43446, 1.3 KB
(checked in by blb@…, 4 weeks ago)
|
|
Disable livecheck on my ports where it doesn't make sense
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | name cidr |
|---|
| 5 | version 2.3.2 |
|---|
| 6 | categories net |
|---|
| 7 | maintainers blb |
|---|
| 8 | description RFC 1878 subnet helper |
|---|
| 9 | long_description \ |
|---|
| 10 | cidr is a utility for determining the network address and broadcast \ |
|---|
| 11 | address for a CIDR subnet. It takes as input an ip address and netmask \ |
|---|
| 12 | in binary, dotted-quad, hexadecimal, decimal or prefix formats. It \ |
|---|
| 13 | outputs the network address, broadcast address, and a count (and \ |
|---|
| 14 | optionally a list) of valid host addresses for the corresponding subnet. |
|---|
| 15 | |
|---|
| 16 | platforms darwin |
|---|
| 17 | |
|---|
| 18 | # This no longer works, but is here for whatever needs... |
|---|
| 19 | homepage http://geeksoul.com/robert/cidr.html |
|---|
| 20 | master_sites http://critical.ch/distfiles/ \ |
|---|
| 21 | http://energy.critical.ch/distfiles/ |
|---|
| 22 | |
|---|
| 23 | checksums md5 b349453a0196fddd3ffa0af5fbbacf54 |
|---|
| 24 | |
|---|
| 25 | use_configure no |
|---|
| 26 | |
|---|
| 27 | destroot { |
|---|
| 28 | xinstall -m 755 -d ${destroot}${prefix}/bin \ |
|---|
| 29 | ${destroot}${prefix}/share/man/man1 \ |
|---|
| 30 | ${destroot}${prefix}/share/doc/${name} |
|---|
| 31 | xinstall -m 755 -W ${worksrcpath} ${name} ${destroot}${prefix}/bin/ |
|---|
| 32 | xinstall -m 644 -W ${worksrcpath} ${name}.1 \ |
|---|
| 33 | ${destroot}${prefix}/share/man/man1/ |
|---|
| 34 | xinstall -m 644 -W ${worksrcpath} README gpl.txt rfc1878.txt \ |
|---|
| 35 | ${destroot}${prefix}/share/doc/${name}/ |
|---|
| 36 | } |
|---|
| 37 | |
|---|
| 38 | livecheck.check none |
|---|