Commits
Eric A. Borisch authored e15aa4069e4
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | PortGroup github 1.0 |
6 - | github.setup pydicom pynetdicom3 1.2.0 v |
7 - | name py-pynetdicom3 |
6 + | github.setup pydicom pynetdicom 1.2.0 v |
7 + | name py-pynetdicom |
8 8 | python.versions 27 36 37 |
9 9 | platforms darwin |
10 10 | license MIT BSD |
11 11 | maintainers {eborisch @eborisch} openmaintainer |
12 12 | supported_archs noarch |
13 13 | |
14 14 | description A Python implementation of the DICOM networking protocol |
15 15 | |
16 - | long_description pynetdicom3 is a pure Python (2.7/3.4+) package that \ |
16 + | long_description pynetdicom is a pure Python (2.7/3.4+) package that \ |
17 17 | implements the DICOM networking protocol. Working with \ |
18 18 | pydicom, it allows the easy creation of DICOM Service \ |
19 19 | Class Users (SCUs) and Service Class Providers (SCPs). |
20 20 | |
21 21 | checksums \ |
22 22 | rmd160 47b230abd4a4500b2174f23e8fba32a0542586ac \ |
23 23 | sha256 57c57baa53e886256e540b3de61f2cf30c87692bf20483ebb573f72b7ccc2c67 \ |
24 24 | size 1597229 |
25 25 | |
26 26 | if {${name} ne ${subport}} { |
69 69 | xinstall -d ${DOCDIR} |
70 70 | xinstall -W ${worksrcpath} -m 0644 \ |
71 71 | LICENCE.txt \ |
72 72 | README.rst \ |
73 73 | ${DOCDIR} |
74 74 | |
75 75 | if {[variant_isset doc]} { |
76 76 | xinstall -m 0644 ${worksrcpath}/docs/release_notes.rst ${DOCDIR} |
77 77 | file copy ${worksrcpath}/docs/_build/html ${DOCDIR} |
78 78 | } |
79 + | |
80 + | set EXDIR ${destroot}${prefix}/share/examples/${subport} |
81 + | xinstall -d ${EXDIR} |
82 + | system -W ${worksrcpath}/pynetdicom/apps "cp -R * ${EXDIR}/" |
79 83 | } |
80 84 | } |