Changeset 99554


Ignore:
Timestamp:
Nov 9, 2012, 10:26:14 PM (11 years ago)
Author:
hum@…
Message:

jubatus: increment revision; fix depends_lib to specify one of the subports of py-msgpack; see #36895.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/jubatus/Portfile

    r99414 r99554  
    66
    77github.setup        jubatus jubatus 0.3.3 jubatus-
     8revision            1
    89
    910categories          devel math textproc
     
    2526
    2627depends_lib         port:pkgconfig \
    27                     port:py-msgpack \
    2828                    port:msgpack \
    2929                    port:pficommon \
     
    3434                    port:mecab-utf8 \
    3535                    port:libzookeeper
     36
     37variant python26 conflicts python27 python31 python32 description {Use python26} {
     38    depends_lib-append      port:py26-msgpack
     39    configure.python        ${prefix}/bin/python2.6
     40}
     41
     42variant python27 conflicts python26 python31 python32 description {Use python27} {
     43    depends_lib-append      port:py27-msgpack
     44    configure.python        ${prefix}/bin/python2.7
     45}
     46
     47variant python31 conflicts python26 python27 python32 description {Use python31} {
     48    depends_lib-append      port:py31-msgpack
     49    configure.python        ${prefix}/bin/python3.1
     50}
     51
     52variant python32 conflicts python26 python27 python31 description {Use python32} {
     53    depends_lib-append      port:py32-msgpack
     54    configure.python        ${prefix}/bin/python3.2
     55}
     56
     57if {![variant_isset python26] && ![variant_isset python27] && ![variant_isset python31] && ![variant_isset python32]} {
     58    default_variants +python27
     59}
    3660
    3761configure.cmd       ./waf configure
Note: See TracChangeset for help on using the changeset viewer.