# File lib/chef/provider/package/macports.rb, line 62
        def remove_package(name, version)
          command = "port deactivate #{name}"
          command << " @#{version}" if version and !version.empty?

          run_command_with_systems_locale(
            :command => command
          )
        end