From: Kern Sibbald Date: Sat, 30 Dec 2006 16:58:42 +0000 (+0000) Subject: Updates X-Git-Tag: Release-7.0.0~7165 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f00dfe8462525d4d61624cf2aed56841cf002012;p=bacula%2Fbacula Updates git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3868 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/gui/Makefile b/gui/Makefile index a026ecc2c6..40655a5a72 100644 --- a/gui/Makefile +++ b/gui/Makefile @@ -6,9 +6,9 @@ # autoconf/Make.common.in -*- Makefile -*- # release date (man), LSM date, version number/name, current maintainer -DATE="18 January 2006" +DATE="28 December 2006" LSMDATE=@LSMDATE@ -VERSION=1.38.5 +VERSION=2.0.0 VERNAME=bacula-$(VERSION)# MAINT=Kern Sibbald# MAINTEMAIL=# @@ -135,6 +135,38 @@ release-bimagemgr: echo "bimagemgr release is in: $$cwd/bimagemgr-$(VERSION).tar.gz"; \ echo " ") -release: clean release-bacula-web release-bimagemgr +release-brestore: + (cwd=`pwd`; rm -rf /tmp/brestore-$(VERSION); \ + cd ..; cp -rp $$cwd/brestore /tmp/brestore-$(VERSION); \ + cd /tmp/brestore-$(VERSION); \ + make clean; \ + find . -name ".#*" -exec rm -rf {} \; ; \ + find . -name "CVS" -exec rm -rf {} \; ; \ + find . -name ".cvsignore" -exec rm -rf {} \; ; \ + rm -rf autom4te.cache; \ + cd ..; \ + tar cvfz $$cwd/brestore-$(VERSION).tar.gz brestore-$(VERSION); \ + rm -rf /tmp/brestore-$(VERSION); \ + echo " "; \ + echo "brestore release is in: $$cwd/brestore-$(VERSION).tar.gz"; \ + echo " ") + +release-bweb: + (cwd=`pwd`; rm -rf /tmp/bweb-$(VERSION); \ + cd ..; cp -rp $$cwd/bweb /tmp/bweb-$(VERSION); \ + cd /tmp/bweb-$(VERSION); \ + make clean; \ + find . -name ".#*" -exec rm -rf {} \; ; \ + find . -name "CVS" -exec rm -rf {} \; ; \ + find . -name ".cvsignore" -exec rm -rf {} \; ; \ + rm -rf autom4te.cache; \ + cd ..; \ + tar cvfz $$cwd/bweb-$(VERSION).tar.gz bweb-$(VERSION); \ + rm -rf /tmp/bweb-$(VERSION); \ + echo " "; \ + echo "bweb release is in: $$cwd/bweb-$(VERSION).tar.gz"; \ + echo " ") + +release: clean release-bacula-web release-bimagemgr release-brestore release-bweb # ------------------------------------------------------------------------