New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 81816


Ignore:
Timestamp:
08/05/11 03:22:39 (4 years ago)
Author:
nick@…
Message:

Use libevent1 as there are compat problems with libevent 2.X , and prevent clang being used as the compiler. #30553

Location:
trunk/dports/sysutils/beanstalkd
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/sysutils/beanstalkd/Portfile

    r71637 r81816  
    33PortSystem 1.0 
    44 
    5 name                    beanstalkd 
    6 version                 1.4.6 
    7 revision                1 
    8 description             a fast, distributed, in-memory workqueue service 
    9 long_description        \ 
    10         beanstalkd is a fast, distributed, in-memory workqueue service. \ 
    11         Its interface is generic, but is intended for use in reducing the \ 
    12         latency of page views in high-volume web applications by running most \ 
    13         time-consuming tasks asynchronously. 
    14 maintainers             nick 
    15 categories              sysutils 
    16 platforms               darwin 
    17 homepage                http://xph.us/software/beanstalkd/ 
    18 master_sites            http://xph.us/dist/beanstalkd/ 
    19 checksums               md5 3dbbb64a6528efaaaa841ea83b30768e \ 
    20                         sha1 1ee0d731e22aa45fb22e816f6e364913595f6e65 \ 
    21                         rmd160 f1641f15b32731f19a39721d8b37da940a145672 
     5name                    beanstalkd 
     6version                 1.4.6 
     7revision                2 
     8description             a fast, distributed, in-memory workqueue service 
     9long_description        \ 
     10        beanstalkd is a fast, distributed, in-memory workqueue service. \ 
     11        Its interface is generic, but is intended for use in reducing the \ 
     12        latency of page views in high-volume web applications by running most \ 
     13        time-consuming tasks asynchronously. 
     14maintainers             nick 
     15categories              sysutils 
     16platforms               darwin 
     17homepage                http://xph.us/software/beanstalkd/ 
     18master_sites            http://xph.us/dist/beanstalkd/ 
     19checksums               md5 3dbbb64a6528efaaaa841ea83b30768e \ 
     20                        sha1 1ee0d731e22aa45fb22e816f6e364913595f6e65 \ 
     21                        rmd160 f1641f15b32731f19a39721d8b37da940a145672 
    2222 
    23 depends_lib             port:libevent \ 
    24                         port:gmake 
     23patchfiles              patch-configure.diff 
    2524 
    26 configure.args      --prefix=${prefix} \ 
    27                     --with-event=${prefix} 
     25depends_lib             port:libevent1 \ 
     26                        port:gmake 
     27 
     28configure.args          --with-event=${prefix} 
     29 
     30# Version 1.4.6 has problems with clang as the compiler 
     31if {${configure.compiler} == "clang"} { 
     32        configure.compiler gcc-4.2 
     33} 
    2834 
    2935startupitem.create      yes 
Note: See TracChangeset for help on using the changeset viewer.