diff options
author | Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> | 2018-01-26 22:05:38 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2018-03-05 11:45:40 -0500 |
commit | a98acf996127d9577617d974c83f55fbae5da6e9 (patch) | |
tree | bd84ad3caa83b93e522b90d39f7a45a4ca7aa82a /meta-networking/recipes-connectivity/samba/samba_4.7.0.bb | |
parent | d751b85efe65a4b504c41dae7e8689680843d677 (diff) | |
download | meta-openembedded-a98acf996127d9577617d974c83f55fbae5da6e9.tar.gz |
samba: Add packagegroup
Add packagegroup for samba, for there are too many rpms in samba and it's hard to manage.
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/samba/samba_4.7.0.bb')
-rw-r--r-- | meta-networking/recipes-connectivity/samba/samba_4.7.0.bb | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb b/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb index 854cb8af5..27918d2a0 100644 --- a/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb +++ b/meta-networking/recipes-connectivity/samba/samba_4.7.0.bb | |||
@@ -198,7 +198,7 @@ PACKAGES =+ "${PN}-python ${PN}-pidl \ | |||
198 | ${PN}-dsdb-modules ${PN}-testsuite registry-tools \ | 198 | ${PN}-dsdb-modules ${PN}-testsuite registry-tools \ |
199 | winbind \ | 199 | winbind \ |
200 | ${PN}-common ${PN}-base ${PN}-ad-dc ${PN}-ctdb-tests \ | 200 | ${PN}-common ${PN}-base ${PN}-ad-dc ${PN}-ctdb-tests \ |
201 | smbclient" | 201 | smbclient ${PN}-client ${PN}-server ${PN}-test" |
202 | 202 | ||
203 | python samba_populate_packages() { | 203 | python samba_populate_packages() { |
204 | def module_hook(file, pkg, pattern, format, basename): | 204 | def module_hook(file, pkg, pattern, format, basename): |
@@ -295,3 +295,27 @@ FILES_smbclient = "${bindir}/cifsdd \ | |||
295 | 295 | ||
296 | RDEPENDS_${PN}-pidl_append = " perl" | 296 | RDEPENDS_${PN}-pidl_append = " perl" |
297 | FILES_${PN}-pidl = "${bindir}/pidl ${datadir}/perl5/Parse" | 297 | FILES_${PN}-pidl = "${bindir}/pidl ${datadir}/perl5/Parse" |
298 | |||
299 | RDEPENDS_${PN}-client = "\ | ||
300 | smbclient \ | ||
301 | winbind \ | ||
302 | registry-tools \ | ||
303 | ${PN}-pidl \ | ||
304 | " | ||
305 | |||
306 | ALLOW_EMPTY_${PN}-client = "1" | ||
307 | |||
308 | RDEPENDS_${PN}-server = "\ | ||
309 | ${PN} \ | ||
310 | winbind \ | ||
311 | registry-tools \ | ||
312 | " | ||
313 | |||
314 | ALLOW_EMPTY_${PN}-server = "1" | ||
315 | |||
316 | RDEPENDS_${PN}-test = "\ | ||
317 | ${PN}-ctdb-tests \ | ||
318 | ${PN}-testsuite \ | ||
319 | " | ||
320 | |||
321 | ALLOW_EMPTY_${PN}-test = "1" | ||