summaryrefslogtreecommitdiff
path: root/classes/distutils-base.bbclass
diff options
context:
space:
mode:
authorThomas Kunze <thommycheck@gmx.de>2008-02-28 12:58:30 +0000
committerThomas Kunze <thommycheck@gmx.de>2008-02-28 12:58:30 +0000
commit451d60a2572fceff010ec887951c05548c7dcc1c (patch)
treed5276568e132df52d4d96e61868717ac51f44841 /classes/distutils-base.bbclass
parent18a21d79505d162c24a404b865d03072430ec717 (diff)
parentf66378d955987691415e8f4786f87f92f5303241 (diff)
merge of '452ba8f483cc1f311d5139e2d406dd21e8edcce5'
and '524fc96258564567524a1295bfdf65c2a25da5d7'
Diffstat (limited to 'classes/distutils-base.bbclass')
-rw-r--r--classes/distutils-base.bbclass15
1 files changed, 12 insertions, 3 deletions
diff --git a/classes/distutils-base.bbclass b/classes/distutils-base.bbclass
index 5150be76b9..c4551ace83 100644
--- a/classes/distutils-base.bbclass
+++ b/classes/distutils-base.bbclass
@@ -11,8 +11,17 @@ def python_dir(d):
raise "No Python in STAGING_INCDIR. Forgot to build python-native ?"
PYTHON_DIR = "${@python_dir(d)}"
+
+PACKAGES = "${PN}-dev ${PN}-dbg ${PN}-doc ${PN}"
+
FILES_${PN} = "${bindir}/* ${libdir}/* ${libdir}/${PYTHON_DIR}/*"
-FILES_${PN}-dbg = "${libdir}/${PYTHON_DIR}/site-packages/.debug \
- ${libdir}/${PYTHON_DIR}/site-packages/*/.debug \
- ${libdir}/${PYTHON_DIR}/site-packages/*/*/.debug"
+FILES_${PN}-dev += "\
+ ${libdir}/pkgconfig \
+ ${libdir}/${PYTHON_DIR}/site-packages/*.la \
+"
+FILES_${PN}-dbg = "\
+ ${libdir}/${PYTHON_DIR}/site-packages/.debug \
+ ${libdir}/${PYTHON_DIR}/site-packages/*/.debug \
+ ${libdir}/${PYTHON_DIR}/site-packages/*/*/.debug \
+"