Ticket #41292: Portfile-0.9.2.s20150508.diff

File Portfile-0.9.2.s20150508.diff, 2.6 KB (added by Serge3leo (Serguei E. Leontiev), 9 years ago)

patch for use last version vmime

  • Portfile

    old new  
    22# $Id: Portfile 120565 2014-06-01 16:53:49Z cal@macports.org $
    33
    44PortSystem          1.0
     5PortGroup           cmake 1.0
    56
    67name                libvmime
    7 version             0.9.1
    8 revision            2
    9 set branch          [join [lrange [split ${version} .] 0 1] .]
     8version             0.9.2.s20150508
     9revision            1
    1010categories          mail devel
    1111platforms           darwin
    1212maintainers         nomaintainer
     
    2020                    Internet mail messages.
    2121
    2222homepage            http://www.vmime.org/
    23 master_sites        sourceforge:project/vmime/vmime/${branch}
    24 use_bzip2           yes
     23fetch.type          git
     24git.url             https://github.com/kisli/vmime.git
     25git.branch          9df44078b87785f114689fc0b12e084aba903df0
    2526
    26 checksums           rmd160  ebdca890dee9466e63cf43dced40d5527bb3fc4e \
    27                     sha256  3b66cb76d9bc7da80ef1f271cc29d3a183b5ff8b560ef60e85ff006bffb4d1ae
    28 
    29 patchfiles          3878c6b691a66cdc96cb3ab72d534d84a212433f.diff \
    30                     patch-automake-1.13.diff \
    31                     patch-m4-acx_pthread.m4.diff
    32 
    33 depends_build       port:autoconf \
    34                     port:automake \
    35                     port:libtool \
    36                     port:pkgconfig \
    37                     port:scons
     27depends_build       port:doxygen \
     28                    port:cppunit
    3829
    3930depends_lib         port:gnutls \
    4031                    port:libgsasl
    4132
    42 pre-configure {
    43     system -W ${worksrcpath} "${prefix}/bin/scons autotools"
    44 }
    45 
    46 # disable static library because it doesn't seem to get built very well
    47 configure.args      --disable-static
     33configure.args-append ${worksrcpath}
     34    # for test.run disable rpath
     35configure.args-append -DCMAKE_BUILD_WITH_INSTALL_RPATH=OFF
     36configure.args-append -DVMIME_BUILD_DOCUMENTATION:BOOL=YES
     37configure.args-append -DVMIME_BUILD_TESTS:BOOL=YES
     38
     39configure.dir     ${worksrcpath}/build
     40build.dir         ${configure.dir}
     41build.post_args   doc
     42test.run          yes
    4843
    4944post-destroot {
    50     file rename ${destroot}${prefix}/share/doc/vmime \
    51         ${destroot}${prefix}/share/doc/${name}
     45    system "install -d -m 0755 ${destroot}${prefix}/share/doc/${name}/html"
     46    system "find ${configure.dir}/doc/html -type f -exec \
     47             install -m 0444 {} ${destroot}${prefix}/share/doc/${name}/html \\;"
    5248}
    53 
    54 livecheck.type      regex
    55 livecheck.url       http://www.vmime.org/downloads.html
    56 livecheck.regex     ${name}-(\[0-9.\]+)${extract.suffix}