blob: 0403d5d0766f73e2d169c6686296d297c325f22a (
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
|
DESCRIPTION = "Bacula filedaemon is the client to backup your device using Bacula a network based backup program"
SECTION = "console/network"
PRIORITY = "optional"
HOMEPAGE = "http://www.bacula.org"
LICENSE = "GPL"
PR ="r1"
DEPENDS = "gmp openssl zlib readline"
SRC_URI = "http://heanet.dl.sourceforge.net/sourceforge/bacula/bacula-1.38.11.tar.gz \
file://findlib-attribs.patch;patch=1;pnum=1 \
file://bacula-fd.init"
S = "${WORKDIR}/bacula-1.38.11"
# Makefile is broken using ccache
# No idea how to fix it so I turned ccache off
CCACHE = ""
inherit autotools update-rc.d
LDFLAGS += "-L${STAGING_LIBDIR}"
CFLAGS += "-L${STAGING_LIBDIR} -I${STAGING_INCDIR}"
INITSCRIPT_NAME = "bacula-fd"
do_configure() {
oe_runconf --enable-client-only \
--prefix=/usr \
--with-working-dir=/var/lib/bacula \
--with-fd-user=root \
--with-fd-group=bacula
}
do_compile() {
oe_runmake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
do_install() {
mkdir -p ${D}/${sbindir}
install -m 0754 ${S}/src/filed/bacula-fd ${D}/${sbindir}/
mkdir -p ${D}/${sysconfdir}/bacula
install ${S}/src/filed/bacula-fd.conf ${D}/${sysconfdir}/bacula/
}
# Add group
pkg_postinst() {
grep -q bacula: /etc/group || addgroup bacula
}
do_install_append() {
mkdir -p ${D}/${sysconfdir}/init.d
install ${WORKDIR}/bacula-fd.init ${D}/${sysconfdir}/init.d/bacula-fd
}
|