Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/net/cidr/Portfile

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
3PortSystem          1.0
4name                cidr
5version             2.3.2
6categories          net
7maintainers         blb
8description         RFC 1878 subnet helper
9long_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
16platforms            darwin
17
18# This no longer works, but is here for whatever needs...
19homepage             http://geeksoul.com/robert/cidr.html
20master_sites         http://critical.ch/distfiles/ \
21                     http://energy.critical.ch/distfiles/
22
23checksums            md5 b349453a0196fddd3ffa0af5fbbacf54
24
25use_configure        no
26
27destroot {
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
38livecheck.check     none
Note: See TracBrowser for help on using the browser.