1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-zmq |
---|
8 | version 2.0.8 |
---|
9 | distname pyzmq-${version} |
---|
10 | |
---|
11 | description Python bindings for ØMQ |
---|
12 | long_description PyZMQ is a lightweight and super-fast messaging library \ |
---|
13 | built on top of the ZeroMQ library. |
---|
14 | |
---|
15 | maintainers openmaintainer jrjsmrtn |
---|
16 | categories python devel net |
---|
17 | platforms darwin |
---|
18 | |
---|
19 | homepage http://github.com/zeromq/pyzmq |
---|
20 | master_sites http://github.com/downloads/zeromq/pyzmq/ |
---|
21 | |
---|
22 | checksums md5 f70dfbf2b7d67eed011aa63674ee0937 \ |
---|
23 | sha1 3cd58e20a2d0cdcd85d6772f484f74b2173639cb \ |
---|
24 | rmd160 b8c05353703f7de5f598191a8e82265a8a860ab7 |
---|
25 | |
---|
26 | depends_lib port:zmq |
---|
27 | #depends_build port:py26-cython |
---|
28 | |
---|
29 | #build.cmd ${python.bin} setup.py |
---|
30 | |
---|
31 | pre-build { |
---|
32 | set setup_cfg ${worksrcpath}/setup.cfg |
---|
33 | file copy ${worksrcpath}/setup.cfg.template ${setup_cfg} |
---|
34 | reinplace "s|/usr/local/zeromq-dev|${prefix}|g" ${setup_cfg} |
---|
35 | } |
---|