# File lib/chef/provider/package/macports.rb, line 54
        def purge_package(name, version)
          command = "port#{expand_options(@new_resource.options)} uninstall #{name}"
          command << " @#{version}" if version and !version.empty?
          run_command_with_systems_locale(
            :command => command
          )
        end