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 python 1.0 |
---|
6 | |
---|
7 | name py-pyquery |
---|
8 | version 1.1.1 |
---|
9 | categories-append devel |
---|
10 | platforms darwin |
---|
11 | license BSD |
---|
12 | maintainers gmail.com:larry.velazquez |
---|
13 | description A jQuery-like library for Python. |
---|
14 | long_description Pyquery allows you to make jQuery queries on XML \ |
---|
15 | documents. |
---|
16 | homepage http://pypi.python.org/pypi/pyquery |
---|
17 | |
---|
18 | master_sites http://pypi.python.org/packages/source/p/pyquery |
---|
19 | distname pyquery-${version} |
---|
20 | |
---|
21 | checksums md5 cd2884653df59c4587e57d5f1ed94de5 \ |
---|
22 | sha1 be1d145af0b5c10112f604eff5da35dcf18a0281 \ |
---|
23 | rmd160 e79b002f0ca31107987194ab2ec94b227d969cba |
---|
24 | |
---|
25 | python.versions 25 26 27 31 32 |
---|
26 | python.default_version 27 |
---|
27 | |
---|
28 | if {${subport} != ${name}} { |
---|
29 | depends_build-append port:py${python.version}-distribute |
---|
30 | depends_run-append port:py${python.version}-lxml |
---|
31 | post-destroot { |
---|
32 | set doc ${destroot}${prefix}/share/doc/${subport} |
---|
33 | xinstall -m 755 -d ${doc} |
---|
34 | xinstall -m 644 -W ${worksrcpath} CHANGES.txt README.txt ${doc} |
---|
35 | xinstall -m 644 -W ${worksrcpath}/docs ajax.txt api.txt \ |
---|
36 | attributes.txt css.txt future.txt index.txt \ |
---|
37 | manipulating.txt testing.txt tips.txt traversing.txt ${doc} |
---|
38 | } |
---|
39 | } |
---|