|
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 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | name ent |
|---|
| 5 | version 20080128 |
|---|
| 6 | categories math security |
|---|
| 7 | maintainers blb |
|---|
| 8 | description Entropy calculator |
|---|
| 9 | long_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 | |
|---|
| 16 | platforms darwin |
|---|
| 17 | |
|---|
| 18 | homepage http://www.fourmilab.ch/random/ |
|---|
| 19 | master_sites ${homepage} |
|---|
| 20 | distname random |
|---|
| 21 | dist_subdir ${name}/${version} |
|---|
| 22 | use_zip yes |
|---|
| 23 | worksrcdir ent |
|---|
| 24 | |
|---|
| 25 | checksums md5 8104a83af1ea5b280da96c92da18eae4 \ |
|---|
| 26 | sha1 0f2f12dc67d1f02f77776709cf5fc5eee1d1b2e2 \ |
|---|
| 27 | rmd160 b21b8401fdbd2aac189fe4a442a1164b172407f8 |
|---|
| 28 | |
|---|
| 29 | pre-extract { |
|---|
| 30 | extract.post_args "-d ${worksrcpath}" |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | post-extract { |
|---|
| 34 | reinplace "s|^CFLAGS = |CFLAGS = -O3 |" ${worksrcpath}/Makefile |
|---|
| 35 | } |
|---|
| 36 | |
|---|
| 37 | use_configure no |
|---|
| 38 | |
|---|
| 39 | build.target ent |
|---|
| 40 | |
|---|
| 41 | destroot { |
|---|
| 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 | |
|---|
| 49 | universal_variant no |
|---|
| 50 | |
|---|
| 51 | livecheck.check none |
|---|