aboutsummaryrefslogtreecommitdiffstats
path: root/meta-application-manager/recipes-others/notification/notification.inc
blob: 381ca681093aa7399fbb4704264ddbd2bdfecc52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
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