summaryrefslogtreecommitdiff
path: root/recipes-tizen/gsignond/gsignond.inc
blob: 2d07d42688651a2dcf02b749dcc858ba6abf2003 (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
DESCRIPTION = "GLib based Single Sign-On daemon"
HOMEPAGE = "http://nohomepage.org"
SECTION = "Security/Accounts"
LICENSE = "LGPL-2.1+ and GPL-2.0+"

SRC_URI = ""

S = "${WORKDIR}/git"

inherit autotools-brokensep

BBCLASSEXTEND = ""
PROVIDES = ""

#PROVIDES by gsignond-doc
PROVIDES += "gsignond-doc"


#PROVIDES by gsignond
# the PROVIDES rules is ignore "gsignon  "
PROVIDES += "gsignon"
RPROVIDES_gsignond += "gsignon"


#PROVIDES by gsignond-dev
PROVIDES += "gsignond-dev"


RDEPENDS = ""
#RDEPENDS of gsignond-doc (${PN}-doc)
RDEPENDS_${PN}-doc += "gsignond"

#RDEPENDS of gsignond (${PN})
RDEPENDS_${PN} += "eglibc"

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


DEPENDS = ""
#DEPENDS of gsignond
DEPENDS += "dbus"
DEPENDS += "glib-2.0"
DEPENDS += "ecryptfs-utils"
DEPENDS += "smack"
DEPENDS += "sqlite3"

do_prep() {
 cd ${S}
 chmod -Rf a+rX,u+w,g-w,o-w ${S}
 #setup -q -n gsignond-1.0.3
 cp ${S}/packaging/gsignond.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 ;
  
  
  autotools_do_configure
  
  oe_runmake -j16
  
  
  
}
EXTRA_OECONF += " --enable-dbus-type=p2p"

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 --
 install -m 755 -d ${D}/lib/systemd/user
 install -m 644 data/gsignond.service ${D}/lib/systemd/user/
 install -m 755 -d ${D}/lib/systemd/user/weston.target.wants
 ln -s ../gsignond.service ${D}/lib/systemd/user/weston.target.wants/gsignond.service
 
 
}

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

    [ "x$D" == "x" ] && ldconfig
    chmod u+s $D${prefix}/bin/gsignond
    getent group gsignond > /dev/null || /usr/sbin/groupadd -r gsignond

}

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

    [ "x$D" == "x" ] && ldconfig
}

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

gsignond-doc_files = ""
gsignond-doc_files += "${prefix}/share/gtk-doc/html/gsignond/*"

gsignond_files = ""
gsignond_files += "AUTHORS COPYING.LIB INSTALL NEWS README"
gsignond_files += "${prefix}/bin/gsignond"
gsignond_files += "${prefix}/lib/libgsignond-*.so.*"
gsignond_files += "${prefix}/lib/gsignond/extensions/*.so*"
gsignond_files += "${prefix}/lib/gsignond/gplugins/*.so*"
gsignond_files += "${prefix}/lib/gsignond/pluginloaders/gsignond-plugind"
gsignond_files += "/lib/systemd/user/gsignond.service"
gsignond_files += "/lib/systemd/user/weston.target.wants/gsignond.service"
gsignond_files += "${sysconfdir}/gsignond.conf"
MANIFESTFILES_${PN} = "gsignond.manifest"

gsignond-dev_files = ""
gsignond-dev_files += "${prefix}/include/gsignond/*.h"
gsignond-dev_files += "${prefix}/lib/libgsignond-*.so"
gsignond-dev_files += "${prefix}/lib/pkgconfig/gsignond.pc"

FILES_${PN}-doc = "${gsignond-doc_files}"
FILES_${PN} = "${gsignond_files}"
FILES_${PN}-dev = "${gsignond-dev_files}"

PKG_gsignond-doc= "gsignond-doc"
PKG_gsignond= "gsignond"
PKG_gsignond-dev= "gsignond-dev"

require gsignond-extraconf.inc