diff options
author | Michael Scheidell <scheidell@FreeBSD.org> | 2012-01-15 22:35:00 +0000 |
---|---|---|
committer | Michael Scheidell <scheidell@FreeBSD.org> | 2012-01-15 22:35:00 +0000 |
commit | e3df43de76e2548ed76e608673ad346e2ea6f900 (patch) | |
tree | 04656ba819afa302af6361dc8720744c404c1ee7 /sysutils | |
parent | 0ab316553c4ae35e7873a22debada2f4895a1590 (diff) | |
download | ports-e3df43de76e2548ed76e608673ad346e2ea6f900.tar.gz ports-e3df43de76e2548ed76e608673ad346e2ea6f900.zip |
- Update to version 5.2.3
PR: ports/164061
Submitted by: Valery Komarov <komarov@valerka.net>
Approved by: dan@langille.org (maintainer), gabor (mentor, implicit)
Notes
Notes:
svn path=/head/; revision=289288
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/bacula-server/Makefile | 4 | ||||
-rw-r--r-- | sysutils/bacula-server/distinfo | 4 | ||||
-rw-r--r-- | sysutils/bacula-server/files/patch-manpages__Makefile.in | 18 |
3 files changed, 4 insertions, 22 deletions
diff --git a/sysutils/bacula-server/Makefile b/sysutils/bacula-server/Makefile index 15905eb7c6c7..bc6f09841a4d 100644 --- a/sysutils/bacula-server/Makefile +++ b/sysutils/bacula-server/Makefile @@ -6,7 +6,7 @@ # PORTNAME= bacula -DISTVERSION= 5.2.2 +DISTVERSION= 5.2.3 CATEGORIES?= sysutils MASTER_SITES= SF/bacula/bacula/${PORTVERSION} @@ -138,7 +138,7 @@ PLIST_SUB+= NOSF="" .endif #Build bwx-console is deprecated use bacula-bat instead .if defined(WITH_WXCONSOLE) -IGNORE= Please use sysutils/bacula-bat instead of wxconsole +IGNORE= please use sysutils/bacula-bat instead of wxconsole USE_WX= 2.4 CONFIGURE_ARGS+= --enable-bwx-console CONFIGURE_ENV+= WXCONFIG="${WX_CONFIG}" diff --git a/sysutils/bacula-server/distinfo b/sysutils/bacula-server/distinfo index cfd6bceb8e45..27afe20e7a04 100644 --- a/sysutils/bacula-server/distinfo +++ b/sysutils/bacula-server/distinfo @@ -1,2 +1,2 @@ -SHA256 (bacula-5.2.2.tar.gz) = d80f3532bd9c353dae00532b52efa60a01e8dce7ff045a717a7b42d820ca0959 -SIZE (bacula-5.2.2.tar.gz) = 4011125 +SHA256 (bacula-5.2.3.tar.gz) = 6224f7139ceafa26f104f0140fdddac981c41c9940ae2a779e64bb4ae1ae492d +SIZE (bacula-5.2.3.tar.gz) = 4011303 diff --git a/sysutils/bacula-server/files/patch-manpages__Makefile.in b/sysutils/bacula-server/files/patch-manpages__Makefile.in deleted file mode 100644 index 0cfa9c9fdf08..000000000000 --- a/sysutils/bacula-server/files/patch-manpages__Makefile.in +++ /dev/null @@ -1,18 +0,0 @@ ---- ./manpages/Makefile.in.orig 2011-11-26 18:08:12.000000000 +0400 -+++ ./manpages/Makefile.in 2011-12-03 13:08:11.000000000 +0400 -@@ -31,9 +31,12 @@ - - install: install-manpages - if [ x@COMPRESS_MANPAGES@ = "xyes" ]; then \ -- for I in $(DESTDIR)/$(mandir)/man8/* $(DESTDIR)/$(mandir)/man1/*; do \ -- gzip -f $$I; \ -- done; \ -+ for I in ${MAN8}; do \ -+ gzip -f $(DESTDIR)/$(mandir)/man8/$$I; \ -+ done; \ -+ for I in ${MAN1}; do \ -+ gzip -f $(DESTDIR)/$(mandir)/man1/$$I; \ -+ done; \ - fi - - uninstall: |