MISC: Modified build script. 75/19575/1 mw tizen_3.0.m14.2_ivi
authorTaeyoung Son <taeyoung2.son@samsung.com>
Wed, 16 Apr 2014 02:43:19 +0000 (11:43 +0900)
committerTaeyoung Son <taeyoung2.son@samsung.com>
Wed, 16 Apr 2014 02:43:19 +0000 (11:43 +0900)
Modified build script.

Change-Id: I711403741d5ce38131bc01fca20d88484da8bc9a
Signed-off-by: Taeyoung Son <taeyoung2.son@samsung.com>
package/changelog
package/pkginfo.manifest
script/build.sh

index a4de7f1..0d5c474 100644 (file)
@@ -1,9 +1,21 @@
+* 2.1.3
+- Removed __copy_dependency_plugins in build.sh
+== kh5325.kim <kh5325.kim@samsung.com> 2013-12-30
+* 2.1.2
+- Supports build case using indigo-pde
+== kh5325.kim <kh5325.kim@samsung.com> 2013-12-27
 * 2.1.1
-- Merged the latest changes
-== kh5325.kim <kh5325.kim@samsung.com> 2013-05-24
+- Supports build case using indigo-pde
+== kh5325.kim <kh5325.kim@samsung.com> 2013-12-27
 * 2.1.0
 - 2.1.0 Package
 == kh5325.kim <kh5325.kim@samsung.com> 2013-03-08
+* 1.0.71
+- build test
+== taeyoung2.son <taeyoung2.son@samsung.com> 2012-12-24 18:00
+* 1.0.70
+- build test
+== Taeyoung Son <taeyoung2.son@samsung.com> 2012-11-04 22:38
 * 1.0.69
 - Fixed bug when branding plugin is not set.
 == taeyoung2.son <taeyoung2.son@samsung.com> 2012-10-18 23:26
index 06fc438..0c1bc0d 100644 (file)
@@ -1,4 +1,4 @@
-Version:2.1.1
+Version:2.1.3
 Source:pde-build
 Maintainer:kangho kim <kh5325.kim@samsung.com>, yoonki park <yoonki.park@samsung.com>, hyunsik non <hyunsik.noh@samsung.com>, taeyoung son <taeyoung2.son@samsung.com>, gune Kim <gune.kim@samsung.com>, ho namkoong <ho.namkoong@samsung.com>, hyeongseok heo <hyeong-seok.heo@samsung.com>, gyeongseok seo <gyeongseok.seo@samsung.com>, jihoon song <jihoon80.song@samsung.com>, changhyun lee <changhyun1.lee@samsung.com>, bonyong lee <bonyong.lee@samsung.com>
 
index f897f03..624a8fa 100755 (executable)
@@ -2,6 +2,7 @@
 
 build_path=${SRCDIR}/build_result
 package_name=$1
+pde_name=$2
 
 __set_parameter()
 {
@@ -16,26 +17,46 @@ __set_parameter()
             archive_platform_name=linux
             windowing=gtk
             architecture=x86
+            if [ ! "x${pde_name}" = "x" ]
+            then
+                ide_root_path_name=indigo-pde/eclipse
+            fi
             ;;
         windows-32)
             archive_platform_name=win32
             windowing=win32
             architecture=x86
+            if [ ! "x${pde_name}" = "x" ]
+            then
+                ide_root_path_name=indigo-winpde/eclipse
+            fi
             ;;
         ubuntu-64)
             archive_platform_name=linux
             windowing=gtk
             architecture=x86_64
+            if [ ! "x${pde_name}" = "x" ]
+            then
+                ide_root_path_name=indigo-pde/eclipse
+            fi
             ;;
         windows-64)
             archive_platform_name=win32
             windowing=win32
             architecture=x86_64
+            if [ ! "x${pde_name}" = "x" ]
+            then
+                ide_root_path_name=indigo-winpde/eclipse
+            fi
             ;;
        macos-64)
             archive_platform_name=macosx
             windowing=cocoa
             architecture=x86_64
+            if [ ! "x${pde_name}" = "x" ]
+            then
+                ide_root_path_name=indigo-macpde/eclipse
+            fi
             ;;
         *)
             echo "${TARGET_OS} is not support yet."
@@ -48,8 +69,9 @@ __set_parameter()
 __set_build_parameter()
 {
     build_script_path=${ROOTDIR}/pde-build
-    reference_ide_path=${ROOTDIR}/ide
+    reference_ide_path=${ROOTDIR}/${ide_root_path_name}
 }
+
 __clean_build_environment()
 {
     if [ -d $build_path ]
@@ -213,7 +235,7 @@ build_plugins()
     __set_build_parameter
     __clean_build_environment
     __copy_build_sources
-    __copy_dependency_plugins
+    #__copy_dependency_plugins
     __make_ant_build_properties_file
     __modify_about_mappings_file
     __execute_pde_build