# All ports must start with a RCS Id tag and a PortSystem declaration # Ensure that the RCS Id tag is commented out in your Portfile # RCS Id tag: # $Id: Portfile,v 1.12 2003/11/17 21:19:51 jkh Exp $ # PortSystem # where version is the version of the ports system your port relies upon. # This can NOT be commented out. PortSystem 1.0 # The name of the port name fetch # Its version information version 4.6.2-RELEASE # Categories and identifying keywords categories net # Email address(es) of the port's Maintainer(s) maintainers eric@opendarwin.org # A short description of this port description "A utility for fetching files by URL" # A long description, with more details long_description "fetch is a utility to fetch files by their URL, \ fetch originally comes from FreeBSD." # Master download sites for port's distribution file(s) master_sites http://www.opendarwin.org/~eric/ # Name of the distribution file, minus extract suffix (see below) distname ${portname}-${portversion} # (Optional) Explicitly set suffix (default: .tar.gz) #extract.suffix .tar.bz2 # (Optional) Use bzip2 instead of gzip for uncompressing distribution file #use_bzip2 yes # List of checksums for files to be fetched # # Currently the only supported checksum type is md5 checksums ${distname}${extract.suffix} md5 45627db03b6cf89b8dabae6d815dcd9b # Any patches which should be applied after extracting this port. These # should go in the files/ subdirectory of the port. #patchfiles patch-Makefiles patch-configure # Dependencies are defined by three settings: # depends_lib: installed at build time and at install time # depends_run: installed at install time # depends_build: installed at build time # # These options accept a list of depspecs. Depspecs are ':' delimited three # value lists of type:match:portname. The following types are supported: # # lib - The lib type requires the match argument in the # format . # bin - The bin type requires the match argument to be the full # executable name # - If a full path is specified as the type, the math argument # must be a complete regexp. # portname must be the name of a valid port to build and install # if the depspec is not matched. depends_lib lib:libfetch.3:libfetch # The type of configuration script this port uses. #configure.type gnu # The directory name of the subdirectory of work/ where this port extracts #worksrcdir fetch