Index: src/portlint.pl =================================================================== RCS file: /home/pcvs/ports/ports-mgmt/portlint/src/portlint.pl,v retrieving revision 1.128 diff -u -r1.128 portlint.pl --- src/portlint.pl 20 May 2012 16:36:50 -0000 1.128 +++ src/portlint.pl 13 Jul 2012 17:26:19 -0000 @@ -342,7 +342,7 @@ $File::Find::prune = 1; } elsif (-l) { &perror("WARN", $fullname, -1, "this is a symlink. ". - "CVS will ignore it."); + "Please remove it."); } elsif (-z) { &perror("FATAL", $fullname, -1, "empty file and should be removed. ". "If it still needs to be there, put a dummy comment ". @@ -365,6 +365,9 @@ } elsif (/README.html/) { &perror("FATAL", $fullname, -1, "for safety, be sure to cleanup ". "README.html files before committing the port."); + } elsif ($_ eq '.svn' && -d) { + &perror("FATAL", $fullname, -1, "for safety, be sure to cleanup ". + "Subversion files before committing the port."); } elsif ($_ eq 'CVS' && -d) { if ($newport) { &perror("FATAL", $fullname, -1, "for safety, be sure to cleanup ". @@ -2305,7 +2308,7 @@ ($newport ? 'for new port, ' : 'is it a new port? if so, '). "make \$$rcsidstr\$ tag in comment ". - "section empty, to make CVS happy."); + "section empty, to make SVN happy."); } } }