From 99a461d0f8953d07ecde2a5b7a8ea0586fce9fac Mon Sep 17 00:00:00 2001 From: Pawel Sikorski Date: Thu, 26 Feb 2015 09:46:50 +0100 Subject: [PATCH] Turning off tvs-api and libavoc dependency. Since, Tizen 3.0 does not have tvs-api and libavoc package, for now, the dependent webapi modules have been disabled: * tv-audio (libavoc) * tv-channel (tvs-api) * tv-window (this module is enabled, but tvs-api dep in gyp file is removed) Change-Id: If9d5bcb9c106fd67ad6c750c66c21fcc978b7199 Signed-off-by: Pawel Sikorski --- packaging/webapi-plugins.spec | 10 +++++++--- src/tizen-wrt.gyp | 8 ++++---- src/tvwindow/tvwindow.gyp | 2 +- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/packaging/webapi-plugins.spec b/packaging/webapi-plugins.spec index e9713bc5..04127752 100755 --- a/packaging/webapi-plugins.spec +++ b/packaging/webapi-plugins.spec @@ -137,12 +137,14 @@ Source0: %{name}-%{version}.tar.gz %define tizen_feature_sound_support 0 %define tizen_feature_system_setting_support 0 %define tizen_feature_telephony_support 0 -%define tizen_feature_tvaudio_support 1 +#off for tizen 3.0 (no libavoc) +%define tizen_feature_tvaudio_support 0 %define tizen_feature_tvinputdevice_support 1 %define tizen_feature_web_setting_support 1 %define tizen_feature_wi_fi_support 0 %define tizen_feature_tv_display_support 1 -%define tizen_feature_tvchannel_support 1 +#off for tizen 3.0 (no tvs-api) +%define tizen_feature_tvchannel_support 0 %define tizen_feature_tvwindow_support 1 %endif # tizen_profile_tv @@ -251,7 +253,9 @@ BuildRequires: pkgconfig(tvs-api) %endif %if 0%{?tizen_feature_tvwindow_support} -BuildRequires: pkgconfig(tvs-api) +#TODO Currently, TVWindow does not have implementation yet. +#Hence, below dependency can be disabled (there is no tvs-api on tizen 3.0 yet) +#BuildRequires: pkgconfig(tvs-api) %endif %if 0%{?tizen_feature_exif_support} diff --git a/src/tizen-wrt.gyp b/src/tizen-wrt.gyp index b7c29a89..00b72afd 100755 --- a/src/tizen-wrt.gyp +++ b/src/tizen-wrt.gyp @@ -19,7 +19,7 @@ 'exif/exif.gyp:*', 'websetting/websetting.gyp:*', 'systemsetting/systemsetting.gyp:*', - 'content/content.gyp:*', + 'content/content.gyp:*', ], 'conditions': [ [ @@ -33,7 +33,7 @@ 'calendar/calendar.gyp:*', 'datacontrol/datacontrol.gyp:*', 'datasync/datasync.gyp:*', - 'download/download.gyp:*', + 'download/download.gyp:*', 'messaging/messaging.gyp:*', 'networkbearerselection/networkbearerselection.gyp:*', 'nfc/nfc.gyp:*', @@ -53,8 +53,8 @@ 'extension_host_os == "tv"', { 'dependencies': [ 'tvdisplay/tvdisplay.gyp:*', - 'tvaudio/tvaudio.gyp:*', - 'tvchannel/tvchannel.gyp:*', + #'tvaudio/tvaudio.gyp:*', + #'tvchannel/tvchannel.gyp:*', 'tvinputdevice/tvinputdevice.gyp:*', 'tvwindow/tvwindow.gyp:*', ], diff --git a/src/tvwindow/tvwindow.gyp b/src/tvwindow/tvwindow.gyp index 3e0619ae..93e84eed 100644 --- a/src/tvwindow/tvwindow.gyp +++ b/src/tvwindow/tvwindow.gyp @@ -8,7 +8,7 @@ 'type': 'loadable_module', 'variables': { 'packages': [ - 'tvs-api', + #'tvs-api',# off for tizen 3.0. additionally, not use currently ], }, 'dependencies': [ -- 2.34.1