blob: 6ba80e3c20d24e7dc25f5fed5bb24c96da9642fe (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/bacula/bacula-1.29.ebuild,v 1.11 2004/05/31 19:21:32 vapier 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"
IUSE="readline tcpd ssl gnome mysql sqlite X static"
#theres a local sqlite use flag. use it -OR- mysql, not both.
#mysql is the reccomended choice ...
DEPEND=">=sys-libs/zlib-1.1.4
sys-libs/libtermcap-compat
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
mysql? >=dev-db/mysql-3.23
sqlite? >=dev-db/sqlite-2.7
X? virtual/x11"
RDEPEND="${DEPEND}
sys-apps/mtx app-arch/mt-st"
src_compile() {
local myconf
#define this var to something to skip building the other daemons ...
[ -n "$BUILD_CLIENT_ONLY" ] && myconf="${myconf} --enable-client-only"
#might be handy to have static bins in certain situations ...
use static && myconf="${myconf} --enable-static-tools \
--enable-static-fd --enable-static-sd \
--enable-static-dir --enable-static-cons"
use readline && myconf="${myconf} --enable-readline" || myconf="${myconf} --disable-readline"
use gnome && myconf="${myconf} --enable-gnome" || myconf="${myconf} --disable-gnome"
use tcpd && myconf="${myconf} --enable-tcpd" || myconf="${myconf} --disable-tcpd"
use mysql && myconf="${myconf} --with-mysql" || myconf="${myconf} --without-mysql"
use sqlite && myconf="${myconf} --with-sqlite" || myconf="${myconf} --without-sqlite"
use X && myconf="${myconf} --with-x" || myconf="${myconf} --without-x"
#not ./configure'able
# use ssl && myconf="${myconf} --enable-ssl" || myconf="${myconf} --disable-ssl"
#mysql is the reccomended choice ...
if use mysql && use sqlite
then
#supposed to have only one or the either, nuke '--with-sqlite'
myconf=${myconf/--with-sqlite/}
fi
einfo "myconf is: $myconf"
./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"
}
src_install() {
make DESTDIR=${D} install || die
rm -rf ${D}/var #empty dir
dosbin src/console/console
dodoc ChangeLog CheckList INSTALL README ReleaseNotes kernstodo doc/bacula.pdf
cp -a examples ${D}/usr/share/doc/${PF}
chown -R root:root ${D}/usr/share/doc/${PF} #hrmph :\
dohtml -r 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 two commands:"
einfo " sh /etc/bacula/create_mysql_database"
einfo " sh /etc/bacula/make_mysql_tables"
einfo "Then setup your configuration files in /etc/bacula and"
einfo "start the daemons:"
einfo " /etc/init.d/bacula start"
einfo
}
|