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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/bacula/bacula-1.36.3-r3.ebuild,v 1.5 2007/02/15 11:14:56 dragonheart Exp $
inherit eutils
IUSE="bacula-clientonly bacula-console bacula-split-init doc gnome logrotate logwatch mysql postgres readline sqlite static tcpd wxwindows X"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
DESCRIPTION="Featureful client/server network backup suite"
HOMEPAGE="http://www.bacula.org/"
DOC_VER="1.36.3"
SRC_URI="mirror://sourceforge/bacula/${P}.tar.gz
doc? ( mirror://sourceforge/bacula/${PN}-doc-${DOC_VER}.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
DEPEND="
>=sys-libs/zlib-1.1.4
dev-libs/gmp
!bacula-clientonly? (
mysql? ( virtual/mysql )
!mysql? (
postgres? ( >=dev-db/postgresql-7.4.0 )
!postgres? (
sqlite? ( =dev-db/sqlite-2* )
!sqlite? ( virtual/mysql )
)
)
virtual/mta
)
bacula-console? (
wxwindows? ( >=x11-libs/wxGTK-2.4.2 )
gnome? (
>=gnome-base/gnome-2
>=gnome-base/libgnome-2
app-admin/gnomesu
)
)
logrotate? ( app-admin/logrotate )
!hppa? (
logwatch? ( sys-apps/logwatch )
)
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
readline? ( >=sys-libs/readline-4.1 )"
RDEPEND="${DEPEND}
!bacula-clientonly? (
sys-block/mtx
app-arch/mt-st
)"
pkg_setup() {
export mydb=""
if ! use bacula-clientonly ; then
if use mysql ; then
mydb="mysql"
elif use postgres ; then
mydb="postgresql"
elif use sqlite ; then
mydb="sqlite"
else
mydb="mysql"
fi
export mydb="${mydb}"
fi
# create the daemon group and user
HAVE_BACULA_GROUP="`cat /etc/group | grep bacula\: 2>/dev/null`"
if [ -z "${HAVE_BACULA_GROUP}" ]; then
enewgroup bacula
eerror "The group bacula has been created. Any users you add to this"
eerror "group have access to files created by the daemons."
eerror ""
fi
if ! use bacula-clientonly ; then
HAVE_BACULA_USER="`id -u bacula 2>/dev/null`"
if [ -z "${HAVE_BACULA_USER}" ] ; then
enewuser "bacula" -1 -1 "/var/lib/bacula" "bacula,disk,tape,cdrom,cdrw"
eerror "The user bacula has been created. Please see the bacula manual"
eerror "for information about running bacula as a non-root user."
eerror ""
fi
fi
}
src_unpack() {
unpack ${A}
cd ${S}
# this resolves bacula bug #181
epatch ${FILESDIR}/${P}-cdrecord-configure.patch
# adjusts default configuration files for several binaries
# to /etc/bacula/<config> instead of ./<config>
epatch ${FILESDIR}/${P}-default-configs.patch
# secures temp file for mtx output
epatch ${FILESDIR}/${P}-mtxtmpfile.patch
# resolves security issue with random password generation
cp ${FILESDIR}/randpass-1.37.40 ${S}/autoconf/randpass
# removes tags for non-existant images from html docs
if use doc ; then
cd ${WORKDIR}/${PN}-doc-${DOC_VER}
epatch ${FILESDIR}/${PN}-doc-${DOC_VER}-latex-icons.patch
cd ${S}
fi
# autoconf
cd ${S}/autoconf
autoconf ${S}/autoconf/configure.in > ${S}/configure
cd ${S}
chmod 0750 ${S}/configure
}
src_compile() {
local myconf=""
if use bacula-clientonly ; then
myconf="${myconf} \
`use_enable bacula-clientonly client-only` \
`use_enable static static-fd`"
fi
if use bacula-console ; then
myconf="${myconf} \
`use_with X x` \
`use_enable gnome` \
`use_enable gnome tray-monitor` \
`use_enable wxwindows wx-console` \
`use_enable static static-cons`"
fi
myconf="${myconf} \
`use_with readline` \
`use_with tcpd tcp-wrappers`"
if ! use bacula-clientonly; then
# select database support
if [ ${mydb} == "postgresql" ]; then
myconf="${myconf} \
`use_with postgres postgresql`"
else
myconf="${myconf} \
`use_with ${mydb}`"
fi
myconf="${myconf} \
`use_enable static static-tools` \
`use_enable static static-fd` \
`use_enable static static-sd` \
`use_enable static static-dir`"
fi
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--with-pid-dir=/var/run \
--sysconfdir=/etc/bacula \
--infodir=/usr/share/info \
--with-subsys-dir=/var/lock/subsys \
--with-working-dir=/var/lib/bacula \
--with-scriptdir=/usr/libexec/bacula \
--with-dir-user=bacula \
--with-dir-group=bacula \
--with-sd-user=root \
--with-sd-group=bacula \
--with-fd-user=root \
--with-fd-group=bacula \
--enable-smartalloc \
--host=${CHOST} ${myconf} || die "Configure failed!"
emake || die "Failed primary build!"
}
src_install() {
emake DESTDIR=${D} install || die "Failed install to ${D} !"
if use static ; then
cd ${D}/usr/sbin
mv static-bacula-fd bacula-fd
mv static-bconsole bconsole
if ! use bacula-clientonly ; then
mv static-bacula-dir bacula-dir
mv static-bacula-sd bacula-sd
fi
if use gnome ; then
mv static-gnome-console gnome-console
fi
cd ${S}
fi
if use bacula-console ; then
if use gnome ; then
emake DESTDIR=${D} \
install-menu \
install-menu-xsu || die "Failed to install gnome menu files to ${D}" \
make_desktop_entry \
"gnome-console -c /etc/bacula/gnome-console.conf" \
"Bacula Console" /usr/share/pixmaps/bacula.png "app-admin" \
"/usr/sbin"
fi
fi
# extra files which 'make install' doesn't cover
if ! use bacula-clientonly ; then
# the database update scripts
diropts -m0750
dodir /usr/libexec/bacula/updatedb
insinto /usr/libexec/bacula/updatedb/
insopts -m0754
doins ${S}/updatedb/*
fperms 0640 /usr/libexec/bacula/updatedb/README
# the logrotate configuration
if use logrotate ; then
diropts -m0755
dodir /etc/logrotate.d
insinto /etc/logrotate.d
insopts -m0644
newins ${S}/scripts/logrotate bacula
fi
# the logwatch scripts
if use logwatch ; then
diropts -m0750
dodir /etc/log.d/scripts/services
dodir /etc/log.d/conf/logfiles
dodir /etc/log.d/conf/services
cd ${S}/scripts/logwatch
emake DESTDIR=${D} install || die "Failed to install logwatch scripts to ${D} !"
cd ${S}
fi
fi
# documentation
for my_doc in ${S}/{ChangeLog,LICENSE,README,ReleaseNotes,kernstodo,doc/BaculaRoadMap_*.pdf}
do
dodoc ${my_doc}
done
if use doc ; then
dodoc ${WORKDIR}/${PN}-doc-${DOC_VER}/{bacula.pdf,developers.pdf}
diropts -m0755
dodir /usr/share/doc/${PF}/html-manual
dodir /usr/share/doc/${PF}/web-manual
insopts -m0644
insinto /usr/share/doc/${PF}/html-manual
doins ${WORKDIR}/${PN}-doc-${DOC_VER}/html-manual/*
insinto /usr/share/doc/${PF}/web-manual
doins ${WORKDIR}/${PN}-doc-${DOC_VER}/web-manual/*
fi
# clean up permissions left broken by install
fperms 0644 ${D}/usr/libexec/bacula/query.sql
# setup init scripts
if ! use bacula-clientonly ; then
my_services="bacula-fd bacula-sd bacula-dir"
else
my_services="bacula-fd"
fi
exeinto /etc/init.d/
insinto /etc/conf.d/
if use bacula-split-init ; then
my_scripts=""
for service in ${my_services} ; do
my_scripts="${my_scripts} ${service}"
done
else
my_scripts="bacula-all"
fi
for script in ${my_scripts}; do
cp ${FILESDIR}/${PV}/${script}-conf ${T}/${script}.conf
cp ${FILESDIR}/${PV}/${script}-init ${T}/${script}.init
if [ "${mydb}" == "sqlite" ]; then
sed -i -e "s:%database%::" ${T}/${script}.init
else
sed -i -e "s:%database%:${mydb}:" ${T}/${script}.init
fi
sed -i -e "s:%services%:${my_services}:" ${T}/${script}.conf
newexe ${T}/${script}.init ${script}
newins ${T}/${script}.conf ${script}
done
}
pkg_postinst() {
diropts -m0750
dodir /var/lib/bacula
if use bacula-clientonly ; then
fowners root:bacula /var/lib/bacula
else
fowners bacula:bacula /var/lib/bacula
fi
if ! use bacula-clientonly ; then
elog "If this is a new install, you must create the ${mydb} databases with:"
elog " /usr/libexec/bacula/create_${mydb}_database"
elog " /usr/libexec/bacula/make_${mydb}_tables"
elog " /usr/libexec/bacula/grant_${mydb}_privileges"
elog ""
elog "If you're upgrading from a major release, you must upgrade your bacula catalog database."
elog "Please read the manual chapter for how to upgrade your database."
elog "You can find database upgrade scripts in /usr/libexec/bacula/updatedb."
elog ""
fi
}
|