1 | # -*- coding: utf-8; mode: tcl; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; truncate-lines: t -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup qt4 1.0 |
---|
6 | PortGroup cmake 1.0 |
---|
7 | |
---|
8 | name shiboken |
---|
9 | version 1.0.0-beta5 |
---|
10 | #revision 1 |
---|
11 | categories devel |
---|
12 | platforms macosx |
---|
13 | maintainers openmaintainer |
---|
14 | description Shiboken is a python-generation plugin for GeneratorRunner. |
---|
15 | long_description \ |
---|
16 | Shiboken is a plugin (front-end) for Generator Runner. \ |
---|
17 | It generates bindings for C++ libraries using CPython source code. |
---|
18 | homepage http://www.pyside.org/ |
---|
19 | master_sites http://www.pyside.org/files/ |
---|
20 | distname shiboken-[join [split ${version} "-"] "~"] |
---|
21 | use_bzip2 yes |
---|
22 | dist_subdir devel |
---|
23 | |
---|
24 | depends_lib-append port:generatorrunner |
---|
25 | |
---|
26 | checksums md5 0b3f6bc9d6ec16ddb397e9ea8e6ec6c8 \ |
---|
27 | sha1 581c306502a7501d8d4361ffdd402528c417b441 \ |
---|
28 | rmd160 992ebe23d1d9330bb3eef34c6277a86b7ab1b449 |
---|
29 | |
---|
30 | worksrcdir ${distname}/build |
---|
31 | |
---|
32 | configure.args-append .. |
---|
33 | |
---|
34 | post-extract { |
---|
35 | # Need to create the build dir: |
---|
36 | file mkdir ${worksrcpath} |
---|
37 | } |
---|
38 | |
---|