class Sprinkle::Installers::FreebsdPortinstall

FreeBSD Portinstall Installer

The Portinstall installer installs FreeBSD ports. It uses the ports-mgmt/portupgrade port to install. Before usage, the ports system must be installed and read on the target operating system. It is recommended to use `portsnap fetch extract` to install the ports system.

Example Usage

Installing the magic_beans port.

package :magic_beans do
  freebsd_portinstall 'magic/magic_beans'
end

Public Instance Methods

freebsd_portinstall(port, options={}, &block) click to toggle source
# File lib/sprinkle/installers/freebsd_portinstall.rb, line 24
def freebsd_portinstall(port, options={}, &block)
  install FreebsdPortinstall.new(self, port, options, &block)
end