Ticket #12162: ent.diff

File ent.diff, 2.5 KB (added by nox@…, 17 years ago)

Updated to 20060616, I've also renamed the doc directory to be a little more consistent with other ports.

  • files/patch-randtest.c

     
    1 --- randtest.c.orig     1998-10-19 14:18:06.000000000 -0600
    2 +++ randtest.c  2005-05-09 21:33:14.000000000 -0600
    3 @@ -22,10 +22,12 @@
    4  
    5  /*  LOG2  --  Calculate log to the base 2  */
    6  
    7 +#ifndef HAVE_LOG2
    8  static double log2(double x)
    9  {
    10      return log2of10 * log10(x);
    11  }
    12 +#endif
    13  
    14  #define MONTEN 6                     /* Bytes used as Monte Carlo
    15                                          co-ordinates.  This should be no more
  • files/patch-Makefile

     
    1 --- Makefile    Tue Oct 20 17:25:24 1998
    2 +++ /Users/blb/build/ent/Makefile       Fri Jul 20 17:35:45 2001
     1--- Makefile.orig       2007-08-12 19:28:02.000000000 +0200
     2+++ Makefile    2007-08-12 19:28:24.000000000 +0200
    33@@ -1,11 +1,11 @@
    44 
    55 #   Unix make file for random test program
     
    1111 
    1212 ent:   ent.o iso8859.o randtest.o
    1313-       cc -O ent.o iso8859.o randtest.o -o ent -lm
    14 +       cc -O3 ent.o iso8859.o randtest.o -o ent 
     14+       cc -O3 ent.o iso8859.o randtest.o -o ent
    1515 
    1616 ent.c: iso8859.h randtest.h
    1717 
  • Portfile

     
    22
    33PortSystem                      1.0
    44name                            ent
    5 version                         19981020
    6 revision                        2
     5version                         20060616
    76categories                      math security
    8 maintainers                     blb@macports.org
     7maintainers                     blb
    98description                     Entropy calculator
    109long_description \
    1110        ent applies various tests to sequences of bytes stored in files and \
     
    2221use_zip                         yes
    2322worksrcdir                      ent
    2423
    25 checksums                       md5 ccaa3fffd4d84d46e9b712d0c88f008c
     24checksums                       md5 9e9ff769c4816ae9f7f402984ae54790 \
     25                                        sha1 e5d91565a3d0a4bd9208a5bec8ff786e734eec55 \
     26                                        rmd160 6cf7f052f450cd2f027a954d52a2beb7e2bdc81f
    2627
    2728pre-extract {
    2829        extract.post_args       "-d ${worksrcpath}"
    2930}
    3031
    31 patchfiles                      patch-Makefile patch-randtest.c
     32patchfiles                      patch-Makefile
    3233
    3334use_configure           no
    3435
     
    3637
    3738destroot {
    3839        xinstall -m 755 -d ${destroot}${prefix}/bin \
    39                 ${destroot}${prefix}/share/doc/${name}
     40                ${destroot}${prefix}/share/doc/${name}-${version}/html
    4041        xinstall -m 755 -W ${worksrcpath} ent ${destroot}${prefix}/bin
    4142        xinstall -m 644 -W ${worksrcpath} ent.html entitle.gif \
    42                 ${destroot}${prefix}/share/doc/${name}
     43                ${destroot}${prefix}/share/doc/${name}-${version}/html
    4344}
    4445
    4546platform darwin {