| 27 | post-destroot { |
| 28 | foreach binfile [glob -tails -directory ${destroot}${python.prefix}/bin *] { |
| 29 | ln -s ${python.prefix}/bin/${binfile} \ |
| 30 | ${destroot}${prefix}/bin/${binfile} |
| 31 | } |
| 32 | foreach manfile [glob -tails -directory ${destroot}${python.prefix}/share/man/man1 *] { |
| 33 | ln -s ${python.prefix}/share/man/man1/${manfile} \ |
| 34 | ${destroot}${prefix}/share/man/man1/${manfile} |
| 35 | } |
| 36 | delete ${destroot}${prefix}/share/doc/${name} |
| 37 | move ${destroot}${python.prefix}/share/doc/${name} \ |
| 38 | ${destroot}${prefix}/share/doc |
| 39 | } |
| 40 | |