Ticket #26580: Portfile

File Portfile, 1.2 KB (added by jrjsmrtn, 14 years ago)

py27-zmq @2.0.8_0 Portfile

Line 
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
4PortSystem 1.0
5PortGroup python27 1.0
6
7name                    py27-zmq
8version                 2.0.8
9distname                                pyzmq-${version}
10
11description             Python bindings for ØMQ
12long_description        PyZMQ is a lightweight and super-fast messaging library \
13                        built on top of the ZeroMQ library.
14
15maintainers             openmaintainer jrjsmrtn
16categories              python devel net
17platforms               darwin
18
19homepage                http://github.com/zeromq/pyzmq
20master_sites            http://github.com/downloads/zeromq/pyzmq/
21
22checksums               md5     f70dfbf2b7d67eed011aa63674ee0937 \
23                                                sha1    3cd58e20a2d0cdcd85d6772f484f74b2173639cb \
24                                                rmd160  b8c05353703f7de5f598191a8e82265a8a860ab7
25                   
26depends_lib                             port:zmq
27#depends_build                  port:py27-cython
28
29#build.cmd                              ${python.bin} setup.py
30
31pre-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}