Add device smack rule and fix build erros when using mobile spec.
authordaemyung jang <dm86.jang@samsung.com>
Fri, 12 Jun 2015 03:03:38 +0000 (12:03 +0900)
committerYoonsang Lee <ysang114.lee@samsung.com>
Tue, 23 Jun 2015 02:30:58 +0000 (11:30 +0900)
Change-Id: I801bcb1cc29d80142286ee5c89151a610300915e

build/tizen/configure.ac
dali-adaptor.rule-mobile [new file with mode: 0644]
packaging/dali-adaptor-mobile.spec

index d760e20..4fe7ac7 100644 (file)
@@ -176,7 +176,11 @@ AM_CONDITIONAL([WAYLAND], [test x$enable_wayland = xyes])
 # should not disable features. This allows the developer to override
 # features through the command line.
 
+if test "x$enable_profile" = "xMOBILE"; then
+PKG_CHECK_MODULES(OPENGLES20, gles20)
+else
 PKG_CHECK_MODULES(OPENGLES20, glesv2 egl)
+fi
 
 if test "x$enable_profile" != "xUBUNTU"; then
 PKG_CHECK_MODULES(CAPI_APPFW_APPLICATION, capi-appfw-application)
diff --git a/dali-adaptor.rule-mobile b/dali-adaptor.rule-mobile
new file mode 100644 (file)
index 0000000..60f7b0d
--- /dev/null
@@ -0,0 +1 @@
+dali sensord rw
index cbcfbae..32a73a5 100644 (file)
@@ -21,6 +21,7 @@ Source0:    %{name}-%{version}.tar.gz
 Requires(post): /sbin/ldconfig
 Requires(postun): /sbin/ldconfig
 Requires:       boost-thread
+Requires:       boost-chrono
 Requires:       giflib
 BuildRequires:  pkgconfig
 BuildRequires:  gawk
@@ -47,7 +48,7 @@ BuildRequires:  libdrm-devel
 BuildRequires:  pkgconfig(libexif)
 BuildRequires:  pkgconfig(capi-system-system-settings)
 BuildRequires:  pkgconfig(libpng)
-BuildRequires:  pkgconfig(opengl-es-20)
+BuildRequires:  pkgconfig(gles20)
 BuildRequires:  pkgconfig(efl-assist)
 BuildRequires:  libcurl-devel
 BuildRequires:  pkgconfig(harfbuzz)
@@ -125,6 +126,7 @@ Dynamics plugin to wrap the libBulletDynamics libraries
 %setup -q
 %define dali_data_rw_dir         /opt/usr/share/dali/
 %define dali_data_ro_dir         /usr/share/dali/
+%define smack_rule_dir           /etc/smack/accesses2.d/
 %define user_shader_cache_dir    %{dali_data_ro_dir}/core/shaderbin/
 %define font_preloaded_path      /usr/share/fonts/
 %define font_downloaded_path     /opt/share/fonts/
@@ -187,6 +189,12 @@ rm -rf %{buildroot}
 cd build/tizen
 %make_install DALI_DATA_RW_DIR="%{dali_data_rw_dir}" DALI_DATA_RO_DIR="%{dali_data_ro_dir}"
 
+##############################
+# Smack
+##############################
+mkdir -p %{buildroot}%{smack_rule_dir}
+cp -f %{_builddir}/%{name}-%{version}/%{name}.rule-mobile %{buildroot}%{smack_rule_dir}/%{name}.rule
+
 # LICENSE
 mkdir -p %{buildroot}/usr/share/license
 cp -af %{_builddir}/%{name}-%{version}/LICENSE %{buildroot}/usr/share/license/%{name}
@@ -255,6 +263,7 @@ exit 0
 %files
 %manifest dali-adaptor.manifest-mobile
 %defattr(-,root,root,-)
+%{smack_rule_dir}/%{name}.rule
 %{_libdir}/libdali-adap*.so*
 %defattr(-,app,app,-)
 %dir %{user_shader_cache_dir}