Revision: 75583 http://trac.macports.org/changeset/75583 Author: raimue@macports.org Date: 2011-01-31 07:39:10 -0800 (Mon, 31 Jan 2011) Log Message: ----------- sysutils/boxbackup: * Fix broken post-activate hook (invalid command name "dir") * Use bsdmake for compatibility with base from trunk (GNU make -w flag) Modified Paths: -------------- trunk/dports/sysutils/boxbackup/Portfile Modified: trunk/dports/sysutils/boxbackup/Portfile =================================================================== --- trunk/dports/sysutils/boxbackup/Portfile 2011-01-31 12:36:51 UTC (rev 75582) +++ trunk/dports/sysutils/boxbackup/Portfile 2011-01-31 15:39:10 UTC (rev 75583) @@ -4,7 +4,7 @@ name boxbackup version 0.11rc5 -revision 1 +revision 2 categories sysutils net maintainers ecronin description completely automatic on-line backup system. @@ -34,6 +34,7 @@ --enable-gnu-readline use_parallel_build no +build.type bsd post-patch { reinplace "s|man/man|share/man/man|g" \ @@ -83,7 +84,7 @@ } post-activate { - if {[dir exists ${prefix}/etc/box]} { + if {[file isdir ${prefix}/etc/box]} { ui_warn "${prefix}/etc/box should be moved to ${prefix}/etc/boxbackup to complete upgrade." } if {[variant_isset server]} {
participants (1)
-
raimue@macports.org