New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79338


Ignore:
Timestamp:
06/09/11 12:51:57 (4 years ago)
Author:
and.damore@…
Message:

port bitcoin updated, removed gone files (README, locale/), added miniupnpc dependency, fixed makefile wrong path for libminiupnpc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/finance/bitcoin/Portfile

    r79320 r79338  
    44name                bitcoin 
    55categories          finance crypto 
    6 version             0.3.21 
    7 revision            1 
     6version             0.3.22 
    87platforms           darwin 
    98license             MIT 
     
    2019distname            ${name}-${version}-macosx 
    2120use_zip             yes 
    22 checksums           md5     54d55d1aa3030fbdf46e7116855f9513 \ 
    23                     sha1    6962cd9b3267f592866f7114363b207cc0b5d396 \ 
    24                     rmd160  424dcf3f5b1f5e0734da81bdfb6bad72a78757eb 
     21checksums           md5     5daa8d577e5ee081a4eae7cf4845f76c \ 
     22                    sha1    5798efd33d38d530428d22aa4edf37e99731072e \ 
     23                    rmd160  094c90358ed24be23feb66db6c68c6525e6234fc 
    2524 
    2625depends_lib         port:boost \ 
    2726                    port:openssl \ 
    2827                    port:db48 \ 
    29                     port:wxWidgets-devel 
     28                    port:wxWidgets-devel \ 
     29                    port:miniupnpc 
    3030 
    3131supported_archs     x86_64 
     
    3939    reinplace "s|lib/libboost_thread.a|lib/libboost_thread-mt.dylib|" ${makefile} 
    4040    reinplace "s|\\\.a|.dylib|" ${makefile} 
     41    reinplace "s|/miniupnpc/|/lib/|" ${makefile} 
    4142 
    4243    # The QuickTime framework isn't actually needed, and it doesn't exist for 
     
    5253build.target-append bitcoind 
    5354destroot { 
    54     copy ${worksrcpath}/bitcoin ${destroot}${prefix}/bin 
    55     copy ${worksrcpath}/bitcoind ${destroot}${prefix}/bin 
     55    xinstall -m 755 -W ${worksrcpath} \ 
     56        bitcoin bitcoind ${destroot}${prefix}/bin 
    5657 
    5758    set docdir ${destroot}${prefix}/share/doc/${name} 
    5859    xinstall -d ${docdir} 
    59     copy ${worksrcpath}/doc/README ${docdir} 
    60     copy ${worksrcpath}/../license.txt ${docdir} 
     60    xinstall -m 444 -W ${worksrcpath}/.. readme.txt license.txt ${docdir} 
    6161  
    62      file copy ${worksrcpath}/locale \ 
    63             ${destroot}${prefix}/share   
    64   
    65      file copy ${worksrcpath}/../Bitcoin.app \ 
    66         ${destroot}${applications_dir}/ 
     62    file copy ${worksrcpath}/../Bitcoin.app ${destroot}${applications_dir}/ 
    6763} 
    6864 
Note: See TracChangeset for help on using the changeset viewer.