1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | name py25-gnupg |
---|
7 | version 0.3.2 |
---|
8 | categories python |
---|
9 | platforms darwin |
---|
10 | maintainers gmail.com:ramercer openmaintainer |
---|
11 | |
---|
12 | description GnuPGInterface is a Python module to interface with GnuPG |
---|
13 | long_description GnuPGInterface is a Python module to interface with \ |
---|
14 | GnuPG. It concentrates on interacting with GnuPG via \ |
---|
15 | filehandles, providing access to control GnuPG via versatile and \ |
---|
16 | extensible means. |
---|
17 | |
---|
18 | homepage http://py-gnupg.sourceforge.net/ |
---|
19 | master_sites sourceforge:py-gnupg |
---|
20 | distname GnuPGInterface-${version} |
---|
21 | |
---|
22 | checksums md5 d4627d83446f96bd8c22f8d15db3f7c2 |
---|
23 | |
---|
24 | |
---|
25 | depends_lib-append port:gnupg |
---|
26 | |
---|
27 | patchfiles patch-setup.py.diff |
---|
28 | |
---|
29 | post-patch { |
---|
30 | reinplace "s|VERSION|${version}|g" ${worksrcpath}/setup.py |
---|
31 | } |
---|
32 | |
---|
33 | test.run yes |
---|
34 | test.cmd ${python.bin} unittests.py |
---|
35 | test.target |
---|
36 | |
---|
37 | post-destroot { |
---|
38 | xinstall -m 644 -W ${worksrcpath} COPYING ChangeLog NEWS README THANKS \ |
---|
39 | ${destroot}${prefix}/share/doc/${name} |
---|
40 | } |
---|