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 0.1 |
---|
9 | distname pyzmq-${version} |
---|
10 | |
---|
11 | description Python bindings for ØMQ |
---|
12 | long_description This package contains Python bindings for ØQM. ØMQ is a \ |
---|
13 | lightweight and fast messaging implementation. |
---|
14 | maintainers openmaintainer jrjsmrtn |
---|
15 | categories python devel net |
---|
16 | platforms darwin |
---|
17 | |
---|
18 | homepage http://github.com/ellisonbg/pyzmq |
---|
19 | master_sites http://github.com/ellisonbg/pyzmq/downloads/ |
---|
20 | |
---|
21 | depends_lib port:zmq |
---|
22 | # should really be: port:zmq+gitmaster |
---|
23 | depends_build port:py26-cython |
---|
24 | |
---|
25 | fetch.type git |
---|
26 | git.url http://github.com/ellisonbg/pyzmq.git |
---|
27 | git.branch origin/master |
---|
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 | } |
---|