Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/math/ent/Portfile

Revision 43446, 1.5 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                ent
5version             20080128
6categories          math security
7maintainers         blb
8description         Entropy calculator
9long_description \
10   ent applies various tests to sequences of bytes stored in files and \
11   reports the results of those tests.  The program is useful for those \
12   evaluating pseudorandom number generators for encryption and statistical \
13   sampling applications, compression algorithms, and other applications \
14   where the information density of a file is of interest.
15
16platforms           darwin
17
18homepage            http://www.fourmilab.ch/random/
19master_sites        ${homepage}
20distname            random
21dist_subdir         ${name}/${version}
22use_zip             yes
23worksrcdir          ent
24
25checksums           md5     8104a83af1ea5b280da96c92da18eae4 \
26                    sha1    0f2f12dc67d1f02f77776709cf5fc5eee1d1b2e2 \
27                    rmd160  b21b8401fdbd2aac189fe4a442a1164b172407f8
28
29pre-extract {
30   extract.post_args   "-d ${worksrcpath}"
31}
32
33post-extract {
34   reinplace "s|^CFLAGS = |CFLAGS = -O3 |" ${worksrcpath}/Makefile
35}
36
37use_configure       no
38
39build.target        ent
40
41destroot {
42   xinstall -m 755 -d ${destroot}${prefix}/bin \
43      ${destroot}${prefix}/share/doc/${name}
44   xinstall -m 755 -W ${worksrcpath} ent ${destroot}${prefix}/bin
45   xinstall -m 644 -W ${worksrcpath} ent.html entitle.gif \
46      ${destroot}${prefix}/share/doc/${name}
47}
48
49universal_variant   no
50
51livecheck.check     none
Note: See TracBrowser for help on using the browser.