blob: 2ff491db8fa2461e0520cb1fcc01b3e83c2f2fe7 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/bacula/bacula-1.34.1.ebuild,v 1.12 2005/05/05 18:19:45 swegener Exp $
DESCRIPTION="featureful client/server network backup suite"
HOMEPAGE="http://www.bacula.org/"
SRC_URI="mirror://sourceforge/bacula/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
IUSE="X gnome mysql readline sqlite ssl static tcpd"
#theres a local sqlite use flag. use it -OR- mysql, not both.
#mysql is the reccomended choice ...
DEPEND=">=sys-libs/zlib-1.1.4
readline? ( >=sys-libs/readline-4.1 )
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
ssl? ( >=dev-libs/openssl-0.9.6 )
gnome? ( gnome-base/gnome-libs )
sqlite? ( >=dev-db/sqlite-2 )
mysql? ( >=dev-db/mysql-3.23 )
X? ( virtual/x11 )
virtual/mta
dev-libs/gmp"
RDEPEND="${DEPEND}
sys-block/mtx
app-arch/mt-st"
src_compile() {
local myconf=""
#define this to skip building the other daemons ...
[ -n "$BUILD_CLIENT_ONLY" ] \
&& myconf="${myconf} --enable-client-only"
myconf="
`use_enable readline`
`use_enable gnome`
`use_enable tcpd`
`use_enable X x`
"
#not ./configure'able
#`use_enable ssl`
# mysql is the reccomended choice ...
if use mysql
then
myconf="${myconf} --with-mysql=/usr"
elif use sqlite
then
myconf="${myconf} --with-sqlite=/usr/include"
elif use sqlite && use mysql
then
myconf="${myconf/--with-sqlite/}"
fi
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--with-pid-dir=/var/run \
--sysconfdir=/etc/bacula \
--infodir=/usr/share/info \
--with-subsys-dir=/var/lib/bacula \
--with-working-dir=/var/lib/bacula \
--host=${CHOST} ${myconf} || die "bad ./configure"
emake || die "compile problem"
if use static
then
cd ${S}/src/filed
make static-baula-fd
cd ${S}/src/console
make static-console
cd ${S}/src/dird
make static-bacula-dir
if use gnome
then
cd ${S}/src/gnome-console
fi
make static-gnome-console
cd ${S}/src/stored
make static-bacula-sd
fi
}
src_install() {
make DESTDIR=${D} install || die
if use static
then
cd ${S}/src/filed
cp static-bacula-fd ${D}/usr/sbin/bacula-fd
cd ${S}/src/console
cp static-console ${D}/usr/sbin/console
cd ${S}/src/dird
cp static-bacula-dir ${D}/usr/sbin/bacula-dir
if use gnome
then
cd ${S}/src/gnome-console
cp static-gnome-console ${D}/usr/sbin/gnome-console
fi
cd ${S}/src/storge
cp static-bacula-sd ${D}/usr/sbin/bacula-sd
fi
rm -rf ${D}/var #empty dir
for a in ${S}/{Changelog,CheckList,INSTALL \
README,ReleaseNotes,kernstodo,doc/bacula.pdf}
do
dodoc $a
done
cp -a ${S}/examples ${D}/usr/share/doc/${PF}
chown -R root:root ${D}/usr/share/doc/${PF} #hrmph :\
dohtml -r ${S}/doc/html-manual doc/home-page
exeinto /etc/init.d
newexe ${FILESDIR}/bacula-init bacula
}
pkg_postinst() {
# empty dir ...
install -m0755 -o root -g root -d ${ROOT}/var/lib/bacula
einfo
einfo "If this is a new install and you plan to use mysql for your"
einfo "catalog database, then you should now create it by doing"
einfo "these commands:"
einfo " sh /etc/bacula/grant_mysql_privileges"
einfo " sh /etc/bacula/create_mysql_database"
einfo " sh /etc/bacula/make_mysql_tables"
einfo
einfo "Then setup your configuration files in /etc/bacula and"
einfo "start the daemons:"
einfo " /etc/init.d/bacula start"
einfo
einfo "If upgrading from version 1.30 or below, please note that"
einfo "the database format has changed. Please read the"
einfo "release notes for how to upgrade your database!!!"
einfo
}
|