- Fix problem in cluster mode

- BUMP PORTREVISION

PR:		ports/146015
Submitted by:	Pascal Stumpf <pascal.stumpf@cubes.de>
This commit is contained in:
Sylvio Cesar Teixeira 2010-04-25 13:47:39 +00:00
parent 9beeb0ea71
commit bcd94c0776
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=253224
2 changed files with 12 additions and 1 deletions

View file

@ -7,7 +7,7 @@
PORTNAME= dvdrip
PORTVERSION= 0.98.11
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= multimedia
MASTER_SITES= http://www.exit1.org/dvdrip/dist/ \
CPAN

View file

@ -0,0 +1,11 @@
--- lib/Video/DVDRip/Cluster/Master.pm.orig 2010-04-24 17:21:50.000000000 -0300
+++ lib/Video/DVDRip/Cluster/Master.pm 2010-04-24 17:25:30.000000000 -0300
@@ -122,7 +122,7 @@
sub check_prerequisites {
my $class = shift;
- foreach my $path ( "/usr/bin", "/usr/sbin" ) {
+ foreach my $path ( "/usr/bin", "/usr/sbin", "/usr/local/sbin" ) {
if ( -f "$path/fping" and -x "$path/fping" ) {
$FPING = "$path/fping";
last;