diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-05 22:20:07 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-11 01:53:01 +0100 |
commit | 0c882af6795dd1f467fb196b585de4284f307b64 (patch) | |
tree | a0fb438a937cff0bac1edf3c6d9865d5dc487b1e /meta-oe/recipes-core | |
parent | d26ff6c1fd561c422879ec9cbfd2405aa064d094 (diff) | |
download | meta-openembedded-0c882af6795dd1f467fb196b585de4284f307b64.tar.gz |
libxml++: fix unpackaged files
* fixes:
libxml++-2.35.3: libxml++: Files/directories were installed but not shipped
/usr/share/devhelp
/usr/share/devhelp/books
/usr/share/devhelp/books/libxml++-2.6
/usr/share/devhelp/books/libxml++-2.6/libxml++-2.6.devhelp2
/usr/lib/libxml++-2.6
/usr/lib/libxml++-2.6/include
/usr/lib/libxml++-2.6/include/libxml++config.h
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-core')
-rw-r--r-- | meta-oe/recipes-core/libxml/libxml++_2.35.3.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-core/libxml/libxml++_2.35.3.bb b/meta-oe/recipes-core/libxml/libxml++_2.35.3.bb index 9a33baa70..fb9cdd954 100644 --- a/meta-oe/recipes-core/libxml/libxml++_2.35.3.bb +++ b/meta-oe/recipes-core/libxml/libxml++_2.35.3.bb | |||
@@ -4,15 +4,19 @@ HOMEPAGE = "http://libxmlplusplus.sourceforge.net" | |||
4 | BUGTRACKER = "http://bugzilla.gnome.org/buglist.cgi?product=libxml%2B%2B" | 4 | BUGTRACKER = "http://bugzilla.gnome.org/buglist.cgi?product=libxml%2B%2B" |
5 | SECTION = "libs" | 5 | SECTION = "libs" |
6 | LICENSE = "GPLv2" | 6 | LICENSE = "GPLv2" |
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34 " | ||
8 | |||
9 | PR = "r1" | ||
7 | 10 | ||
8 | SHRT_VER = "${@d.getVar('PV',True).split('.')[0]}.${@d.getVar('PV',True).split('.')[1]}" | 11 | SHRT_VER = "${@d.getVar('PV',True).split('.')[0]}.${@d.getVar('PV',True).split('.')[1]}" |
9 | SRC_URI = "${GNOME_MIRROR}/${BPN}/${SHRT_VER}/${BP}.tar.xz" | 12 | SRC_URI = "${GNOME_MIRROR}/${BPN}/${SHRT_VER}/${BP}.tar.xz" |
10 | 13 | ||
11 | SRC_URI[md5sum] = "196a2dcdc84ab987fe3852b3f29cafd7" | 14 | SRC_URI[md5sum] = "196a2dcdc84ab987fe3852b3f29cafd7" |
12 | SRC_URI[sha256sum] = "715a4214bbff90365cc8406a28e427febd90461006d608fbdcdcea7fc9891eaf" | 15 | SRC_URI[sha256sum] = "715a4214bbff90365cc8406a28e427febd90461006d608fbdcdcea7fc9891eaf" |
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34 " | ||
14 | 16 | ||
15 | DEPENDS = "libxml2 glibmm" | 17 | DEPENDS = "libxml2 glibmm" |
16 | 18 | ||
17 | inherit autotools pkgconfig | 19 | inherit autotools pkgconfig |
18 | 20 | ||
21 | FILES_${PN}-doc += "${datadir}/devhelp" | ||
22 | FILES_${PN}-dev += "${libdir}/libxml++-2.6/include/libxml++config.h" | ||