diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-05 18:25:19 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-21 13:03:00 +0100 |
commit | 6d15bb2324b8448256fa8610270c6373967fd4a9 (patch) | |
tree | 46c3dc1d4850764d98c02f36031b2bbb8e024547 /meta/recipes-gnome/gthumb | |
parent | a86e23e1fb2255a1d9ad3f58da936b3cece447ad (diff) | |
download | poky-6d15bb2324b8448256fa8610270c6373967fd4a9.tar.gz |
gthumb: clean up FILE after PACKAGE reorder
(From OE-Core rev: 60144b62c1f238c066b425c4bfaaf4d5ad56207b)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gthumb')
-rw-r--r-- | meta/recipes-gnome/gthumb/gthumb_2.12.4.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb index 5821dc4aaf..6ab63bb3a8 100644 --- a/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb +++ b/meta/recipes-gnome/gthumb/gthumb_2.12.4.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "GPLv2" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
5 | DEPENDS = "glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base" | 5 | DEPENDS = "glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base" |
6 | 6 | ||
7 | PR = "r2" | 7 | PR = "r3" |
8 | 8 | ||
9 | EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter" | 9 | EXTRA_OECONF = "--disable-gnome-keyring --disable-libsoup --disable-exiv2 --disable-clutter" |
10 | 10 | ||
@@ -12,12 +12,16 @@ PARALLEL_MAKEINST="" | |||
12 | 12 | ||
13 | inherit gnome pkgconfig | 13 | inherit gnome pkgconfig |
14 | 14 | ||
15 | FILES_${PN} += "${datadir}/icons" | ||
16 | FILES_${PN}-dbg += "${libdir}/gthumb/modules/.debug/ ${libdir}/gthumb/extensions/.debug/" | ||
17 | |||
18 | SRC_URI[archive.md5sum] = "97fc13221b0c5d80c27a2e25a3a3ac6f" | 15 | SRC_URI[archive.md5sum] = "97fc13221b0c5d80c27a2e25a3a3ac6f" |
19 | SRC_URI[archive.sha256sum] = "cf809695230ab8892a078be454a42ade865754c72ec1da7c3d74d4310de54f1d" | 16 | SRC_URI[archive.sha256sum] = "cf809695230ab8892a078be454a42ade865754c72ec1da7c3d74d4310de54f1d" |
20 | 17 | ||
21 | do_install_append () { | 18 | do_install_append () { |
22 | rm ${D}${libdir}/${BPN}/extensions/*.a | 19 | rm ${D}${libdir}/${BPN}/extensions/*.a |
23 | } | 20 | } |
21 | |||
22 | FILES_${PN} += "${datadir}/icons" | ||
23 | FILES_${PN} += "${libdir}/${BPN}/extensions/*.so \ | ||
24 | ${libdir}/${BPN}/extensions/*.extension" | ||
25 | FILES_${PN}-dev += "${libdir}/${BPN}/extensions/*.la" | ||
26 | FILES_${PN}-dbg += "${libdir}/${BPN}/extensions/.debug/" | ||
27 | |||