From 27b96f051be3aa384a7b8f4a9a6328254055af01 Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Wed, 25 Jun 2014 17:02:48 +0200 Subject: [PATCH] Fix new packages Change-Id: I37d762ace2ca292c17074a1fb52f03e096fcfb97 --- conf/layer.conf | 2 ++ recipes-connectivity/bluez5/bluez5_5.19.bbappend | 3 +++ .../tizen-common-core-image-crosswalk-dev.bb | 3 ++- .../images/tizen-common-core-image-minimal-dev.bb | 3 ++- recipes-tizen/chromium/chromium-extraconf.inc | 1 + recipes-tizen/com-core/com-core-extraconf.inc | 1 + .../libnet-client/libnet-client-extraconf.inc | 28 ++++++++++++++++++++++ recipes-tizen/libtapi/libtapi-extraconf.inc | 3 +-- .../libwifi-direct/libwifi-direct-extraconf.inc | 1 + .../notification/notification-extraconf.inc | 1 + recipes-tizen/syspopup/syspopup-extraconf.inc | 3 +++ 11 files changed, 45 insertions(+), 4 deletions(-) create mode 100644 recipes-connectivity/bluez5/bluez5_5.19.bbappend diff --git a/conf/layer.conf b/conf/layer.conf index 08d488d..6bf2e8b 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -40,3 +40,5 @@ DISTRO_FEATURES_append = " pam " DISTRO_FEATURES_append = " ld-is-gold " PREFERRED_PROVIDER_jpeg = "libjpeg-turbo" + +LICENSE_FLAGS_WHITELIST += "commercial" \ No newline at end of file diff --git a/recipes-connectivity/bluez5/bluez5_5.19.bbappend b/recipes-connectivity/bluez5/bluez5_5.19.bbappend new file mode 100644 index 0000000..3e34b84 --- /dev/null +++ b/recipes-connectivity/bluez5/bluez5_5.19.bbappend @@ -0,0 +1,3 @@ +do_install_append() { + rm -fr ${D}/usr/lib/udev/hid2hci +} \ No newline at end of file diff --git a/recipes-image/images/tizen-common-core-image-crosswalk-dev.bb b/recipes-image/images/tizen-common-core-image-crosswalk-dev.bb index 3e7839d..537145d 100644 --- a/recipes-image/images/tizen-common-core-image-crosswalk-dev.bb +++ b/recipes-image/images/tizen-common-core-image-crosswalk-dev.bb @@ -13,4 +13,5 @@ IMAGE_INSTALL += "screen" IMAGE_INSTALL += "ldd" IMAGE_INSTALL += "libcap" IMAGE_INSTALL += "sudo" -IMAGE_INSTALL += "connman-client" \ No newline at end of file +IMAGE_INSTALL += "connman-client" +IMAGE_INSTALL += "package-management" \ No newline at end of file diff --git a/recipes-image/images/tizen-common-core-image-minimal-dev.bb b/recipes-image/images/tizen-common-core-image-minimal-dev.bb index b41821b..398cba2 100644 --- a/recipes-image/images/tizen-common-core-image-minimal-dev.bb +++ b/recipes-image/images/tizen-common-core-image-minimal-dev.bb @@ -13,4 +13,5 @@ IMAGE_INSTALL += "screen" IMAGE_INSTALL += "ldd" IMAGE_INSTALL += "libcap" IMAGE_INSTALL += "sudo" -IMAGE_INSTALL += "connman-client" \ No newline at end of file +IMAGE_INSTALL += "connman-client" +IMAGE_INSTALL += "package-management" \ No newline at end of file diff --git a/recipes-tizen/chromium/chromium-extraconf.inc b/recipes-tizen/chromium/chromium-extraconf.inc index e69de29..dfdcea3 100644 --- a/recipes-tizen/chromium/chromium-extraconf.inc +++ b/recipes-tizen/chromium/chromium-extraconf.inc @@ -0,0 +1 @@ +INSANE_SKIP_${PN} = "dev-so" \ No newline at end of file diff --git a/recipes-tizen/com-core/com-core-extraconf.inc b/recipes-tizen/com-core/com-core-extraconf.inc index e69de29..40ee5b5 100644 --- a/recipes-tizen/com-core/com-core-extraconf.inc +++ b/recipes-tizen/com-core/com-core-extraconf.inc @@ -0,0 +1 @@ +INSANE_SKIP_lib${PN} = "dev-so" \ No newline at end of file diff --git a/recipes-tizen/libnet-client/libnet-client-extraconf.inc b/recipes-tizen/libnet-client/libnet-client-extraconf.inc index e69de29..3a29fad 100644 --- a/recipes-tizen/libnet-client/libnet-client-extraconf.inc +++ b/recipes-tizen/libnet-client/libnet-client-extraconf.inc @@ -0,0 +1,28 @@ +do_install() { + echo export RPM_BUILD_ROOT=${D} + cd ${S} + LANG=C + export LANG + unset DISPLAY + rm -rf ${D} + mkdir -p ${D} + + + oe_runmake \ + DESTDIR=${D} \ + INSTALL_ROOT=${D} \ + BINDIR=${prefix}/bin \ + install + rm -f ${D}${infodir}/dir + find ${D} -regex ".*\.la$" | xargs rm -f -- + find ${D} -regex ".*\.a$" | xargs rm -f -- + + #License + mkdir -p ${D}${prefix}/share/license + cp LICENSE.Flora ${D}${prefix}/share/license/libnet-client + + +} + + +INSANE_SKIP_${PN} = "dev-so" \ No newline at end of file diff --git a/recipes-tizen/libtapi/libtapi-extraconf.inc b/recipes-tizen/libtapi/libtapi-extraconf.inc index 7991814..99fd644 100644 --- a/recipes-tizen/libtapi/libtapi-extraconf.inc +++ b/recipes-tizen/libtapi/libtapi-extraconf.inc @@ -1,2 +1 @@ -FILES_${PN}3 = "${libtapi3_files}" -FILES_${PN}3-dev = "${libtapi3-dev_files}" \ No newline at end of file +INSANE_SKIP_${PN}3 = "dev-so" diff --git a/recipes-tizen/libwifi-direct/libwifi-direct-extraconf.inc b/recipes-tizen/libwifi-direct/libwifi-direct-extraconf.inc index e69de29..53c3191 100644 --- a/recipes-tizen/libwifi-direct/libwifi-direct-extraconf.inc +++ b/recipes-tizen/libwifi-direct/libwifi-direct-extraconf.inc @@ -0,0 +1 @@ +INSANE_SKIP_libwifi-direct = "dev-so" \ No newline at end of file diff --git a/recipes-tizen/notification/notification-extraconf.inc b/recipes-tizen/notification/notification-extraconf.inc index e69de29..dfdcea3 100644 --- a/recipes-tizen/notification/notification-extraconf.inc +++ b/recipes-tizen/notification/notification-extraconf.inc @@ -0,0 +1 @@ +INSANE_SKIP_${PN} = "dev-so" \ No newline at end of file diff --git a/recipes-tizen/syspopup/syspopup-extraconf.inc b/recipes-tizen/syspopup/syspopup-extraconf.inc index e69de29..6c9ceb4 100644 --- a/recipes-tizen/syspopup/syspopup-extraconf.inc +++ b/recipes-tizen/syspopup/syspopup-extraconf.inc @@ -0,0 +1,3 @@ +do_install_append() { + rm -fr ${D}/usr/share/syspopup +} \ No newline at end of file -- 2.7.4