Does self have a manpage files?

Property definitions

nitc :: nitpackage $ MPackage :: has_man
	# Does `self` have a manpage files?
	private fun has_man: Bool do
		var man_path = self.man_path
		if man_path == null then return false
		return man_path.file_exists
	end
src/nitpackage.nit:391,2--396,4