New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80093


Ignore:
Timestamp:
07/03/11 22:36:43 (4 years ago)
Author:
jeremyhu@…
Message:

asciidoc: Version bump to 8.6.5 and addi python variants

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/textproc/asciidoc/Portfile

    r74207 r80093  
    44 
    55name                            asciidoc 
    6 version                         8.6.3 
     6version                         8.6.5 
    77categories                      textproc 
    88maintainers                     boeyms openmaintainer 
     
    2323master_sites    sourceforge 
    2424 
    25 checksums       md5     1ef39786ee1b4c8a788584e73db2c55a \ 
    26                 sha1    96ac2a3593cd0787627288359d629f8b7e69f03f \ 
    27                 rmd160  4ec1a9e1363ffa68b357455e5db9bda9472f5a1f 
     25checksums           md5     9247724283501ec1cfb27d5eae9e5eaf \ 
     26                    sha1    520cbf7f8b8695a3c033c183cee5802f36d0127e \ 
     27                    rmd160  9828f2a8cc6f0971b4ed829f47fc1b9ecbf1c62c 
    2828 
    29 depends_run             port:python26 \ 
    30                                 port:docbook-xml-4.5 \ 
    31                                 port:fop 
     29depends_run             port:docbook-xml-4.5 \ 
     30                        port:fop 
     31 
     32variant python25 conflicts python26 python27 description {Use python 2.5} { 
     33    configure.python          ${prefix}/bin/python2.5 
     34 
     35    post-destroot { 
     36        reinplace "s:#!/usr/bin/env python:#!${prefix}/bin/python25:" \ 
     37                ${destroot}${prefix}/bin/asciidoc \ 
     38                ${destroot}${prefix}/bin/a2x 
     39    } 
     40} 
     41 
     42variant python26 conflicts python25 python27 description {Use python 2.6} { 
     43    configure.python          ${prefix}/bin/python2.6 
     44 
     45    post-destroot { 
     46        reinplace "s:#!/usr/bin/env python:#!${prefix}/bin/python26:" \ 
     47                ${destroot}${prefix}/bin/asciidoc \ 
     48                ${destroot}${prefix}/bin/a2x 
     49    } 
     50} 
     51 
     52variant python27 conflicts python25 python26 description {Use python 2.7} { 
     53    configure.python          ${prefix}/bin/python2.7 
     54 
     55    post-destroot { 
     56        reinplace "s:#!/usr/bin/env python:#!${prefix}/bin/python27:" \ 
     57                ${destroot}${prefix}/bin/asciidoc \ 
     58                ${destroot}${prefix}/bin/a2x 
     59    } 
     60} 
     61 
     62if {![variant_isset python25] && ![variant_isset python26]} { 
     63    default_variants +python27 
     64} 
    3265 
    3366destroot.target install docs vimdir=${prefix}/share/vim/vimfiles/ 
     
    3770} 
    3871 
    39 post-destroot { 
    40         reinplace "s:#!/usr/bin/env python:#!${prefix}/bin/python2.6:" \ 
    41                 ${destroot}${prefix}/bin/asciidoc \ 
    42                 ${destroot}${prefix}/bin/a2x 
    43 } 
    44  
    4572platform darwin { 
    4673        # Avoid hidden dependency on gsed 
Note: See TracChangeset for help on using the changeset viewer.