Expanding upon zoul's answer.. to develop your list of files use:
svn stat | grep -v ignore.file | perl -ne 'chop; s/^.\s+//; print "$_ "'
Or if you have file names with spaces use:
svn stat | grep -v ignore.file | perl -ne 'chop; s/^.\s+//; print "\"$_\" "'