diff options
author | Kyuho Jo <kyuho.jo@samsung.com> | 2015-06-01 17:08:32 +0900 |
---|---|---|
committer | Kyuho Jo <kyuho.jo@samsung.com> | 2015-06-01 17:08:32 +0900 |
commit | 2e9a7c80983e0a03b735648d7af3d5c0ccb6f0dd (patch) | |
tree | 4af6fda080663a8707154a0584095cfcb4e422dd | |
parent | 95f315117a095b669242e8825c175950d17f9fa4 (diff) | |
download | notification-submit/tizen_mobile/20150601.133038.tar.gz notification-submit/tizen_mobile/20150601.133038.tar.bz2 notification-submit/tizen_mobile/20150601.133038.zip |
Notification module will not create notification-service package anymore.submit/tizen_mobile/20150602.005937submit/tizen_mobile/20150601.133038submit/tizen_mobile/20150601.132334submit/tizen_mobile/20150601.120810
Change-Id: Ic5c55981fc57bf580f2ddb79c68b54cfcec235ab
Signed-off-by: Kyuho Jo <kyuho.jo@samsung.com>
-rw-r--r-- | CMakeLists.txt | 14 | ||||
-rw-r--r-- | packaging/notification.spec | 18 |
2 files changed, 5 insertions, 27 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b0ddfe..e13a7aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,13 +37,10 @@ SET(HEADERS-DEVEL ./include/notification_status_internal.h ./include/notification_setting.h ./include/notification_setting_internal.h - ) - - -SET(HEADERS-SERVICE-DEVEL ./include/notification_ipc.h ./include/notification_noti.h - ./include/notification_setting_service.h) + ./include/notification_setting_service.h + ) INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include) @@ -107,10 +104,3 @@ INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data/images/ DESTINATION ${IMGDIR} FOREACH(hfile ${HEADERS-DEVEL}) INSTALL(FILES ${CMAKE_SOURCE_DIR}/${hfile} DESTINATION include/${PROJECT_NAME}) ENDFOREACH(hfile) - -CONFIGURE_FILE(${PROJECT_NAME}-service.pc.in ${PROJECT_NAME}-service.pc @ONLY) -INSTALL(FILES ${CMAKE_BINARY_DIR}/${PROJECT_NAME}-service.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig) - -FOREACH(hfile ${HEADERS-SERVICE-DEVEL}) - INSTALL(FILES ${CMAKE_SOURCE_DIR}/${hfile} DESTINATION include/${PROJECT_NAME}/service) -ENDFOREACH(hfile) diff --git a/packaging/notification.spec b/packaging/notification.spec index 8603a38..268cfe6 100644 --- a/packaging/notification.spec +++ b/packaging/notification.spec @@ -43,14 +43,6 @@ Requires: %{name} = %{version}-%{release} %description devel Development files needed to build software that needs to system a system notification. -%package service-devel -Summary: Notification library (service-devel) -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} - -%description service-devel -Development files needed to build notification service - %build %if 0%{?tizen_build_binary_release_type_eng} export CFLAGS="$CFLAGS -DTIZEN_ENGINEER_MODE" @@ -230,11 +222,7 @@ vconftool set -t string memory/private/libstatus/message "" -i -g 5000 -f $SMAC %{_includedir}/notification/notification_status_internal.h %{_includedir}/notification/notification_setting.h %{_includedir}/notification/notification_setting_internal.h +%{_includedir}/notification/notification_ipc.h +%{_includedir}/notification/notification_noti.h +%{_includedir}/notification/notification_setting_service.h %{_libdir}/pkgconfig/notification.pc - -%files service-devel -%defattr(-,root,root,-) -%{_includedir}/notification/service/notification_ipc.h -%{_includedir}/notification/service/notification_noti.h -%{_includedir}/notification/service/notification_setting_service.h -%{_libdir}/pkgconfig/notification-service.pc |