Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 75550 Details for
Bug 111677
Bacula 1.38.0 is out
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
new ebuild for version 1.38.3 of bacula.
bacula-1.38.3.ebuild (text/plain), 5.28 KB, created by
Tristan RENAUD
on 2005-12-26 05:51:56 UTC
(
hide
)
Description:
new ebuild for version 1.38.3 of bacula.
Filename:
MIME Type:
Creator:
Tristan RENAUD
Created:
2005-12-26 05:51:56 UTC
Size:
5.28 KB
patch
obsolete
># Copyright 1999-2005 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-r2.ebuild,v 1.5 2005/10/11 17:57:52 gustavoz Exp $ > >inherit eutils > >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="~amd64 ~x86" >IUSE="readline ncurses tcpd gnome mysql sqlite X static postgres client-only" > >DEPEND=">=sys-libs/zlib-1.1.4 > sys-block/mtx > readline? ( >=sys-libs/readline-4.1 ) > tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) > gnome? ( gnome-base/libgnome ) > gnome? ( app-admin/gnomesu ) > sqlite? ( =dev-db/sqlite-2* ) > mysql? ( >=dev-db/mysql-3.23 ) > postgres? ( >=dev-db/postgresql-7.4.0 ) > X? ( virtual/x11 ) > ncurses? ( sys-libs/ncurses ) > virtual/mta > dev-libs/gmp" > >RDEPEND="${DEPEND} > sys-block/mtx > app-arch/mt-st" > >pkg_setup() { > if ! use mysql && ! use postgres && ! use sqlite && ! use client-only; then > einfo "Bacula must compile with one database or client only." > einfo "Please add mysql, postgres, sqlite or client-only to your USE flags." > einfo "You may add the right USE flags on /etc/portage/package.use if you want to." > die "Invalid USE flags" > fi > > if ( use mysql && use sqlite ) || > ( use mysql && use postgres ) || > ( use sqlite && use postgres ) ; then > einfo "For this ebuild to work, only one database may be selected." > einfo "Please select mysql, postgres OR sqlite only on the USE flags." > einfo "You may add the right USE flags on /etc/portage/package.use if you want to." > die "Invalid USE flags" > fi >} > >src_unpack() { > unpack ${A} > cd ${S} > cp ${FILESDIR}/randpass-1.37.40 ${S}/autoconf/randpass > > # This changes the default conf files to /etc/bacula files > sed -i -e 's:"./gnome-console.conf":"/etc/bacula/gnome-console.conf":' \ > src/gnome-console/console.c src/gnome2-console/console.c > sed -i -e 's:"./tray-monitor.conf":"/etc/bacula/tray-monitor.conf":' \ > src/tray-monitor/tray-monitor.c > sed -i -e 's:"bacula-sd.conf":"/etc/bacula/bacula-sd.conf":' src/stored/bls.c \ > src/stored/bextract.c src/stored/bcopy.c src/stored/bscan.c src/stored/btape.c \ > src/stored/stored.c > sed -i -e 's:"./bacula-fd.conf":"/etc/bacula/bacula-fd.conf":' src/filed/filed.c > sed -i -e 's:"./bacula-dir.conf":"/etc/bacula/bacula-dir.conf":' src/dird/dird.c > sed -i -e 's:"./bconsole.conf":"/etc/bacula/bconsole.conf":' src/console/console.c >} > >src_compile() { > echo $TMPDIR > econf --enable-smartalloc \ > --with-dir-user=root \ > --with-dir-group=bacula \ > --with-sd-user=root \ > --with-sd-group=bacula \ > --with-fd-user=root \ > --with-fd-group=bacula \ > --sysconfdir=/etc/bacula \ > --with-subsys-dir=/var/lock/subsys \ > --with-working-dir=/var/bacula \ > --with-scriptdir=/var/lib/bacula \ > $(use_enable readline) \ > $(use_enable gnome) \ > $(use_enable static static-tools) \ > $(use_enable static static-fd) \ > $(use_enable static static-sd) \ > $(use_enable static static-dir) \ > $(use_enable static static-cons) \ > $(use_enable gnome tray-monitor) \ > $(use_enable tcpd tcp-wrappers) \ > $(use_enable X x) \ > $(use_enable readline) \ > $(use_enable client-only) \ > $(use_with mysql) \ > $(use_with postgres postgresql) \ > $(use_with sqlite) \ > $(use_enable ncurses conio) \ > || die "configure failed" > > emake || die "make failed" >} > >src_install() { > make DESTDIR=${D} install || die "install failed" > > if use static ; then > cd ${D}/usr/sbin > mv static-bacula-fd bacula-fd > mv static-bconsole bconsole > if ! use client-only ; 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 gnome ; then > make_desktop_entry \ > "gnome-console -c /etc/bacula/gnome-console.conf" \ > "Bacula Console" /usr/share/pixmaps/bacula.png "app-admin" \ > "/usr/sbin" > fi > > insinto /usr/share/pixmaps > doins scripts/bacula.png > > insinto /var/lib/bacula/update > doins updatedb/update* > > dodoc ChangeLog README ReleaseNotes > > exeinto /etc/init.d > newexe ${FILESDIR}/bacula-init3 bacula > > # fix init script > if use mysql ; then > USEDB='use mysql' > elif use postgres ; then > USEDB='use postgres' > else > USEDB='' > fi > sed -i -e "s:%%USE_DB%%:${USEDB}:" ${D}/etc/init.d/bacula > > insinto /etc/conf.d > newins ${FILESDIR}/bacula-conf bacula > if use client-only ; then > SERVICES='fd' > else > SERVICES='sd fd dir' > fi > sed -i -e "s:%%SERVICES%%:${SERVICES}:" ${D}/etc/conf.d/bacula > > chgrp bacula ${D}/usr/sbin/* > chgrp -R bacula ${D}/etc/bacula >} > >pkg_preinst() { > enewgroup bacula || die "problem adding group bacula" >} > >pkg_postinst() { > # the working directory > install -m0750 -o root -g bacula -d ${ROOT}/var/bacula > > if use mysql ; then DB="mysql" ; fi > if use postgres ; then DB="postgresql" ; fi > if use sqlite ; then DB="sqlite" ; fi > > if ! use client-only ; then > einfo "If this is a new install, you must create the ${DB} databases with:" > einfo " /var/lib/bacula/create_${DB}_database" > einfo " /var/lib/bacula/grant_${DB}_privileges" > einfo " /var/lib/bacula/make_${DB}_tables" > einfo > einfo "If you're upgrading from a major release, you must upgrade your bacula database." > einfo "Please read the manual chapter for how to upgrade your database." > einfo "You can find database upgrade scripts on /var/lib/bacula." > einfo > fi >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 111677
: 75550 |
75555
|
75586
|
77777