summaryrefslogtreecommitdiff
path: root/recipes-tizen/download-provider/download-provider.inc
blob: b5193e43507223e695123eb39f911ae61cf6efb3 (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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
DESCRIPTION = "Download the contents in background"
HOMEPAGE = "http://nohomepage.org"
SECTION = "System/Libraries"
LICENSE = "Apache-2.0"

SRC_URI = ""

S = "${WORKDIR}/git"

inherit autotools-brokensep

BBCLASSEXTEND = ""
PROVIDES = ""

#PROVIDES by download-provider


#PROVIDES by download-provider-dev
PROVIDES += "download-provider-dev"


RDEPENDS = ""
#RDEPENDS of download-provider (${PN})
RDEPENDS_${PN} += "net-config"
RDEPENDS_${PN} += "connman"
RDEPENDS_${PN} += "eglibc"
RDEPENDS_${PN} += "vconf"
RDEPENDS_${PN} += "sqlite"

#RDEPENDS of download-provider-dev (${PN}-dev)
RDEPENDS_${PN}-dev += "download-provider"


DEPENDS = ""
#DEPENDS of download-provider
DEPENDS += "libwifi-direct"
inherit tizen_cmake
DEPENDS += "smack"
#Replace "DEPENDS" on gettext by "inherit gettext"
inherit gettext
DEPENDS += "notification"
DEPENDS += "tizen-platform-config"
DEPENDS += "app-svc"
DEPENDS += "connection"
DEPENDS += "dlog"
DEPENDS += "glib-2.0"
DEPENDS += "libsoup-2.4"
DEPENDS += "app-manager"
DEPENDS += "systemd"
DEPENDS += "bundle"
DEPENDS += "sqlite3"
DEPENDS += "xdgmime"
DEPENDS += "libprivilege-control"
DEPENDS_append_class-native = " fdupes-native"
DEPENDS_append_class-target = " fdupes-native"
DEPENDS += "vconf"
DEPENDS += "common"

do_prep() {
 cd ${S}
 chmod -Rf a+rX,u+w,g-w,o-w ${S}
 #setup -q
 
 
}
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 ;
 
 
 CFLAGS="${CFLAGS:-$CFLAGS} -fPIC -D_REENTRANT -fvisibility=hidden"; export CFLAGS
 FFLAGS="${FFLAGS:-$CFLAGS} -fPIC -fvisibility=hidden"; export FFLAGS
 LDFLAGS="${LDFLAGS} -Wl,--as-needed -Wl,--hash-style=both"; export LDFLAGS
 
 
   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} . \
          -DBIN_INSTALL_DIR:PATH=${prefix}/bin \
          -DPKG_NAME=download-provider \
          -DPKG_VERSION=1.1.6 \
          -DPKG_RELEASE=0 \
          -DIMAGE_DIR:PATH=${prefix}/share/download-provider/images \
          -DLOCALE_DIR:PATH=${prefix}/share/locale \
          -DSYSTEMD_DIR:PATH=${systemd_unitdir}/system \
          -DDATABASE_SCHEMA_DIR=${prefix}/share/download-provider/sql \
          -DDATABASE_SCHEMA_FILE=${prefix}/share/download-provider/sql/download-provider-schema.sql \
          -DSUPPORT_WIFI_DIRECT:BOOL=OFF \
          -DSUPPORT_LOG_MESSAGE:BOOL=ON \
          -DSUPPORT_CHECK_IPC:BOOL=ON
 
 oe_runmake -j16
 
 
 
}

do_install() {
 export RPM_BUILD_ROOT=${D}
 cd ${S}
 LANG=C
 export LANG
 unset DISPLAY
 rm -rf ${D}
 mkdir -p ${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}/${prefix}/share/download-provider
 mkdir -p ${D}${systemd_unitdir}/system/graphical.target.wants
 mkdir -p ${D}${systemd_unitdir}/system/sockets.target.wants
 ln -s ../download-provider.service ${D}${systemd_unitdir}/system/graphical.target.wants/
 ln -s ../download-provider.socket ${D}${systemd_unitdir}/system/sockets.target.wants/
 
 #find_lang download-provider
 
 
  _target=""; 
  _symlinks=0; 
   
  fdupes -q -n -r ${D}${prefix}/share/locale | 
   while read _file; do 
     if test -z "$_target" ; then 
       _target="$_file"; 
     else 
       if test -z "$_file" ; then 
 	_target=""; 
 	continue ; 
       fi ; 
       if test "$_symlinks" = 1; then 
         ln -sf "${_target#${D}}" "$_file"; 
       else 
         ln -f "$_target" "$_file"; 
       fi ;
     fi ; 
  done 
 
 
}

pkg_postinst_${PN}() {
    #!/bin/sh -e

    [ "x$D" == "x" ] && ldconfig
    if [ $1 -eq 1 ] ; then 
            # Initial installation 
            /usr/bin/systemctl preset download-provider.service >/dev/null 2>&1 || : 
    fi 
    vconftool set -t int db/setting/default_memory/wap 0

}

pkg_prerm_${PN}() {
    #!/bin/sh -e

    if [ $1 -eq 0 ] ; then 
            # Package removal, not upgrade 
            /usr/bin/systemctl --no-reload disable download-provider.service > /dev/null 2>&1 || : 
            /usr/bin/systemctl stop download-provider.service > /dev/null 2>&1 || : 
    fi 

}

pkg_postrm_${PN}() {
    #!/bin/sh -e

    [ "x$D" == "x" ] && ldconfig
    /usr/bin/systemctl daemon-reload >/dev/null 2>&1 || : 

}

PACKAGES = "${PN}-dbg ${PN}-doc ${PN}-locale"
PACKAGES += " download-provider "
PACKAGES += " download-provider-dev "

download-provider_files = ""
download-provider_files += "${prefix}/bin/download-provider"
download-provider_files += "${prefix}/share/download-provider/images/*.png"
download-provider_files += "${prefix}/share/download-provider/images/*.gif"
download-provider_files += "${prefix}/lib/libdownloadagent2.so*"
download-provider_files += "${prefix}/lib/libdownload-provider-interface.so*"
download-provider_files += "${systemd_unitdir}/system/download-provider.service"
download-provider_files += "${systemd_unitdir}/system/graphical.target.wants/download-provider.service"
download-provider_files += "${systemd_unitdir}/system/download-provider.socket"
download-provider_files += "${systemd_unitdir}/system/sockets.target.wants/download-provider.socket"
download-provider_files += "${prefix}/share/download-provider/sql/download-provider-schema.sql"
MANIFESTFILES_${PN} = "download-provider.manifest"

download-provider-dev_files = ""
download-provider-dev_files += "${prefix}/lib/libdownloadagent2.so"
download-provider-dev_files += "${prefix}/lib/libdownload-provider-interface.so"
download-provider-dev_files += "${prefix}/include/download-provider/download-provider-defs.h"
download-provider-dev_files += "${prefix}/include/download-provider/download-provider-interface.h"
download-provider-dev_files += "${prefix}/lib/pkgconfig/download-provider.pc"
download-provider-dev_files += "${prefix}/lib/pkgconfig/download-provider-interface.pc"
MANIFESTFILES_${PN}-dev = "download-provider.manifest"

FILES_${PN} = "${download-provider_files}"
FILES_${PN}-dev = "${download-provider-dev_files}"

PKG_download-provider= "download-provider"
PKG_download-provider-dev= "download-provider-dev"

require download-provider-extraconf.inc