aboutsummaryrefslogtreecommitdiffstats
path: root/meta-application-manager/recipes-others/notification/notification.inc
diff options
context:
space:
mode:
authorKazumasa Mitsunari <kazumasa_mitsunari_za@mail.toyota.co.jp>2016-07-22 10:32:11 +0900
committerKazumasa Mitsunari <kazumasa_mitsunari_za@mail.toyota.co.jp>2016-07-22 11:01:55 +0900
commit6fc9f9f085ab68f89ba6b22465fbdfc5411d41ba (patch)
tree40ee5391beebd06518c674c9ef1858c65026ceb4 /meta-application-manager/recipes-others/notification/notification.inc
parent9cf56692db97b90e0fcb795f761430438bd0ad29 (diff)
First version of ported tizen application manager
Change-Id: I46735869fe8113be58348d575e01734e498d2de2 Signed-off-by: Kazumasa Mitsunari <kazumasa_mitsunari_za@mail.toyota.co.jp>
Diffstat (limited to 'meta-application-manager/recipes-others/notification/notification.inc')
-rw-r--r--meta-application-manager/recipes-others/notification/notification.inc176
1 files changed, 176 insertions, 0 deletions
diff --git a/meta-application-manager/recipes-others/notification/notification.inc b/meta-application-manager/recipes-others/notification/notification.inc
new file mode 100644
index 0000000..381ca68
--- /dev/null
+++ b/meta-application-manager/recipes-others/notification/notification.inc
@@ -0,0 +1,176 @@
+DESCRIPTION = "Notification Library"
+HOMEPAGE = "http://nohomepage.org"
+SECTION = "System/API"
+LICENSE = "Apache-2.0"
+PV = "0.2.3"
+
+SRC_URI = ""
+
+S = "${WORKDIR}/git"
+
+inherit autotools-brokensep
+
+BBCLASSEXTEND = ""
+PROVIDES = ""
+
+#PROVIDES by notification-service-dev
+PROVIDES += "notification-service-dev"
+
+
+#PROVIDES by notification
+
+
+#PROVIDES by notification-dev
+PROVIDES += "notification-dev"
+
+
+RDEPENDS = ""
+#RDEPENDS of notification-service-dev (${PN}-service-dev)
+RDEPENDS_${PN}-service-dev += "notification"
+
+#RDEPENDS of notification (${PN})
+RDEPENDS_${PN} += "sqlite3"
+RDEPENDS_${PN} += "glibc"
+RDEPENDS_${PN} += "libtzplatform-config"
+
+#RDEPENDS of notification-dev (${PN}-dev)
+RDEPENDS_${PN}-dev += "notification"
+
+
+DEPENDS = ""
+#DEPENDS of notification
+inherit tizen_cmake
+DEPENDS += "dbus-glib"
+DEPENDS += "eina"
+DEPENDS += "dbus"
+DEPENDS += "app-svc"
+DEPENDS += "tizen-platform-config"
+inherit pkgconfig
+DEPENDS += "bundle"
+DEPENDS += "aul"
+DEPENDS += "ail"
+DEPENDS += "dlog"
+DEPENDS += "ecore"
+DEPENDS += "sqlite3"
+DEPENDS += "heynoti"
+DEPENDS += "libcom-core"
+DEPENDS += "vconf"
+DEPENDS += "libslp-db-util"
+
+do_prep() {
+ cd ${S}
+ chmod -Rf a+rX,u+w,g-w,o-w ${S}
+ #setup -q
+ cp ${S}/packaging/notification.manifest .
+
+
+}
+do_patch_append() {
+ bb.build.exec_func('do_prep', d)
+}
+
+do_configure() {
+}
+
+do_compile() {
+ cd ${S}
+ LANG=C
+ export LANG
+ unset DISPLAY
+ LD_AS_NEEDED=1; export LD_AS_NEEDED ;
+
+
+ cmake \
+ -DCMAKE_VERBOSE_MAKEFILE=ON \
+ -DCMAKE_INSTALL_PREFIX:PATH=${prefix} \
+ -DCMAKE_INSTALL_LIBDIR:PATH=${prefix}/lib \
+ -DINCLUDE_INSTALL_DIR:PATH=${prefix}/include \
+ -DLIB_INSTALL_DIR:PATH=${prefix}/lib \
+ -DSYSCONF_INSTALL_DIR:PATH=${sysconfdir} \
+ -DSHARE_INSTALL_PREFIX:PATH=${prefix}/share \
+ -DCMAKE_SKIP_RPATH:BOOL=ON \
+ -DBUILD_SHARED_LIBS:BOOL=ON \
+ -DCMAKE_TOOLCHAIN_FILE=${WORKDIR}/toolchain.cmake \
+ ${EXTRA_OECMAKE} .
+ make ${PARALLEL_MAKE}
+
+
+
+}
+
+do_install() {
+ export RPM_BUILD_ROOT=${D}
+ cd ${S}
+ LANG=C
+ export LANG
+ unset DISPLAY
+ rm -rf ${D}
+ mkdir -p ${D}
+
+ rm -rf ${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 --
+
+ mkdir -p ${D}/usr/share/license
+ cp -f LICENSE.APLv2.0 ${D}/usr/share/license/notification
+
+
+}
+
+pkg_postinst_${PN}() {
+ #!/bin/sh -e
+
+ [ "x$D" == "x" ] && ldconfig
+ $D${prefix}/share/notification/notification_DB_init.sh
+
+}
+
+pkg_postrm_${PN}() {
+ #!/bin/sh -e
+
+ [ "x$D" == "x" ] && ldconfig
+}
+
+PACKAGES = "${PN}-dbg ${PN}-doc ${PN}-locale"
+PACKAGES += " notification-service-dev "
+PACKAGES += " notification "
+PACKAGES += " notification-dev "
+
+notification-service-dev_files = ""
+notification-service-dev_files += "${prefix}/include/notification/service/notification_ipc.h"
+notification-service-dev_files += "${prefix}/include/notification/service/notification_noti.h"
+notification-service-dev_files += "${prefix}/include/notification/service/notification_setting_service.h"
+notification-service-dev_files += "${prefix}/lib/pkgconfig/notification-service.pc"
+
+notification_files = ""
+notification_files += "${prefix}/lib/libnotification.so*"
+notification_files += "${prefix}/share/notification/notification_DB_init.sh"
+notification_files += "/usr/share/license/notification"
+MANIFESTFILES_${PN} = "notification.manifest"
+
+notification-dev_files = ""
+notification-dev_files += "${prefix}/include/notification/notification.h"
+notification-dev_files += "${prefix}/include/notification/notification_error.h"
+notification-dev_files += "${prefix}/include/notification/notification_type.h"
+notification-dev_files += "${prefix}/include/notification/notification_list.h"
+notification-dev_files += "${prefix}/include/notification/notification_status.h"
+notification-dev_files += "${prefix}/include/notification/notification_setting.h"
+notification-dev_files += "${prefix}/lib/pkgconfig/notification.pc"
+
+FILES_${PN}-service-dev = "${notification-service-dev_files}"
+FILES_${PN} = "${notification_files}"
+FILES_${PN}-dev = "${notification-dev_files}"
+
+PKG_notification-service-dev= "notification-service-dev"
+PKG_notification= "notification"
+PKG_notification-dev= "notification-dev"
+
+require notification-extraconf.inc
+