blob: a72aded68be80abd9323cefa52aac502491f9ed9 (
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
|
DESCRIPTION = "A security-enabled configuration system"
HOMEPAGE = "https://github.com/sofar/buxton"
SECTION = "System/Configuration"
LICENSE = "LGPL-2.1+"
PV = "5"
SRC_URI = ""
S = "${WORKDIR}/git"
inherit manifest autotools-brokensep
BBCLASSEXTEND = ""
PROVIDES = ""
#PROVIDES by buxton-dev
PROVIDES += "buxton-dev"
#PROVIDES by buxtonsimple
PROVIDES += "buxtonsimple"
#PROVIDES by buxton-docs
PROVIDES += "buxton-docs "
#PROVIDES by buxtonsimple-dev
PROVIDES += "buxtonsimple-dev"
#PROVIDES by buxton
RDEPENDS = ""
#RDEPENDS of buxton-dev (${PN}-dev)
RDEPENDS_${PN}-dev += "buxton"
#RDEPENDS of buxtonsimple (${PN}simple)
RDEPENDS_${PN}simple += "buxton"
#RDEPENDS of buxtonsimple-dev (${PN}simple-dev)
RDEPENDS_${PN}simple-dev += "buxton"
#RDEPENDS of buxton (${PN})
RDEPENDS_${PN} += "coreutils"
RDEPENDS_${PN} += "smack"
RDEPENDS_${PN} += "buxton"
DEPENDS = ""
#DEPENDS of buxton
inherit pkgconfig
DEPENDS += "libcheck"
DEPENDS += "systemd"
DEPENDS += "attr"
DEPENDS += "gdbm"
do_prep() {
cd ${S}
chmod -Rf a+rX,u+w,g-w,o-w ${S}
#setup -q
cp ${S}/packaging/buxton.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
make ${PARALLEL_MAKE}
}
EXTRA_OECONF += ""
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 --
# TODO: need to define needed layers for Tizen in tizen.conf
install -m 0644 ${S}/packaging/tizen.conf ${D}${sysconfdir}/buxton.conf
}
pkg_postinst_${PN}() {
#!/bin/sh -e
[ "x$D" == "x" ] && ldconfig
#buxtond runs as user buxton, which much be created
useradd buxton
buxtonctl create-db base
buxtonctl create-db isp
if [ "$1" -eq 1 ] ; then
# The initial DBs will not have the correct labels and
# permissions when created in postinstall during image
# creation, so we set these file attributes here.
chsmack -a System ${localstatedir}/lib/buxton/*.db
chown buxton:buxton ${localstatedir}/lib/buxton/*.db
fi
}
pkg_postrm_${PN}() {
#!/bin/sh -e
[ "x$D" == "x" ] && ldconfig
}
PACKAGES = "${PN}-dbg ${PN}-doc ${PN}-locale"
PACKAGES += " buxton-dev "
PACKAGES += " buxtonsimple "
PACKAGES += " buxton-docs "
PACKAGES += " buxtonsimple-dev "
PACKAGES += " buxton "
buxton-dev_files = ""
buxton-dev_files += "${prefix}/include/buxton.h"
buxton-dev_files += "${prefix}/lib/libbuxton.so"
buxton-dev_files += "${prefix}/lib/pkgconfig/buxton.pc"
MANIFESTFILES_${PN}-dev = "buxton.manifest"
buxtonsimple_files = ""
buxtonsimple_files += "${prefix}/lib/libbuxtonsimple.so.*"
MANIFESTFILES_${PN}simple = "buxton.manifest"
buxton-docs_files = ""
buxtonsimple-dev_files = ""
buxtonsimple-dev_files += "${prefix}/include/buxtonsimple.h"
buxtonsimple-dev_files += "${prefix}/lib/libbuxtonsimple.so"
buxtonsimple-dev_files += "${prefix}/lib/pkgconfig/buxtonsimple.pc"
MANIFESTFILES_${PN}simple-dev = "buxton.manifest"
buxton_files = ""
buxton_files += "${sysconfdir}/buxton.conf"
buxton_files += "${prefix}/bin/buxtonctl"
buxton_files += "${prefix}/lib/buxton/*.so"
buxton_files += "${prefix}/lib/libbuxton.so.*"
buxton_files += "/lib/systemd/system/buxton.service"
buxton_files += "/lib/systemd/system/buxton.socket"
buxton_files += "/lib/systemd/system/sockets.target.wants/buxton.socket"
buxton_files += "${prefix}/sbin/buxtond"
buxton_files += "%dir ${localstatedir}/lib/buxton"
MANIFESTFILES_${PN} = "buxton.manifest"
FILES_${PN}-dev = "${buxton-dev_files}"
FILES_${PN}simple = "${buxtonsimple_files}"
FILES_${PN}-docs = "${buxton-docs_files}"
FILES_${PN}simple-dev = "${buxtonsimple-dev_files}"
FILES_${PN} = "${buxton_files}"
PKG_buxton-dev= "buxton-dev"
PKG_buxtonsimple= "buxtonsimple"
PKG_buxton-docs= "buxton-docs"
PKG_buxtonsimple-dev= "buxtonsimple-dev"
PKG_buxton= "buxton"
require buxton-extraconf.inc
|