blob: 6837dab9fec0db860e3ffd5894a35bb0a169c3e4 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001DESCRIPTION = "${PN} bindings"
2
3LICENSE = "LGPL-3.0"
4LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=e6a600fd5e1d9cbde2d983680233ad02"
5# there is also GPLv3.0 in COPYING;md5=d32239bcb673463ab874e80d47fae504 but no file seems to use that
6
7AUTHOR = "Gustavo Sverzut Barbieri <barbieri@gmail.com>"
8# NOTE: Due to a bug in distutils, even if we don't use pyrex but cython,
9# we need to build pyrex otherwise cython doesn't get called to build
10# the extension modules.
11DEPENDS = "python-cython-native python-pyrex-native python-numeric python-dbus lua efl elementary"
12RDEPENDS_${PN} += "python-lang"
13
14PROVIDES = "python-ecore python-eldbus python-edje python-elementary python-emotion python-evas"
15
Patrick Williamsb48b7b42016-08-17 15:04:38 -050016inherit e-base distutils pkgconfig
17
18SRCVER = "${PV}"
19
20SRC_URI = "\
21 ${E_RELEASES}/bindings/python/${SRCNAME}-${SRCVER}.tar.gz \
22"
23S = "${WORKDIR}/${SRCNAME}-${SRCVER}"
24
25do_install_append() {
26 # drop all .pyo, pyc files
27 find ${D}${libdir}/${PYTHON_DIR}/site-packages -name \*.pyo -o -name \*.pyc | xargs rm -f
28}
29
30PACKAGES += "python-ecore python-eldbus python-edje python-elementary python-emotion python-evas python-ethumb ${PN}-examples"
31
32FILES_${PN} = " \
33 ${libdir}/${PYTHON_DIR}/site-packages/python_efl*egg-info \
34 ${libdir}/${PYTHON_DIR}/site-packages/efl/eo.so \
35 ${libdir}/${PYTHON_DIR}/site-packages/efl/utils \
36 ${libdir}/${PYTHON_DIR}/site-packages/efl/__init__.py \
37"
38FILES_${PN}-dbg += "${libdir}/${PYTHON_DIR}/site-packages/*.egg/*/*/.debug"
39FILES_${PN}-dev += "${libdir}/${PYTHON_DIR}/site-packages/*/*.la"
40
41FILES_${PN}-examples = "${datadir}/${PN}/examples"
42
43FILES_python-ecore = " \
44 ${libdir}/${PYTHON_DIR}/site-packages/ecore/ \
45 ${libdir}/${PYTHON_DIR}/site-packages/efl/ecore*.so \
46 ${libdir}/${PYTHON_DIR}/site-packages/efl/ecore \
47"
48FILES_python-eldbus = " \
49 ${libdir}/${PYTHON_DIR}/site-packages/e_dbus/ \
50 ${libdir}/${PYTHON_DIR}/site-packages/efl/dbus_mainloop.so \
51"
52FILES_python-edje = " \
53 ${libdir}/${PYTHON_DIR}/site-packages/edje/ \
54 ${libdir}/${PYTHON_DIR}/site-packages/efl/edje*.so \
55"
56FILES_python-elementary = " \
57 ${libdir}/${PYTHON_DIR}/site-packages/elementary/ \
58 ${libdir}/${PYTHON_DIR}/site-packages/efl/elementary/ \
59"
60FILES_python-emotion = " \
61 ${libdir}/${PYTHON_DIR}/site-packages/emotion/ \
62 ${libdir}/${PYTHON_DIR}/site-packages/efl/emotion.so \
63"
64FILES_python-evas = " \
65 ${libdir}/${PYTHON_DIR}/site-packages/evas/ \
66 ${libdir}/${PYTHON_DIR}/site-packages/efl/evas.so \
67"
68FILES_python-ethumb = " \
69 ${libdir}/${PYTHON_DIR}/site-packages/ethumb/ \
70 ${libdir}/${PYTHON_DIR}/site-packages/efl/ethumb*so \
71"