getting back free space

for example, i was installing krusader from ports, and after 80% of process cancel operation. now i have no package krusader in pkg_info, but have used space. how can i remove all this not installed files and other garbage?
 
Code:
cd /usr/ports/.../krusader
/bin/rm -rf work
less pkg-plist  # stuff to remove
make run-depends-list  # if you wish to remove dependencies, though not all of them...
 
Or to clean up all work directories in the ports tree:
# rm -r /usr/ports/*/*/work
 
Back
Top