diff options
author | Bian Naimeng <biannm@cn.fujitsu.com> | 2015-06-17 14:41:13 +0900 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-24 14:01:37 +0200 |
commit | 41db3b501a79b146815c8ef77a7d284dd4dd7def (patch) | |
tree | b27211e767e312ead5b9651b04167276a66df34f | |
parent | 962e346df99696a10657a2ea7b2166dfaf290289 (diff) | |
download | meta-openembedded-41db3b501a79b146815c8ef77a7d284dd4dd7def.tar.gz |
ctdb: add new recipe
ctdb is required by samba4
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
3 files changed, 83 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/ctdb/ctdb/01-support-cross-compile-for-linux-os.patch b/meta-oe/recipes-support/ctdb/ctdb/01-support-cross-compile-for-linux-os.patch new file mode 100644 index 0000000000..c9195b4f45 --- /dev/null +++ b/meta-oe/recipes-support/ctdb/ctdb/01-support-cross-compile-for-linux-os.patch | |||
@@ -0,0 +1,24 @@ | |||
1 | support cross-compile for linux-os. | ||
2 | |||
3 | Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com> | ||
4 | |||
5 | diff -Nurp ctdb-2.5.1.orig/configure ctdb-2.5.1/configure | ||
6 | --- ctdb-2.5.1.orig/configure 2015-05-07 16:24:28.545000238 +0900 | ||
7 | +++ ctdb-2.5.1/configure 2015-05-07 16:28:20.894000244 +0900 | ||
8 | @@ -10692,10 +10692,16 @@ if test x"$libreplace_cv_HAVE_GETADDRINF | ||
9 | # see bug 5910, use our replacements if we detect | ||
10 | # a broken system. | ||
11 | if test "$cross_compiling" = yes; then : | ||
12 | + case "$target_os" in | ||
13 | + *linux*) | ||
14 | + ;; | ||
15 | + *) | ||
16 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | ||
17 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||
18 | as_fn_error $? "cannot run test program while cross compiling | ||
19 | See \`config.log' for more details" "$LINENO" 5; } | ||
20 | + ;; | ||
21 | + esac | ||
22 | else | ||
23 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
24 | /* end confdefs.h. */ | ||
diff --git a/meta-oe/recipes-support/ctdb/ctdb/02-link-rep_snprintf-for-ltdbtool.patch b/meta-oe/recipes-support/ctdb/ctdb/02-link-rep_snprintf-for-ltdbtool.patch new file mode 100644 index 0000000000..1dd9b93a5a --- /dev/null +++ b/meta-oe/recipes-support/ctdb/ctdb/02-link-rep_snprintf-for-ltdbtool.patch | |||
@@ -0,0 +1,16 @@ | |||
1 | link rep_snprintf from lib/replace/snprintf.o for ltdbtool | ||
2 | |||
3 | Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com> | ||
4 | |||
5 | diff -Nurp ctdb-2.5.1.orig/Makefile.in ctdb-2.5.1/Makefile.in | ||
6 | --- ctdb-2.5.1.orig/Makefile.in 2015-05-07 16:43:39.276000236 +0900 | ||
7 | +++ ctdb-2.5.1/Makefile.in 2015-05-07 16:44:09.627000237 +0900 | ||
8 | @@ -170,7 +170,7 @@ bin/ctdb: $(CTDB_CLIENT_OBJ) tools/ctdb. | ||
9 | @echo Linking $@ | ||
10 | $(WRAPPER) $(CC) $(CFLAGS) -o $@ tools/ctdb.o tools/ctdb_vacuum.o $(CTDB_CLIENT_OBJ) $(LIB_FLAGS) | ||
11 | |||
12 | -bin/ltdbtool: tools/ltdbtool.o $(TDB_OBJ) | ||
13 | +bin/ltdbtool: tools/ltdbtool.o $(TDB_OBJ) lib/replace/snprintf.o | ||
14 | @echo Linking $@ | ||
15 | $(WRAPPER) $(CC) $(CFLAGS) -o $@ $+ $(TDB_LIBS) $(LIB_FLAGS) | ||
16 | |||
diff --git a/meta-oe/recipes-support/ctdb/ctdb_2.5.1.bb b/meta-oe/recipes-support/ctdb/ctdb_2.5.1.bb new file mode 100644 index 0000000000..3731efd6b4 --- /dev/null +++ b/meta-oe/recipes-support/ctdb/ctdb_2.5.1.bb | |||
@@ -0,0 +1,43 @@ | |||
1 | DESCRIPTION = "CTDB is a cluster implementation of the TDB database \ | ||
2 | used by Samba and other projects to store temporary data. If an \ | ||
3 | application is already using TDB for temporary data it is very easy \ | ||
4 | to convert that application to be cluster aware and use CTDB instead." | ||
5 | DESCRIPTION = "CTDB is a cluster implementation of the TDB database \ | ||
6 | used by Samba and other projects to store temporary data. If an \ | ||
7 | application is already using TDB for temporary data it is very easy \ | ||
8 | to convert that application to be cluster aware and use CTDB instead." | ||
9 | HOMEPAGE = "https://ctdb.samba.org/" | ||
10 | LICENSE = "GPL-2.0+ & LGPL-3.0+ & GPL-3.0+" | ||
11 | |||
12 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
13 | file://${COREBASE}/meta/files/common-licenses/LGPL-3.0;md5=bfccfe952269fff2b407dd11f2f3083b \ | ||
14 | file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6 \ | ||
15 | " | ||
16 | |||
17 | SRC_URI = "https://ftp.samba.org/pub/${PN}/${BP}.tar.gz \ | ||
18 | file://01-support-cross-compile-for-linux-os.patch \ | ||
19 | file://02-link-rep_snprintf-for-ltdbtool.patch \ | ||
20 | " | ||
21 | |||
22 | SRC_URI[md5sum] = "d0cd91726ff4ca2229e1b21859c94717" | ||
23 | SRC_URI[sha256sum] = "d5bf3f674cae986bb6178b1db215a703ac94adc5f75fadfdcff63dcbb5e98ab5" | ||
24 | |||
25 | inherit autotools-brokensep pkgconfig systemd | ||
26 | |||
27 | PARALLEL_MAKE = "" | ||
28 | |||
29 | DEPENDS += "popt libtevent talloc" | ||
30 | |||
31 | do_configure() { | ||
32 | oe_runconf | ||
33 | } | ||
34 | |||
35 | do_install_append() { | ||
36 | install -d ${D}${systemd_unitdir}/system | ||
37 | install -m 0644 ${S}/config/ctdb.service ${D}${systemd_unitdir}/system | ||
38 | sed -i -e 's,/usr/sbin/,${sbindir}/,' ${D}${systemd_unitdir}/system/ctdb.service | ||
39 | } | ||
40 | |||
41 | SYSTEMD_SERVICE_${PN} = "ctdb.service" | ||
42 | |||
43 | FILES_${PN} += "/run" | ||