Index: head/sysutils/bacula-bat/Makefile =================================================================== --- head/sysutils/bacula-bat/Makefile (revision 406808) +++ head/sysutils/bacula-bat/Makefile (revision 406809) @@ -1,31 +1,30 @@ # Created by: Dan Langille # $FreeBSD$ PORTNAME= bacula -PORTREVISION= 3 PKGNAMESUFFIX= -bat COMMENT= Network backup solution (GUI) LIB_DEPENDS+= libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 \ libbac.so:${PORTSDIR}/sysutils/bacula-client USES= pkgconfig USE_QT4= qmake_build uic_build moc_build rcc_build WITH_BAT= yes PLIST= ${.CURDIR}/pkg-plist MAKE_ENV+= MAKEOBJDIRPREFIX=/ MASTERDIR= ${.CURDIR}/../../sysutils/bacula-server CONFIGURE_ARGS+= --enable-bat \ --with-qwt=${LOCALBASE}/lib \ --disable-build-dird \ --disable-build-stored \ --enable-client-only OPTIONS_DEFINE= # OPTIONS_DEFAULT=# .include "${MASTERDIR}/Makefile" Index: head/sysutils/bacula-client/Makefile =================================================================== --- head/sysutils/bacula-client/Makefile (revision 406808) +++ head/sysutils/bacula-client/Makefile (revision 406809) @@ -1,18 +1,19 @@ # $FreeBSD$ PORTNAME= bacula -PORTREVISION= 3 PKGNAMESUFFIX= -client COMMENT= Network backup solution (client) WITH_CLIENT_ONLY=yes USE_RC_SUBR= bacula-fd PLIST= ${PKGDIR}/pkg-plist.client MASTERDIR= ${.CURDIR}/../../sysutils/bacula-server -OPTIONS_DEFINE= NLS PYTHON -OPTIONS_DEFAULT=# +OPTIONS_DEFINE= NLS PYTHON ENABLE_IPV6 +OPTIONS_DEFAULT=ENABLE_IPV6 + +ENABLE_IPV6_DESC= Enable IPv6 support .include "${MASTERDIR}/Makefile" Index: head/sysutils/bacula-client-static/Makefile =================================================================== --- head/sysutils/bacula-client-static/Makefile (revision 406808) +++ head/sysutils/bacula-client-static/Makefile (revision 406809) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= bacula -PORTREVISION= 2 PKGNAMESUFFIX= -client-static COMMENT= Network backup solution (static client) PLIST= ${.CURDIR}/pkg-plist MASTERDIR= ${.CURDIR}/../../sysutils/bacula-server PLIST_FILES= sbin/bacula-fd-static \ sbin/bconsole-static OPTIONS_DEFINE= NLS OPTIONS_DEFAULT=# CONFIGURE_ARGS+= --enable-client-only \ --enable-static-fd \ --enable-static-cons \ --disable-libtool \ --disable-build-dird \ --disable-build-stored .include "${MASTERDIR}/Makefile" Index: head/sysutils/bacula-server/Makefile =================================================================== --- head/sysutils/bacula-server/Makefile (revision 406808) +++ head/sysutils/bacula-server/Makefile (revision 406809) @@ -1,206 +1,211 @@ # Created by: Dmitry Sivachenko # $FreeBSD$ PORTNAME= bacula -DISTVERSION= 7.2.0 -PORTREVISION?= 1 +DISTVERSION= 7.4.0 CATEGORIES?= sysutils MASTER_SITES= SF/bacula/bacula/${PORTVERSION} PKGNAMEPREFIX?= # PKGNAMESUFFIX?= -server MAINTAINER= dvl@FreeBSD.org COMMENT?= Network backup solution (server) USES+= libtool readline shebangfix SHEBANG_FILES= scripts/dvd-handler.in python_OLD_CMD= @PYTHON@ USE_OPENSSL= yes CONFLICTS?= bacula5-server-* LIB_DEPENDS+= liblzo2.so:${PORTSDIR}/archivers/lzo2 USERS= bacula GROUPS= ${USERS} PLIST_SUB+= LIB_VERSION=${PORTVERSION} GNU_CONFIGURE= yes USE_LDCONFIG= yes CPPFLAGS+= -I/usr/include/readline -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_DEFINE?= SQLITE3 MYSQL PGSQL MTX PYTHON NLS -OPTIONS_DEFAULT?= NLS PGSQL +OPTIONS_DEFINE?= SQLITE3 MYSQL PGSQL MTX PYTHON NLS ENABLE_IPV6 +OPTIONS_DEFAULT?= NLS PGSQL ENABLE_IPV6 MTX_DESC= Install mtx for control of autochanger devices +ENABLE_IPV6_DESC= Enable IPv6 support .if ${PKGNAMESUFFIX} == "-client" || ${PKGNAMESUFFIX} == "-server" #Till end of the file PYTHON_USES= python PYTHON_CONFIGURE_ON= --with-python=yes .if !defined(WITH_CLIENT_ONLY) LIB_DEPENDS+= libbac-${DISTVERSION}.so:${PORTSDIR}/sysutils/bacula-client USE_RC_SUBR?= bacula-dir bacula-sd .endif .if defined(WITH_CLIENT_ONLY) SUB_FILES+= pkg-install.client pkg-deinstall.client pkg-message.client .else SUB_FILES+= pkg-message.server .endif CONFIGURE_ARGS+=--with-tcp-wrappers=/usr/lib \ --enable-smartalloc \ --sysconfdir=${ETCDIR} \ --with-working-dir=${BACULA_DIR} \ --with-scriptdir=${PREFIX}/share/${PORTNAME} \ --disable-conio \ --enable-batch-insert \ --with-plugindir=${PREFIX}/lib \ --with-dump-email=root@localhost \ --with-job-email=root@localhost \ --with-db-name=bacula \ --with-sbin-perm=755 \ --with-db-user=bacula \ --with-logdir=/var/log \ --with-baseport=9101 .if defined(WITH_CLIENT_ONLY) CONFIGURE_ARGS+=--with-fd-user=root \ --with-fd-group=wheel .else CONFIGURE_ARGS+=--with-dir-user=${BACULA_USER} \ --with-dir-group=${BACULA_GROUP} \ --with-sd-user=${BACULA_USER} \ --with-sd-group=operator .endif # The user/group IDs below are registered, see # http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html#users-and-groups # BACULA_USER?= bacula BACULA_GROUP?= ${BACULA_USER} BACULA_UID?= bacula BACULA_GID?= ${BACULA_UID} BACULA_DIR?= /var/db/bacula PLIST_SUB+= BACULA_DIR=${BACULA_DIR} SUB_LIST= BACULA_USER=${BACULA_USER} \ BACULA_GROUP=${BACULA_GROUP} \ BACULA_UID=${BACULA_UID} \ BACULA_GID=${BACULA_GID} \ BACULA_DIR=${BACULA_DIR} NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls # Client only or full server version .if defined(WITH_CLIENT_ONLY) CONFFILES= fd CONFIGURE_ARGS+= --enable-client-only PKGDEINSTALL= ${FILESDIR}/pkg-deinstall.client PKGINSTALL= ${FILESDIR}/pkg-install.client .else # Server only Options CONFFILES= sd dir # Server default database MYSQL_CONFIGURE_ON= --with-mysql=yes MYSQL_USE= MYSQL=yes SQLITE3_CONFIGURE_ON= --with-sqlite3=yes SQLITE3_LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 PGSQL_CONFIGURE_ON= --with-postgresql=yes PGSQL_USES= pgsql MTX_RUN_DEPENDS= ${LOCALBASE}/sbin/mtx:${PORTSDIR}/misc/mtx .include .if ${PORT_OPTIONS:MMYSQL} DBTYPE= mysql SUB_LIST+= REQ_MYSQL=mysql REQ_PGSQL="" .elif ${PORT_OPTIONS:MSQLITE3} DBTYPE= sqlite3 .else DBTYPE= postgresql SUB_LIST+= REQ_MYSQL="" REQ_PGSQL=postgresql .endif PLIST_SUB+= DBTYPE=${DBTYPE} .endif .include .if ${readline_ARGS} == "port" readline_CONFIGURE= ${LOCALBASE} .else readline_CONFIGURE= yes .endif +# if IPv6 is not in the kernel, it generates many errors +.if ! ${PORT_OPTIONS:MENABLE_IPV6} +CONFIGURE_ARGS+= --disable-ipv6 +.endif + CONFIGURE_ARGS+= --with-readline=${readline_CONFIGURE} .if defined(WITH_CLIENT_ONLY) MP8+= bacula.8 bacula-fd.8 bconsole.8 .else MP8+= bacula-dir.8 bacula-sd.8 bcopy.8 bextract.8 bls.8 bscan.8 \ btape.8 btraceback.8 dbcheck.8 bwild.8 bregex.8 MP1+= bsmtp.1 bacula-tray-monitor.1 .endif MAKE_ENV+= MAN8="${MP8}" MAN1="${MP1}" post-patch: # This port does not install docs. See bacula-docs for that @${REINPLACE_CMD} -e '/docdir/d' ${WRKSRC}/Makefile.in # Change $(ECHO) to echo in some Makefile.in files @${REINPLACE_CMD} -e 's|$$(ECHO)|echo|g' \ ${WRKSRC}/src/filed/Makefile.in \ ${WRKSRC}/src/console/Makefile.in \ ${WRKSRC}/src/cats/Makefile.in \ ${WRKSRC}/src/dird/Makefile.in \ ${WRKSRC}/src/stored/Makefile.in \ ${WRKSRC}/src/tools/Makefile.in # Default bconsole.conf is in ${ETCDIR} @${REINPLACE_CMD} -e 's|./bconsole.conf|${ETCDIR}/bconsole.conf|g' ${WRKSRC}/src/console/console.c @${REINPLACE_CMD} -e 's|^MAN8 =|MAN8 ?=|g' -e 's|^MAN1 =|MAN1 ?=|g' ${WRKSRC}/manpages/Makefile.in .if defined(WITH_CLIENT_ONLY) # In client port only install startup script out of script dir (see below post-install) # Dont mkdir ${PREFIX}/share/bacula cause it's empty @${REINPLACE_CMD} -e 's|^\(fd_subdirs = .*\)scripts\(.*\)|\1\2|g' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|\(.*$${MKDIR} $${DESTDIR}$${scriptdir}\)|#\1|g' ${WRKSRC}/Makefile.in .else # In server port don't install filed @${REINPLACE_CMD} -e '/^fd_subdirs = /s|src/filed||' -e 's|src/console||' \ ${WRKSRC}/Makefile.in .endif .if !target(post-install) post-install: .if defined(WITH_CLIENT_ONLY) ${MV} ${STAGEDIR}${ETCDIR}/bconsole.conf ${STAGEDIR}${ETCDIR}/bconsole.conf.sample .else ${INSTALL_SCRIPT} ${FILESDIR}/chio-bacula ${STAGEDIR}${PREFIX}/sbin ${INSTALL_DATA} ${FILESDIR}/bacula-barcodes ${STAGEDIR}${ETCDIR}/bacula-barcodes.sample - #the following are installed by the -CLIENT port, and I (ler@lerctr.org) + #the following are installed by the -CLIENT port, and I (ler@lerctr.org) #don't know how to remove them from being built for the -SERVER port. ${RM} ${STAGEDIR}${LOCALBASE}/lib/bpipe-fd.so ${RM} ${STAGEDIR}${LOCALBASE}/lib/libbac-${PORTVERSION}.so ${RM} ${STAGEDIR}${LOCALBASE}/lib/libbac.so ${RM} ${STAGEDIR}${LOCALBASE}/lib/libbaccfg-${PORTVERSION}.so ${RM} ${STAGEDIR}${LOCALBASE}/lib/libbaccfg.so ${RM} ${STAGEDIR}${LOCALBASE}/lib/libbacfind-${PORTVERSION}.so ${RM} ${STAGEDIR}${LOCALBASE}/lib/libbacfind.so .endif for na in ${CONFFILES}; do \ ${MV} ${STAGEDIR}${ETCDIR}/bacula-$$na.conf ${STAGEDIR}${ETCDIR}/bacula-$$na.conf.sample; \ done .endif .else .include "${MASTERDIR}/Makefile.common" .endif # -client and -server are defined .include Index: head/sysutils/bacula-server/distinfo =================================================================== --- head/sysutils/bacula-server/distinfo (revision 406808) +++ head/sysutils/bacula-server/distinfo (revision 406809) @@ -1,2 +1,2 @@ -SHA256 (bacula-7.2.0.tar.gz) = 818606fe69c50c3ca21b91e609d4ac6ca08e4189419b89d3ec2e81c8c0389e1c -SIZE (bacula-7.2.0.tar.gz) = 3301720 +SHA256 (bacula-7.4.0.tar.gz) = fe850b783523edb19fb4dbfa8c44752d20955121b71a52b0740a9e765bfd73cb +SIZE (bacula-7.4.0.tar.gz) = 3314218 Index: head/sysutils/bacula-server/files/patch-src_findlib_fstype.c =================================================================== --- head/sysutils/bacula-server/files/patch-src_findlib_fstype.c (revision 406808) +++ head/sysutils/bacula-server/files/patch-src_findlib_fstype.c (nonexistent) @@ -1,22 +0,0 @@ ---- src/findlib/fstype.c.orig 2015-08-13 13:52:24 UTC -+++ src/findlib/fstype.c -@@ -31,7 +31,9 @@ - #include "find.h" - #include - #include -- -+#ifdef HAVE_SUN_OS -+ #include -+#endif - #else /* Set up for testing a stand alone program */ - - #include -@@ -373,7 +375,7 @@ bool read_mtab(mtab_handler_t *mtab_hand - mtab_handler(user_ctx, &st, mnt.mnt_fstype, mnt.mnt_mountp, - mnt.mnt_mntopts, mnt.mnt_special); - } -- fclose(fp); -+ fclose(mntfp); - V(mutex); - #endif - Property changes on: head/sysutils/bacula-server/files/patch-src_findlib_fstype.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/bacula-server/files/patch-src_filed_acl.c =================================================================== --- head/sysutils/bacula-server/files/patch-src_filed_acl.c (revision 406808) +++ head/sysutils/bacula-server/files/patch-src_filed_acl.c (nonexistent) @@ -1,190 +0,0 @@ ---- src/filed/acl.c.orig 2015-08-13 13:52:24 UTC -+++ src/filed/acl.c -@@ -927,7 +927,7 @@ static bacl_rtn_code generic_set_acl_on_ - * Define the supported ACL streams for this OS - */ - static int os_access_acl_streams[1] = { -- STREAM_ACL_DARWIN_ACCESS_ACL -+ STREAM_ACL_DARWIN_ACCESS - }; - static int os_default_acl_streams[1] = { - -1 -@@ -988,11 +988,11 @@ static bacl_rtn_code (*os_restore_acl_st - * Define the supported ACL streams for these OSes - */ - static int os_access_acl_streams[2] = { -- STREAM_ACL_FREEBSD_ACCESS_ACL, -- STREAM_ACL_FREEBSD_NFS4_ACL -+ STREAM_ACL_FREEBSD_ACCESS, -+ STREAM_ACL_FREEBSD_NFS4 - }; - static int os_default_acl_streams[1] = { -- STREAM_ACL_FREEBSD_DEFAULT_ACL -+ STREAM_ACL_FREEBSD_DEFAULT - }; - - static bacl_rtn_code freebsd_backup_acl_streams(JCR *jcr, FF_PKT *ff_pkt) -@@ -1065,7 +1065,7 @@ static bacl_rtn_code freebsd_backup_acl_ - return bacl_rtn_fatal; - - if (jcr->acl_ctx->content_length > 0) { -- if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_NFS4_ACL) == bacl_rtn_fatal) -+ if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_NFS4) == bacl_rtn_fatal) - return bacl_rtn_fatal; - } - break; -@@ -1077,7 +1077,7 @@ static bacl_rtn_code freebsd_backup_acl_ - return bacl_rtn_fatal; - - if (jcr->acl_ctx->content_length > 0) { -- if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_ACCESS_ACL) == bacl_rtn_fatal) -+ if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_ACCESS) == bacl_rtn_fatal) - return bacl_rtn_fatal; - } - -@@ -1088,7 +1088,7 @@ static bacl_rtn_code freebsd_backup_acl_ - if (generic_get_acl_from_os(jcr, BACL_TYPE_DEFAULT) == bacl_rtn_fatal) - return bacl_rtn_fatal; - if (jcr->acl_ctx->content_length > 0) { -- if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_DEFAULT_ACL) == bacl_rtn_fatal) -+ if (send_acl_stream(jcr, STREAM_ACL_FREEBSD_DEFAULT) == bacl_rtn_fatal) - return bacl_rtn_fatal; - } - } -@@ -1113,13 +1113,13 @@ static bacl_rtn_code freebsd_restore_acl - */ - switch (stream) { - case STREAM_UNIX_ACCESS_ACL: -- case STREAM_ACL_FREEBSD_ACCESS_ACL: -+ case STREAM_ACL_FREEBSD_ACCESS: - case STREAM_UNIX_DEFAULT_ACL: -- case STREAM_ACL_FREEBSD_DEFAULT_ACL: -+ case STREAM_ACL_FREEBSD_DEFAULT: - acl_enabled = pathconf(jcr->last_fname, _PC_ACL_EXTENDED); - acl_type_name = "POSIX"; - break; -- case STREAM_ACL_FREEBSD_NFS4_ACL: -+ case STREAM_ACL_FREEBSD_NFS4: - #if defined(_PC_ACL_NFS4) - acl_enabled = pathconf(jcr->last_fname, _PC_ACL_NFS4); - #endif -@@ -1159,12 +1159,12 @@ static bacl_rtn_code freebsd_restore_acl - */ - switch (stream) { - case STREAM_UNIX_ACCESS_ACL: -- case STREAM_ACL_FREEBSD_ACCESS_ACL: -+ case STREAM_ACL_FREEBSD_ACCESS: - return generic_set_acl_on_os(jcr, BACL_TYPE_ACCESS, content, content_length); - case STREAM_UNIX_DEFAULT_ACL: -- case STREAM_ACL_FREEBSD_DEFAULT_ACL: -+ case STREAM_ACL_FREEBSD_DEFAULT: - return generic_set_acl_on_os(jcr, BACL_TYPE_DEFAULT, content, content_length); -- case STREAM_ACL_FREEBSD_NFS4_ACL: -+ case STREAM_ACL_FREEBSD_NFS4: - return generic_set_acl_on_os(jcr, BACL_TYPE_NFS4, content, content_length); - default: - break; -@@ -1273,11 +1273,11 @@ static bacl_rtn_code (*os_restore_acl_st - * Define the supported ACL streams for this OS - */ - static int os_access_acl_streams[1] = { -- STREAM_ACL_TRU64_ACCESS_ACL -+ STREAM_ACL_TRU64_ACCESS - }; - static int os_default_acl_streams[2] = { -- STREAM_ACL_TRU64_DEFAULT_ACL, -- STREAM_ACL_TRU64_DEFAULT_DIR_ACL -+ STREAM_ACL_TRU64_DEFAULT, -+ STREAM_ACL_TRU64_DEFAULT_DIR - }; - - static bacl_rtn_code tru64_backup_acl_streams(JCR *jcr, FF_PKT *ff_pkt) -@@ -1564,8 +1564,8 @@ char *acl_strerror(int); - * Define the supported ACL streams for this OS - */ - static int os_access_acl_streams[2] = { -- STREAM_ACL_SOLARIS_ACLENT, -- STREAM_ACL_SOLARIS_ACE -+ STREAM_ACL_SOLARIS_POSIX, -+ STREAM_ACL_SOLARIS_NFS4 - }; - static int os_default_acl_streams[1] = { - -1 -@@ -1653,10 +1653,10 @@ static bacl_rtn_code solaris_backup_acl_ - - switch (acl_type(aclp)) { - case ACLENT_T: -- stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_ACLENT); -+ stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_POSIX); - break; - case ACE_T: -- stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_ACE); -+ stream_status = send_acl_stream(jcr, STREAM_ACL_SOLARIS_NFS4); - break; - default: - break; -@@ -1673,8 +1673,8 @@ static bacl_rtn_code solaris_restore_acl - acl_t *aclp; - int acl_enabled, error; - -- if (stream != STREAM_UNIX_ACCESS_ACL || stream != STREAM_ACL_SOLARIS_ACLENT || -- stream != STREAM_ACL_SOLARIS_ACE) { -+ if (stream != STREAM_UNIX_ACCESS_ACL || stream != STREAM_ACL_SOLARIS_POSIX || -+ stream != STREAM_ACL_SOLARIS_NFS4) { - return bacl_rtn_error; - } - -@@ -1709,7 +1709,7 @@ static bacl_rtn_code solaris_restore_acl - * On a filesystem with ACL support make sure this particular ACL type can be restored. - */ - switch (stream) { -- case STREAM_ACL_SOLARIS_ACLENT: -+ case STREAM_ACL_SOLARIS_POSIX: - /* - * An aclent can be restored on filesystems with _ACL_ACLENT_ENABLED or _ACL_ACE_ENABLED support. - */ -@@ -1720,7 +1720,7 @@ static bacl_rtn_code solaris_restore_acl - return bacl_rtn_error; - } - break; -- case STREAM_ACL_SOLARIS_ACE: -+ case STREAM_ACL_SOLARIS_NFS4: - /* - * An ace can only be restored on a filesystem with _ACL_ACE_ENABLED support. - */ -@@ -1750,7 +1750,7 @@ static bacl_rtn_code solaris_restore_acl - * Validate that the conversion gave us the correct acl type. - */ - switch (stream) { -- case STREAM_ACL_SOLARIS_ACLENT: -+ case STREAM_ACL_SOLARIS_POSIX: - if (acl_type(aclp) != ACLENT_T) { - Mmsg1(jcr->errmsg, - _("wrong encoding of acl type in acl stream on file \"%s\"\n"), -@@ -1758,7 +1758,7 @@ static bacl_rtn_code solaris_restore_acl - return bacl_rtn_error; - } - break; -- case STREAM_ACL_SOLARIS_ACE: -+ case STREAM_ACL_SOLARIS_NFS4: - if (acl_type(aclp) != ACE_T) { - Mmsg1(jcr->errmsg, - _("wrong encoding of acl type in acl stream on file \"%s\"\n"), -@@ -1802,7 +1802,7 @@ static bacl_rtn_code solaris_restore_acl - * Define the supported ACL streams for this OS - */ - static int os_access_acl_streams[1] = { -- STREAM_ACL_SOLARIS_ACLENT -+ STREAM_ACL_SOLARIS_POSIX - }; - static int os_default_acl_streams[1] = { - -1 -@@ -1861,7 +1861,7 @@ static bacl_rtn_code solaris_backup_acl_ - pm_strcpy(jcr->acl_ctx->content, acl_text); - actuallyfree(acl_text); - free(acls); -- return send_acl_stream(jcr, STREAM_ACL_SOLARIS_ACLENT); -+ return send_acl_stream(jcr, STREAM_ACL_SOLARIS_POSIX); - } - - berrno be; Property changes on: head/sysutils/bacula-server/files/patch-src_filed_acl.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/bacula-server/files/patch-src_cats_make__catalog__backup.pl.in =================================================================== --- head/sysutils/bacula-server/files/patch-src_cats_make__catalog__backup.pl.in (nonexistent) +++ head/sysutils/bacula-server/files/patch-src_cats_make__catalog__backup.pl.in (revision 406809) @@ -0,0 +1,8 @@ +--- src/cats/make_catalog_backup.pl.in.orig 2015-08-13 13:52:24 UTC ++++ src/cats/make_catalog_backup.pl.in +@@ -1,4 +1,4 @@ +-#!/usr/bin/env perl ++#!/usr/local/bin/perl + # + # Author: Eric Bollengier, Copyright, 2006 + # License: BSD 2-Clause; see file LICENSE-FOSS Property changes on: head/sysutils/bacula-server/files/patch-src_cats_make__catalog__backup.pl.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property