Index: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml
===================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml (revision 46272)
+++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml (revision 46273)
@@ -1,4827 +1,4827 @@
Configuring the MakefileConfiguring the Makefile is pretty
simple, and again we suggest looking at existing examples
before starting. Also, there is a
sample Makefile in this
handbook, so take a look and please follow the ordering of
variables and sections in that template to make the port easier
for others to read.Consider these problems in sequence during the
design of the new Makefile:The Original SourceDoes it live in DISTDIR as a standard
gzipped tarball named something like
foozolix-1.2.tar.gz? If so, go on
to the next step. If not, the distribution file format might
require overriding one or more of
DISTVERSION, DISTNAME,
EXTRACT_CMD,
EXTRACT_BEFORE_ARGS,
EXTRACT_AFTER_ARGS,
EXTRACT_SUFX, or
DISTFILES.In the worst case, create a custom
do-extract target to override the
default. This is rarely, if ever, necessary.NamingThe first part of the port's Makefile
names the port, describes its version number, and lists it in
the correct category.PORTNAME and
PORTVERSIONSet PORTNAME to the base
name of the port, and PORTVERSION to the
version number of the port.The package name must be unique among all of the ports
tree. Make sure that there is not already a port with the same
PORTNAME and if there is add one of PKGNAMEPREFIX
or PKGNAMESUFFIX.PORTREVISION and
PORTEPOCHPORTREVISIONPORTREVISION is a
monotonically increasing value which is reset to 0 with
every increase of PORTVERSION, typically
every time there is a new official vendor release. If
PORTREVISION is non-zero, the value is
appended to the package name. Changes to
PORTREVISION are used by automated tools
like &man.pkg-version.8; to determine that a new package is
available.PORTREVISION must be increased each
time a change is made to the port that changes the generated
package in any way. That includes changes that only affect
a package built with non-default
options.Examples of when PORTREVISION
must be bumped:Addition of patches to correct security
vulnerabilities, bugs, or to add new functionality to
the port.Changes to the port Makefile to
enable or disable compile-time options in the
package.Changes in the packing list or the install-time
behavior of the package. For example, a change to a script which
generates initial data for the package, like &man.ssh.1; host
keys.Version bump of a port's shared library dependency
(in this case, someone trying to install the old package
after installing a newer version of the dependency will
fail since it will look for the old libfoo.x instead of
libfoo.(x+1)).Silent changes to the port distfile which have
significant functional differences. For example, changes to the
distfile requiring a correction to
distinfo with no corresponding
change to PORTVERSION, where a
diff -ru of the old and new versions
shows non-trivial changes to the code.Examples of changes which do not require a
PORTREVISION bump:Style changes to the port skeleton with no
functional change to what appears in the resulting
package.Changes to MASTER_SITES or other
functional changes to the port which do not affect the
resulting package.Trivial patches to the distfile such as correction
of typos, which are not important enough that users of
the package have to go to the trouble of
upgrading.Build fixes which cause a package to become
compilable where it was previously failing. As long as
the changes do not introduce any functional change on
any other platforms on which the port did previously
build. Since PORTREVISION reflects
the content of the package, if the package was not
previously buildable then there is no need to increase
PORTREVISION to mark a change.A rule of thumb is to decide whether a change
committed to a port is something which some people would
benefit from having. Either because of an enhancement, fix,
or by virtue that the new package will actually work at
all. Then weigh that against that fact that it will cause
everyone who regularly updates their ports tree to be
compelled to update. If yes,
PORTREVISION must be bumped.People using binary packages will
never see the update if
PORTREVISION is not bumped. Without
increasing PORTREVISION, the
package builders have no way to detect the change and
thus, will not rebuild the package.PORTEPOCHFrom time to time a software vendor or &os; porter will
do something silly and release a version of their software
which is actually numerically less than the previous
version. An example of this is a port which goes from
foo-20000801 to foo-1.0 (the former will be incorrectly
treated as a newer version since 20000801 is a numerically
greater value than 1).The results of version number comparisons are not
always obvious. pkg version (see
&man.pkg-version.8;) can be used to test the comparison of
two version number strings. For example:&prompt.user; pkg version -t 0.031 0.29
>The > output indicates that
version 0.031 is considered greater than version 0.29,
which may not have been obvious to the porter.In situations such as this,
PORTEPOCH must be increased.
If PORTEPOCH is nonzero it is appended to
the package name as described in section 0 above.
PORTEPOCH must never be decreased or
reset to zero, because that would cause comparison to a
package from an earlier epoch to fail. For example, the package
would not be detected as out of date. The new version
number, 1.0,1 in the above
example, is still numerically less than the previous version,
20000801, but the ,1 suffix is treated
specially by automated tools and found to be greater than
the implied suffix ,0 on the earlier
package.Dropping or resetting PORTEPOCH
incorrectly leads to no end of grief. If the discussion
above was not clear enough, please consult the
&a.ports;.It is expected that PORTEPOCH will
not be used for the majority of ports, and that sensible use
of PORTVERSION can often preempt it
becoming necessary if a future release of the software
changes the version structure. However, care is
needed by &os; porters when a vendor release is made without
an official version number — such as a code
snapshot release. The temptation is to label
the release with the release date, which will cause problems
as in the example above when a new official
release is made.For example, if a snapshot release is made on the date
20000917, and the previous version of the software was
version 1.2, do not use
20000917 for
PORTVERSION. The correct way is a
PORTVERSION of
1.2.20000917, or similar, so that the
succeeding release, say 1.3, is still a
numerically greater value.Example of PORTREVISION and
PORTEPOCH UsageThe gtkmumble port, version
0.10, is committed to the ports
collection:PORTNAME= gtkmumble
PORTVERSION= 0.10PKGNAME becomes
gtkmumble-0.10.A security hole is discovered which requires a local
&os; patch. PORTREVISION is bumped
accordingly.PORTNAME= gtkmumble
PORTVERSION= 0.10
PORTREVISION= 1PKGNAME becomes
gtkmumble-0.10_1A new version is released by the vendor, numbered
0.2 (it turns out the author actually
intended 0.10 to actually mean
0.1.0, not what comes after
0.9 - oops, too late now). Since the new minor
version 2 is numerically less than the
previous version 10,
PORTEPOCH must be bumped to manually
force the new package to be detected as
newer. Since it is a new vendor release of
the code, PORTREVISION is reset to 0 (or
removed from the Makefile).PORTNAME= gtkmumble
PORTVERSION= 0.2
PORTEPOCH= 1PKGNAME becomes
gtkmumble-0.2,1The next release is 0.3. Since
PORTEPOCH never decreases, the version
variables are now:PORTNAME= gtkmumble
PORTVERSION= 0.3
PORTEPOCH= 1PKGNAME becomes
gtkmumble-0.3,1If PORTEPOCH were reset to
0 with this upgrade, someone who had
installed the gtkmumble-0.10_1 package
would not detect the gtkmumble-0.3
package as newer, since 3 is still
numerically less than 10. Remember,
this is the whole point of PORTEPOCH in
the first place.PKGNAMEPREFIX and
PKGNAMESUFFIXTwo optional variables, PKGNAMEPREFIX
and PKGNAMESUFFIX, are combined with
PORTNAME and PORTVERSION
to form PKGNAME as
${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}.
Make sure this conforms to our
guidelines for a good
package name. In particular, the use of a
hyphen (-) in
PORTVERSION is not
allowed.
Also, if the package name has the
language- or the
-compiled.specifics part (see
below), use PKGNAMEPREFIX and
PKGNAMESUFFIX, respectively. Do not make
them part of PORTNAME.Package Naming ConventionsThese are the conventions to follow when
naming packages. This is to make the package directory
easy to scan, as there are already thousands of packages and
users are going to turn away if they hurt their eyes!Package names take the form of
language_region-name-compiled.specifics-version.numbers.The package name is defined as
${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}.
Make sure to set the variables to conform to that
format.language_region-&os; strives to support the native language of its
users. The language- part is
a two letter abbreviation of the natural language
defined by ISO-639 when the port is specific to a
certain language. Examples are ja
for Japanese, ru for Russian,
vi for Vietnamese,
zh for Chinese, ko
for Korean and de for German.If the port is specific to a certain region within
the language area, add the two letter country code as
well. Examples are en_US for US
English and fr_CH for Swiss
French.The language- part is
set in PKGNAMEPREFIX.nameMake sure that the port's name and version are
clearly separated and placed into
PORTNAME and
PORTVERSION. The only
reason for PORTNAME to contain a
version part is if the upstream distribution is really
named that way, as in the
textproc/libxml2 or
japanese/kinput2-freewnn ports.
Otherwise, PORTNAME cannot
contain any version-specific information. It is quite
normal for several ports to have the same
PORTNAME, as the
www/apache* ports do; in that case,
different versions (and different index entries) are
distinguished by PKGNAMEPREFIX
and PKGNAMESUFFIX values.There is a tradition of naming
Perl 5 modules by prepending
p5- and converting the double-colon
separator to a hyphen. For example, the
Data::Dumper module becomes
p5-Data-Dumper.-compiled.specificsIf the port can be built with different hardcoded defaults
(usually part of the directory name in a family of
ports), the
-compiled.specifics part
states the compiled-in defaults. The hyphen is
optional. Examples are paper size and font
units.The -compiled.specifics
part is set in PKGNAMESUFFIX.-version.numbersThe version string follows a dash
(-) and is a period-separated list of
integers and single lowercase alphabetics. In
particular, it is not permissible to have another dash
inside the version string. The only exception is the
string pl (meaning
patchlevel), which can be used
only when there are no major and
minor version numbers in the software. If the software
version has strings like alpha,
beta, rc, or
pre, take the first letter and put it
immediately after a period. If the version string
continues after those names, the numbers follow
the single alphabet without an extra period between
them (for example, 1.0b2).The idea is to make it easier to sort ports by
looking at the version string. In particular, make sure
version number components are always delimited by a
period, and if the date is part of the string, use the
0.0.yyyy.mm.dd
format, not
dd.mm.yyyy
or the non-Y2K compliant
yy.mm.dd
format. It is important to prefix the version with
0.0. in case a release with an actual
version number is made, which would be
numerically less than
yyyy.Package name must be unique among all of the ports
tree, check that there is not already a port with the same
PORTNAME and if there is add one of PKGNAMEPREFIX
or PKGNAMESUFFIX.Here are some (real) examples on how to convert the name
as called by the software authors to a suitable package
name:
Package Naming ExamplesDistribution NamePKGNAMEPREFIXPORTNAMEPKGNAMESUFFIXPORTVERSIONReasonmule-2.2.2(empty)mule(empty)2.2.2No changes requiredmule-1.0.1(empty)mule11.0.1mule already existsEmiClock-1.0.2(empty)emiclock(empty)1.0.2No uppercase names for single programsrdist-1.3alpha(empty)rdist(empty)1.3.aNo strings like alpha
allowedes-0.9-beta1(empty)es(empty)0.9.b1No strings like beta
allowedmailman-2.0rc3(empty)mailman(empty)2.0.r3No strings like rc
allowedv3.3beta021.src(empty)tiff(empty)3.3What the heck was that anyway?tvtwm(empty)tvtwm(empty)pl11Version string always requiredpiewm(empty)piewm(empty)1.0Version string always requiredxvgr-2.10pl1(empty)xvgr(empty)2.10.1pl allowed only when no
major/minor version numbersgawk-2.15.6ja-gawk(empty)2.15.6Japanese language versionpsutils-1.13(empty)psutils-letter1.13Paper size hardcoded at package build
timepkfonts(empty)pkfonts3001.0Package for 300dpi fonts
If there is absolutely no trace of version information in
the original source and it is unlikely that the original
author will ever release another version, just set the version
string to 1.0 (like the
piewm example above). Otherwise, ask the
original author or use the date string the source file was
released on
(0.0.yyyy.mm.dd)
as the version.CategorizationCATEGORIESWhen a package is created, it is put under
/usr/ports/packages/All and links are
made from one or more subdirectories of
/usr/ports/packages. The names of these
subdirectories are specified by the variable
CATEGORIES. It is intended to make life
easier for the user when he is wading through the pile of
packages on the FTP site or the CDROM. Please take a look at
the current list of
categories and pick the ones that are suitable for
the port.This list also determines where in the ports tree the port
is imported. If there is more than one category here,
the port files must be put in the subdirectory
with the name of the first category. See
below for more
discussion about how to pick the right categories.Current List of CategoriesHere is the current list of port categories. Those marked
with an asterisk (*) are
virtual categories—those that do
not have a corresponding subdirectory in the ports tree. They
are only used as secondary categories, and only for search
purposes.For non-virtual categories, there is a one-line
description in COMMENT in that
subdirectory's Makefile.CategoryDescriptionNotesaccessibilityPorts to help disabled users.afterstep*Ports to support the AfterStep
window manager.arabicArabic language support.archiversArchiving tools.astroAstronomical ports.audioSound support.benchmarksBenchmarking utilities.biologyBiology-related software.cadComputer aided design tools.chineseChinese language support.commsCommunication software.Mostly software to talk to the serial
port.convertersCharacter code converters.databasesDatabases.deskutilsThings that used to be on the desktop before
computers were invented.develDevelopment utilities.Do not put libraries here just because they are
libraries. They should not be
in this category unless they truly do not belong
anywhere else.dnsDNS-related software.docs*Meta-ports for &os; documentation.editorsGeneral editors.Specialized editors go in the section for those
tools. For example, a mathematical-formula editor will
go in math, and have
editors as a second
category.elisp*Emacs-lisp ports.emulatorsEmulators for other operating systems.Terminal emulators do not
belong here. X-based ones go to
x11 and text-based ones to
either comms or
misc, depending on the exact
functionality.financeMonetary, financial and related
applications.frenchFrench language support.ftpFTP client and server utilities.If the port speaks both FTP and HTTP, put it
in ftp with a secondary
category of www.gamesGames.geography*Geography-related software.germanGerman language support.gnome*Ports from the
GNOME
Project.gnustep*Software related to the GNUstep desktop
environment.graphicsGraphics utilities.hamradio*Software for amateur radio.haskell*Software related to the Haskell
language.hebrewHebrew language support.hungarianHungarian language support.ipv6*IPv6 related software.ircInternet Relay Chat utilities.japaneseJapanese language support.javaSoftware related to the Java™
language.The java category must not
be the only one for a port. Save for ports directly
related to the Java language, porters are also
encouraged not to use java as the
main category of a port.kde*Ports from the
KDE
Project.kld*Kernel loadable modules.koreanKorean language support.langProgramming languages.linux*Linux applications and support
utilities.lisp*Software related to the Lisp language.mailMail software.mathNumerical computation software and other
utilities for mathematics.mbone*MBone applications.miscMiscellaneous utilitiesThings that do not belong anywhere
else. If at all possible, try to find a better
category for the port than misc,
as ports tend to be overlooked in here.multimediaMultimedia software.netMiscellaneous networking software.net-imInstant messaging software.net-mgmtNetworking management software.net-p2pPeer to peer network applications.newsUSENET news software.palmSoftware support for the Palm™
series.parallel*Applications dealing with parallelism in
computing.pear*Ports related to the Pear PHP
framework.perl5*Ports that require
Perl version 5 to
run.plan9*Various programs from Plan9.polishPolish language support.ports-mgmtPorts for managing, installing and developing
&os; ports and packages.portuguesePortuguese language support.printPrinting software.Desktop publishing tools
(previewers, etc.) belong here too.python*Software related to the Python
language.ruby*Software related to the Ruby
language.rubygems*Ports of RubyGems
packages.russianRussian language support.scheme*Software related to the Scheme
language.scienceScientific ports that do not fit into other
categories such as astro,
biology and
math.securitySecurity utilities.shellsCommand line shells.spanish*Spanish language support.sysutilsSystem utilities.tcl*Ports that use Tcl to run.textprocText processing utilities.It does not include desktop publishing tools,
which go to print.tk*Ports that use Tk to run.ukrainianUkrainian language support.vietnameseVietnamese language support.windowmaker*Ports to support the WindowMaker window
manager.wwwSoftware related to the World Wide Web.HTML language
support belongs here too.x11The X Window System and friends.This category is only for software that directly
supports the window system. Do not put regular X
applications here. Most of them go into other
x11-* categories (see
below).x11-clocksX11 clocks.x11-driversX11 drivers.x11-fmX11 file managers.x11-fontsX11 fonts and font utilities.x11-serversX11 servers.x11-themesX11 themes.x11-toolkitsX11 toolkits.x11-wmX11 window managers.xfce*Ports related to the
Xfce
desktop environment.zope*Zope
support.Choosing the Right CategoryAs many of the categories overlap, choosing which of the
categories will be the primary category of the port can be
tedious. There are several rules that govern this issue.
Here is the list of priorities, in decreasing order of
precedence:The first category must be a physical category (see
above). This is
necessary to make the packaging work. Virtual categories
and physical categories may be intermixed after
that.Language specific categories always come first. For
example, if the port installs Japanese X11 fonts, then
the CATEGORIES line would read
japanese x11-fonts.Specific categories are listed before less-specific
ones. For instance, an HTML editor is listed as
www editors, not the other way
around. Also, do not list
net when the port belongs to any of
irc, mail,
news, security,
or www, as net
is included implicitly.x11 is used as a secondary
category only when the primary category is a natural
language. In particular, do not put
x11 in the category line for X
applications.Emacs modes are
placed in the same ports category as the application
supported by the mode, not in
editors. For example, an
Emacs mode to edit source files
of some programming language goes into
lang.Ports installing loadable kernel modules also
have the virtual category kld in
their CATEGORIES line. This is one of
the things handled automatically by adding
USES=kmod.misc does not appear with any
other non-virtual category. If there is
misc with something else in
CATEGORIES, that means
misc can safely be deleted and the port
placed only in the other subdirectory.If the port truly does not belong anywhere else,
put it in misc.If the category is not clearly defined, please put a
comment to that effect in the port
submission in the bug database so
we can discuss it before we import it. As a committer,
send a note to the &a.ports; so we can discuss it
first. Too often, new ports are imported to the wrong
category only to be moved right away. This causes unnecessary
and undesirable bloat in the master source repository.Proposing a New CategoryAs the Ports Collection has grown over time, various new
categories have been introduced. New categories can either be
virtual categories—those that do
not have a corresponding subdirectory in the ports tree—
or physical categories—those that
do. This section discusses the issues involved in creating a
new physical category. Read it thouroughly before proposing a
new one.Our existing practice has been to avoid creating a new
physical category unless either a large number of ports would
logically belong to it, or the ports that would belong to it
are a logically distinct group that is of limited general
interest (for instance, categories related to spoken human
languages), or preferably both.The rationale for this is that such a change creates a
fair
amount of work for both the committers and also for
all users who track changes to the Ports Collection. In
addition, proposed category changes just naturally seem to
attract controversy. (Perhaps this is because there is no
clear consensus on when a category is too big,
nor whether categories should lend themselves to browsing (and
thus what number of categories would be an ideal number), and
so forth.)Here is the procedure:Propose the new category on &a.ports;. Include
a detailed rationale for the new category,
including why the existing categories are not
sufficient, and the list of existing ports proposed to
move. (If there are new ports pending in
Bugzilla that would fit this
category, list them too.) If you are the maintainer
and/or submitter, respectively, mention that as it may
help the case.Participate in the discussion.If it seems that there is support for the idea, file
a PR which includes both the rationale and the list of
existing ports that need to be moved. Ideally, this PR
would also include these patches:Makefiles for the new ports
once they are repocopiedMakefile for the new
categoryMakefile for the old ports'
categoriesMakefiles for ports that
depend on the old ports(for extra credit, include the other files
that have to change, as per the procedure in the
Committer's Guide.)Since it affects the ports infrastructure and involves
moving and patching many ports but also possibly running
regression tests on the build cluster, assign the PR to
the &a.portmgr;.If that PR is approved, a committer will need to
follow the rest of the procedure that is outlined
in the Committer's Guide.Proposing a new virtual category is similar to the
above but much less involved, since no ports will actually
have to move. In this case, the only patches to include in
the PR would be those to add the new category to
CATEGORIES of the affected ports.Proposing Reorganizing All the CategoriesOccasionally someone proposes reorganizing the
categories with either a 2-level structure, or some other kind
of keyword structure. To date, nothing has come of any of
these proposals because, while they are very easy to make, the
effort involved to retrofit the entire existing ports
collection with any kind of reorganization is daunting to say
the very least. Please read the history of these proposals in
the mailing list archives before posting this idea.
Furthermore, be prepared to be challenged to offer
a working prototype.The Distribution FilesThe second part of the Makefile
describes the files that must be downloaded to build
the port, and where they can be downloaded.DISTVERSION/DISTNAMEDISTNAME is the name of the port as
called by the authors of the software.
DISTNAME defaults to
${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX},
and DISTVERSION defaults to
${PORTVERSION} so override it
only if necessary. DISTNAME is only used
in two places. First, the distribution file list
(DISTFILES) defaults to
${DISTNAME}${EXTRACT_SUFX}.
Second, the distribution file is expected to extract into a
subdirectory named WRKSRC, which defaults
to work/${DISTNAME}.Some vendor's distribution names which do not fit into the
${PORTNAME}-${PORTVERSION}-scheme can be
handled automatically by setting
DISTVERSION.
PORTVERSION will be derived from it
automatically.Only one of PORTVERSION and
DISTVERSION can be set at a time. If
DISTVERSION does not derive a correct
PORTVERSION, do not use
DISTVERSION, set
PORTVERSION to the right value and set
DISTNAME with PORTNAME
with either some computation of
PORTVERSION or the verbatim upstream
version.
Examples of DISTVERSION and the
Derived PORTVERSIONDISTVERSIONPORTVERSION0.7.1d0.7.1.d10Alpha310.a33Beta7-pre23.b7.p28:f_178f.17
PKGNAMEPREFIX and
PKGNAMESUFFIX do not affect
DISTNAME. Also note that if
WRKSRC is equal to
${WRKDIR}/${DISTNAME} while
the original source archive is named something other than
${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX},
leave DISTNAME
alone— defining only
DISTFILES is easier than both
DISTNAME and WRKSRC
(and possibly EXTRACT_SUFX).MASTER_SITESRecord the directory part of the FTP/HTTP-URL pointing at
the original tarball in MASTER_SITES. Do
not forget the trailing slash (/)!The make macros will try to use this
specification for grabbing the distribution file with
FETCH if they cannot find it already on the
system.It is recommended that multiple sites are included on this
list, preferably from different continents. This will
safeguard against wide-area network problems. We are even
planning to add support for automatically determining the
closest master site and fetching from there; having multiple
sites will go a long way towards helping this effort.MASTER_SITES must not be blank. It
must point to the actual site hosting the distribution
files. It cannot point to web archives, or the &os;
distribution files cache sites. The only exception to this
rule is ports that do not have any distribution files. For
example, meta-ports do not have any distribution files, so
MASTER_SITES does not need to be
set.If the original tarball is part of one of the popular
archives such as SourceForge, GNU, or Perl CPAN, it may be
possible refer to those sites in an easy compact form using
predefined macros (for example, SF,
GNU or CPAN).
Set MASTER_SITES to one of these values.
Here is an example:MASTER_SITES= GNU/makeThe older expanded format can still be used, although there
really is no reason to do so:MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= makeThese values and variables are defined in
/usr/ports/Mk/bsd.sites.mk. There are
new entries added all the time, so make sure to check the
latest version of this file before submitting a port.Several magic macros exist for
popular sites with a predictable directory structure. For
these, just use the abbreviation and the system will try to
guess the correct subdirectory automatically.MASTER_SITES= SFIf the guess is incorrect, it can be overridden as
follows.MASTER_SITES= SF/stardict/WyabdcRealPeopleTTS/${PORTVERSION}This can also be written asMASTER_SITES= SF
MASTER_SITE_SUBDIR= stardict/WyabdcRealPeopleTTS/${PORTVERSION}
Popular Magic MASTER_SITES
MacrosMacroAssumed subdirectoryAPACHE_JAKARTA/dist/jakarta/${PORTNAME:S,-,,/,}/sourceBERLIOS/${PORTNAME:L}CHEESESHOP/packages/source/source/${DISTNAME:C/(.).*/\1/}/${DISTNAME:C/(.*)-[0-9].*/\1/}DEBIAN/debian/pool/main/${PORTNAME:C/^((lib)?.).*$/\1/}/${PORTNAME}GCC/pub/gcc/releases/${DISTNAME}GH/${GH_ACCOUNT}/${GH_PROJECT}/legacy.tar.gz/${GH_TAGNAME}?dummy=/GHC/downloads/${GH_ACCOUNT}/${GH_PROJECT}/GNOME/pub/GNOME/sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}GNU/gnu/${PORTNAME}HORDE/pub/${PORTNAME}LOGILAB/pub/${PORTNAME}MATE/releases/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}MOZDEV/pub/mozdev/${PORTNAME:L}CPAN/pub/CPAN/modules/by-module/${PORTNAME:C/-.*//}PYTHON/ftp/python/${PYTHON_PORTVERSION:C/rc[0-9]//}RUBYFORGE/${PORTNAME:L}SAVANNAH/${PORTNAME:L}SF/project/${PORTNAME:L}/${PORTNAME:L}/${PORTVERSION}
USE_GITHUBIf the distribution file comes from a specific commit or
tag on GitHub
for which there is no officially released file, there is an
easy way to set the right DISTNAME and
MASTER_SITES automatically. These
variables are available:
USE_GITHUB DescriptionVariableDescriptionDefaultMandatoryGH_ACCOUNTAccount name of the GitHub user hosting the
projectnoneMandatoryGH_PROJECTName of the project on GitHub${PORTNAME}GH_TAGNAMEName of the tag to download (2.0.1, hash, ...)
Using the name of a branch here is incorrect. It is
possible to do
GH_TAGNAME=${GH_COMMIT} to do a
snapshot${DISTVERSION}GH_COMMITfirst 7 digits of the commit that generated
GH_TAGNAME (see
git-describe(1))noneMandatory
Simple Use of USE_GITHUBWhile trying to make a port for version
1.2.7 of pkg
from the &os; user on github, at , The
Makefile would end up looking like
this (slightly stripped for the example):PORTNAME= pkg
PORTVERSION= 1.2.7
USE_GITHUB= yes
GH_ACCOUNT= freebsd
GH_COMMIT= f53e577It will automatically have
MASTER_SITES set to GH
GHC and WRKSRC to
${WRKDIR}/freebsd-pkg-f53e577.More Complete Use of
USE_GITHUBWhile trying to make a port for the bleeding edge
version of pkg from the &os;
user on github, at , The
Makefile would end up looking like
this (slightly stripped for the example):PORTNAME= pkg-devel
PORTVERSION= 1.3.0.a.20140411
USE_GITHUB= yes
GH_ACCOUNT= freebsd
GH_PROJECT= pkg
GH_TAGNAME= ${GH_COMMIT}
GH_COMMIT= 6dbb17bIt will automatically have
MASTER_SITES set to GH
GHC and WRKSRC to
${WRKDIR}/freebsd-pkg-6dbb17b.EXTRACT_SUFXIf there is one distribution file, and it uses an odd
suffix to indicate the compression mechanism, set
EXTRACT_SUFX.For example, if the distribution file was named
foo.tar.gzip instead of the more normal
foo.tar.gz, write:DISTNAME= foo
EXTRACT_SUFX= .tar.gzipThe
USES=tar[:xxx],
USES=lha or USES=zip
automatically set EXTRACT_SUFX to the most
common archives extensions as necessary, see for more details. If neither of
these are set then EXTRACT_SUFX defaults to
.tar.gz.As EXTRACT_SUFX is only used in
DISTFILES, only set one of them..DISTFILESSometimes the names of the files to be downloaded have no
resemblance to the name of the port. For example, it might be
called source.tar.gz or similar. In
other cases the application's source code might be in several
different archives, all of which must be downloaded.If this is the case, set DISTFILES to
be a space separated list of all the files that must be
downloaded.DISTFILES= source1.tar.gz source2.tar.gzIf not explicitly set, DISTFILES
defaults to
${DISTNAME}${EXTRACT_SUFX}.EXTRACT_ONLYIf only some of the DISTFILES must be
extracted—for example, one of them is the source code,
while another is an uncompressed document—list the
filenames that must be extracted in
EXTRACT_ONLY.DISTFILES= source.tar.gz manual.html
EXTRACT_ONLY= source.tar.gzWhen none of the DISTFILES need to be
uncompressed, set EXTRACT_ONLY to the empty
string.EXTRACT_ONLY=PATCHFILESIf the port requires some additional patches that are
available by FTP or HTTP, set PATCHFILES to
the names of the files and PATCH_SITES to
the URL of the directory that contains them (the format is the
same as MASTER_SITES).If the patch is not relative to the top of the source tree
(that is, WRKSRC) because it contains some
extra pathnames, set PATCH_DIST_STRIP
accordingly. For instance, if all the pathnames in the patch
have an extra foozolix-1.0/ in front of the
filenames, then set
PATCH_DIST_STRIP=-p1.Do not worry if the patches are compressed; they will be
decompressed automatically if the filenames end with
.Z, .gz,
.bz2 or .xz.If the patch is distributed with some other files, such as
documentation, in a gzipped tarball, using
PATCHFILES is not possible. If that is the
case, add the name and the location of the patch tarball to
DISTFILES and
MASTER_SITES. Then, use
EXTRA_PATCHES to point to those
files and bsd.port.mk will automatically
apply them. In particular, do
not copy patch files into
${PATCHDIR}. That directory may
not be writable.If there are multiple patches and they need mixed values
for the strip parameter, it can be added alongside the patch
name in PATCHFILES, e.g:PATCHFILES= patch1 patch2:-p1This does not conflict with the master site grouping
feature, adding a group also works:PATCHFILES= patch2:-p1:source2The tarball will have been extracted alongside the
regular source by then, so there is no need to explicitly
extract it if it is a regular gzipped or
compressed tarball. Take extra care not
to overwrite something that already exists in that
directory if extracting it manually. Also, do not forget to
add a command to remove the copied patch in the
pre-clean target.Multiple Distribution Files or Patches from Different
Sites and Subdirectories
(MASTER_SITES:n)(Consider this to be a somewhat
advanced topic; those new to this document
may wish to skip this section at first).This section has information on the fetching mechanism
known as both MASTER_SITES:n and
MASTER_SITES_NN. We will refer to this
mechanism as MASTER_SITES:n.A little background first. OpenBSD has a neat feature
inside DISTFILES and
PATCHFILES which allows files and
patches to be postfixed with :n
identifiers. Here, n can be both
[0-9] and denote a group designation. For
example:DISTFILES= alpha:0 beta:1In OpenBSD, distribution file alpha
will be associated with variable
MASTER_SITES0 instead of our common
MASTER_SITES and
beta with
MASTER_SITES1.This is a very interesting feature which can decrease
that endless search for the correct download site.Just picture 2 files in DISTFILES and
20 sites in MASTER_SITES, the sites slow as
hell where beta is carried by all sites
in MASTER_SITES, and
alpha can only be found in the 20th site.
It would be such a waste to check all of them if the
maintainer knew this beforehand, would it not? Not a good
start for that lovely weekend!Now that you have the idea, just imagine more
DISTFILES and more
MASTER_SITES. Surely our
distfiles survey meister would appreciate the
relief to network strain that this would bring.In the next sections, information will follow on the
&os; implementation of this idea. We improved a bit on
OpenBSD's concept.Simplified InformationThis section explains how to quickly prepare fine
grained fetching of multiple distribution files and patches
from different sites and subdirectories. We describe here a
case of simplified MASTER_SITES:n usage.
This will be sufficient for most scenarios. More detailed
information are available in .Some applications consist of multiple distribution files
that must be downloaded from a number of different sites.
For example, Ghostscript consists
of the core of the program, and then a large number of
driver files that are used depending on the user's printer.
Some of these driver files are supplied with the core, but
many others must be downloaded from a variety of different
sites.To support this, each entry in
DISTFILES may be followed by a colon and
a tag name. Each site listed in
MASTER_SITES is then followed by a colon,
and the tag that indicates which distribution files are
downloaded from this site.For example, consider an application with the source
split in two parts, source1.tar.gz and
source2.tar.gz, which must be
downloaded from two different sites. The port's
Makefile would include lines like .Simplified Use of MASTER_SITES:n
with One File Per SiteMASTER_SITES= ftp://ftp.example1.com/:source1 \
ftp://ftp.example2.com/:source2
DISTFILES= source1.tar.gz:source1 \
source2.tar.gz:source2Multiple distribution files can have the same tag.
Continuing the previous example, suppose that there was a
third distfile, source3.tar.gz, that
is downloaded from
ftp.example2.com. The
Makefile would then be written like
.Simplified Use of MASTER_SITES:n
with More Than One File Per SiteMASTER_SITES= ftp://ftp.example1.com/:source1 \
ftp://ftp.example2.com/:source2
DISTFILES= source1.tar.gz:source1 \
source2.tar.gz:source2 \
source3.tar.gz:source2Detailed InformationOkay, so the previous example did not reflect the new
port's needs? In this section we will explain in detail how
the fine grained fetching mechanism
MASTER_SITES:n works and how it can
be used.Elements can be postfixed with
:n where
n is
[^:,]+, that is,
n could conceptually be any
alphanumeric string but we will limit it to
[a-zA-Z_][0-9a-zA-Z_]+ for
now.Moreover, string matching is case sensitive; that is,
n is different from
N.However, these words cannot be used for
postfixing purposes since they yield special meaning:
default, all and
ALL (they are used internally in
item ).
Furthermore, DEFAULT is a special
purpose word (check item ).Elements postfixed with :n
belong to the group n,
:m belong to group
m and so forth.Elements without a postfix are groupless, they
all belong to the special group
DEFAULT. Any elements postfixed
with DEFAULT, is just being
redundant unless an element belongs
to both DEFAULT and other groups at
the same time (check item ).These examples are equivalent but the first
one is preferred:MASTER_SITES= alphaMASTER_SITES= alpha:DEFAULTGroups are not exclusive, an element may belong to
several different groups at the same time and a group
can either have either several different elements or
none at all.When an element belongs to several groups
at the same time, use the comma operator
(,).Instead of repeating it several times, each time
with a different postfix, we can list several groups at
once in a single postfix. For instance,
:m,n,o marks an element that belongs
to group m, n and
o.All these examples are equivalent but the
last one is preferred:MASTER_SITES= alpha alpha:SOME_SITEMASTER_SITES= alpha:DEFAULT alpha:SOME_SITEMASTER_SITES= alpha:SOME_SITE,DEFAULTMASTER_SITES= alpha:DEFAULT,SOME_SITEAll sites within a given group are sorted according
to MASTER_SORT_AWK. All groups
within MASTER_SITES and
PATCH_SITES are sorted as
well.Group semantics can be used in any of the
variables MASTER_SITES,
PATCH_SITES,
MASTER_SITE_SUBDIR,
PATCH_SITE_SUBDIR,
DISTFILES, and
PATCHFILES according to this
syntax:All MASTER_SITES,
PATCH_SITES,
MASTER_SITE_SUBDIR and
PATCH_SITE_SUBDIR elements must
be terminated with the forward slash
/ character. If any elements
belong to any groups, the group postfix
:n
must come right after the terminator
/. The
MASTER_SITES:n mechanism relies
on the existence of the terminator
/ to avoid confusing elements
where a :n is a valid part of the
element with occurrences where :n
denotes group n. For
compatibility purposes, since the
/ terminator was not required
before in both MASTER_SITE_SUBDIR
and PATCH_SITE_SUBDIR elements,
if the postfix immediate preceding character is not
a / then :n
will be considered a valid part of the element
instead of a group postfix even if an element is
postfixed with :n. See both
and .Detailed Use of
MASTER_SITES:n in
MASTER_SITE_SUBDIRMASTER_SITE_SUBDIR= old:n new/:NEWDirectories within group
DEFAULT ->
old:nDirectories within group
NEW -> newDetailed Use of
MASTER_SITES:n with Comma
Operator, Multiple Files, Multiple Sites and
Multiple SubdirectoriesMASTER_SITES= http://site1/%SUBDIR%/ http://site2/:DEFAULT \
http://site3/:group3 http://site4/:group4 \
http://site5/:group5 http://site6/:group6 \
http://site7/:DEFAULT,group6 \
http://site8/%SUBDIR%/:group6,group7 \
http://site9/:group8
DISTFILES= file1 file2:DEFAULT file3:group3 \
file4:group4,group5,group6 file5:grouping \
file6:group7
MASTER_SITE_SUBDIR= directory-trial:1 directory-n/:groupn \
directory-one/:group6,DEFAULT \
directoryThe previous example results in this
fine grained fetching. Sites are listed in the
exact order they will be used.file1 will be
fetched fromMASTER_SITE_OVERRIDEhttp://site1/directory-trial:1/http://site1/directory-one/http://site1/directory/http://site2/http://site7/MASTER_SITE_BACKUPfile2 will be fetched
exactly as file1 since
they both belong to the same groupMASTER_SITE_OVERRIDEhttp://site1/directory-trial:1/http://site1/directory-one/http://site1/directory/http://site2/http://site7/MASTER_SITE_BACKUPfile3 will be fetched
fromMASTER_SITE_OVERRIDEhttp://site3/MASTER_SITE_BACKUPfile4 will be
fetched fromMASTER_SITE_OVERRIDEhttp://site4/http://site5/http://site6/http://site7/http://site8/directory-one/MASTER_SITE_BACKUPfile5 will be fetched
fromMASTER_SITE_OVERRIDEMASTER_SITE_BACKUPfile6 will be fetched
fromMASTER_SITE_OVERRIDEhttp://site8/MASTER_SITE_BACKUPHow do I group one of the special variables from
bsd.sites.mk, for example,
MASTER_SITE_SOURCEFORGE?See .Detailed Use of MASTER_SITES:n
with
MASTER_SITE_SOURCEFORGEMASTER_SITES= http://site1/ ${MASTER_SITE_SOURCEFORGE:S/$/:sourceforge,TEST/}
DISTFILES= something.tar.gz:sourceforgesomething.tar.gz will be
fetched from all sites within
MASTER_SITE_SOURCEFORGE.How do I use this with
PATCH*?All examples were done with
MASTER*
but they work exactly the same for
PATCH*
ones as can be seen in .Simplified Use of
MASTER_SITES:n with
PATCH_SITESPATCH_SITES= http://site1/ http://site2/:test
PATCHFILES= patch1:testWhat Does Change for Ports? What Does Not?All current ports remain the same. The
MASTER_SITES:n feature code is only
activated if there are elements postfixed with
:n like
elements according to the aforementioned syntax rules,
especially as shown in item .The port targets remain the same:
checksum,
makesum,
patch,
configure,
build, etc. With the obvious
exceptions of do-fetch,
fetch-list,
master-sites and
patch-sites.do-fetch: deploys
the new grouping postfixed
DISTFILES and
PATCHFILES with their matching
group elements within both
MASTER_SITES and
PATCH_SITES which use matching
group elements within both
MASTER_SITE_SUBDIR and
PATCH_SITE_SUBDIR. Check .fetch-list: works
like old fetch-list with
the exception that it groups just like
do-fetch.master-sites and
patch-sites:
(incompatible with older versions) only return the
elements of group DEFAULT; in
fact, they execute targets
master-sites-default and
patch-sites-default
respectively.Furthermore, using target either
master-sites-all or
patch-sites-all is
preferred to directly checking either
MASTER_SITES or
PATCH_SITES. Also,
directly checking is not guaranteed to work in any
future versions. Check item
for more information on these new port
targets.New port targetsThere are
master-sites-n
and
patch-sites-n
targets which will list the elements of the
respective group n
within MASTER_SITES and
PATCH_SITES respectively. For
instance, both
master-sites-DEFAULT
and patch-sites-DEFAULT
will return the elements of group
DEFAULT,
master-sites-test and
patch-sites-test of
group test, and thereon.There are new targets
master-sites-all and
patch-sites-all which do
the work of the old
master-sites and
patch-sites ones. They
return the elements of all groups as if they all
belonged to the same group with the caveat that it
lists as many MASTER_SITE_BACKUP
and MASTER_SITE_OVERRIDE as there
are groups defined within either
DISTFILES or
PATCHFILES; respectively for
master-sites-all and
patch-sites-all.DIST_SUBDIRDo not let the port clutter
/usr/ports/distfiles. If the port
requires a lot of files to be fetched, or contains a file that
has a name that might conflict with other ports (for example,
Makefile), set
DIST_SUBDIR to the name of the port
(${PORTNAME} or
${PKGNAMEPREFIX}${PORTNAME} are
fine). This will change DISTDIR from the
default /usr/ports/distfiles to
/usr/ports/distfiles/DIST_SUBDIR, and in
effect puts everything that is required for the port into
that subdirectory.It will also look at the subdirectory with the same name
on the backup master site at
ftp.FreeBSD.org. (Setting
DISTDIR explicitly in
Makefile will not accomplish this, so
please use DIST_SUBDIR.)This does not affect
MASTER_SITES defined in the
Makefile.ALWAYS_KEEP_DISTFILESIf the port uses binary distfiles and has a license that
requires that the source code is provided with packages
distributed in binary form, like GPL,
ALWAYS_KEEP_DISTFILES will instruct the
&os; build cluster to keep a copy of the files specified in
DISTFILES. Users of these ports will
generally not need these files, so it is a good idea to only
add the source distfiles to DISTFILES when
PACKAGE_BUILDING is defined.Use of
ALWAYS_KEEP_DISTFILES.if defined(PACKAGE_BUILDING)
DISTFILES+= foo.tar.gz
ALWAYS_KEEP_DISTFILES= yes
.endifWhen adding extra files to DISTFILES,
make sure to also add them to distinfo.
Also, the additional files will normally be extracted into
WRKDIR as well, which for some ports may
lead to undesirable side effects and require special
handling.MAINTAINERSet your mail-address here. Please.
:-)Only a single address without the comment part is
allowed as a MAINTAINER value. The format
used is user@hostname.domain. Please
do not include any descriptive text such as a real name in
this entry. That merely confuses the Ports infrastructure
and most tools using it.The maintainer is responsible for keeping the port up to
date and making sure that it works correctly. For a detailed
description of the responsibilities of a port maintainer, refer
to The
challenge for port maintainers.A maintainer volunteers to keep a port in good working
order. Maintainers have the primary responsibility for their
ports, but not exclusive ownership. Ports exist for the
benefit of the community and, in reality, belong to the
community. What this means is that people other than the
maintainer can make changes to a port. Large changes to the
Ports Collection might require changes to many ports. The
&os; Ports Management Team or members of other teams might
modify ports to fix dependency issues or other problems, like
a version bump for a shared library update.Some types of fixes have blanket approval
from the &a.portmgr;, allowing any committer to fix those
categories of problems on any port. These fixes do not need
approval from the maintainer. Blanket approval does not apply
to ports that are maintained by teams like autotools@FreeBSD.org, x11@FreeBSD.org, gnome@FreeBSD.org, or kde@FreeBSD.org. These teams use
external repositories and can have work that would conflict
with changes that would normally fall under blanket
approval.Blanket approval for most ports applies to these types of
fixes:Most infrastructure changes to a port (that is,
modernizing, but not changing the functionality). For
example, converting to staging,
USE_GMAKE to
USES=gmake, the new
LIB_DEPENDS format...Trivial and tested build and
runtime fixes.Other changes to the port will be sent to the maintainer
for review and approval before being committed. If the
maintainer does not respond to an update request after two weeks
(excluding major public holidays), then that is considered a
maintainer timeout, and the update may be made without explicit
maintainer approval. If the maintainer does not respond within
three months, or if there have been three consecutive timeouts,
then that maintainer is considered absent without
leave, and can be replaced as the maintainer of the particular
port in question. Exceptions to this are anything maintained by
the &a.portmgr;, or the &a.security-officer;. No unauthorized
commits may ever be made to ports maintained by those
groups.We reserve the right to modify the maintainer's submission
to better match existing policies and style of the Ports
Collection without explicit blessing from the submitter or the
maintainer. Also,
large infrastructural changes can result in a port being
modified without the maintainer's consent. These kinds of
changes will never affect the port's functionality.The &a.portmgr; reserves the right to revoke or override
anyone's maintainership for any reason, and the
&a.security-officer; reserves the right to revoke or override
maintainership for security reasons.COMMENTThis is a one-line description of the port. Please respect
these rules:Try to keep the COMMENT value at no longer than 70
characters, as this line will be used by
pkg info (see &man.pkg-info.8;) to
display a one-line summary of the port;Do not include the package name (or
version number of the software);The comment must begin with a capital and end without
a period;Do not start with an indefinite article (that is, A or
An);Names are capitalized (for example, Apache, JavaScript,
Perl);For lists of words, use the Oxford comma (for example,
green, red, and blue);Spell check the text.Here is an example:COMMENT= Cat chasing a mouse all over the screenThe COMMENT variable immediately follows the
MAINTAINER variable in the Makefile.PORTSCOUTPortscout is an automated
distfile check utility for the &os; Ports Collection,
described in detail in .PORTSCOUT defines special
conditions within which the Portscout
distfile scanner is restricted.Situations where PORTSCOUT
is set include:When distfiles have to be ignored, whether for specific
versions, or specific minor revisions. For example, to
exclude version 8.2 from distfile
version checks because it is known to be broken, add:PORTSCOUT= ignore:8.2When specific versions or specific major and minor
revisions of a distfile must be checked. For example, if
only version 0.6.4 must be
monitored because newer versions have compatibility issues
with &os;, add:PORTSCOUT= limit:^0\.6\.4When URLs listing the available versions differ from the
download URLs. For example, to limit distfile version
checks to the download page for the
databases/pgtune port,
add:PORTSCOUT= site:http://pgfoundry.org/frs/?group_id=1000416DependenciesMany ports depend on other ports. This is a very convenient
feature of most Unix-like operating systems, including &os;.
Multiple ports can share a common dependency, rather than
bundling that dependency with every port or package that needs
it. There are seven variables that can be used to ensure that
all the required bits will be on the user's machine. There are
also some pre-supported dependency variables for common cases,
plus a few more to control the behavior of dependencies.LIB_DEPENDSThis variable specifies the shared libraries this port
depends on. It is a list of
lib:dir
tuples where lib is the name of
the shared library, dir is the
directory in which to find it in case it is not available.
For example,LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpegwill check for a shared jpeg library with any version, and
descend into the graphics/jpeg
subdirectory of the ports tree to build and install it if it
is not found.The dependency is checked twice, once from within the
build target and then from within
the install target. Also, the name
of the dependency is put into the package so that
pkg install (see &man.pkg-install.8;) will
automatically install it if it is not on the user's
system.RUN_DEPENDSThis variable specifies executables or files this port
depends on during run-time. It is a list of
path:dir:target
tuples where path is the name of
the executable or file, dir is the
directory in which to find it in case it is not available, and
target is the target to call in
that directory. If path starts
with a slash (/), it is treated as a file
and its existence is tested with test -e;
otherwise, it is assumed to be an executable, and
which -s is used to determine if the
program exists in the search path.For example,RUN_DEPENDS= ${LOCALBASE}/news/bin/innd:${PORTSDIR}/news/inn \
xmlcatmgr:${PORTSDIR}/textproc/xmlcatmgrwill check if the file or directory
/usr/local/news/bin/innd exists, and
build and install it from the news/inn
subdirectory of the ports tree if it is not found. It will
also see if an executable called xmlcatmgr
is in the search path, and descend into
textproc/xmlcatmgr
to build and install it if it is not found.In this case, innd is actually an
executable; if an executable is in a place that is not
expected to be in the search path, use the full
pathname.The official search PATH used on the
ports build cluster is/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/binThe dependency is checked from within the
install target. Also, the name of
the dependency is put into the package so that
pkg install (see &man.pkg-install.8;) will
automatically install it if it is not on the user's system.
The target part can be omitted if
it is the same as DEPENDS_TARGET.A quite common situation is when
RUN_DEPENDS is literally the same as
BUILD_DEPENDS, especially if ported
software is written in a scripted language or if it requires
the same build and run-time environment. In this case, it is
both tempting and intuitive to directly assign one to the
other:RUN_DEPENDS= ${BUILD_DEPENDS}However, such assignment can pollute run-time
dependencies with entries not defined in the port's original
BUILD_DEPENDS. This happens because of
&man.make.1;'s lazy evaluation of variable assignment.
Consider a Makefile with
USE_*,
which are processed by ports/Mk/bsd.*.mk
to augment initial build dependencies. For example,
USES= gmake adds
devel/gmake to
BUILD_DEPENDS. To prevent such additional
dependencies from polluting RUN_DEPENDS,
take care to assign with expansion, that is, expand the value
before assigning it to the variable:RUN_DEPENDS:= ${BUILD_DEPENDS}BUILD_DEPENDSThis variable specifies executables or files this port
requires to build. Like RUN_DEPENDS, it
is a list of
path:dir:target
tuples. For example,BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzipwill check for an executable called
unzip, and descend into the
archivers/unzip subdirectory of the
ports tree to build and install it if it is not found.build here means everything from
extraction to compilation. The dependency is checked from
within the extract target. The
target part can be omitted if it
is the same as DEPENDS_TARGETFETCH_DEPENDSThis variable specifies executables or files this port
requires to fetch. Like the previous two, it is a list of
path:dir:target
tuples. For example,FETCH_DEPENDS= ncftp2:${PORTSDIR}/net/ncftp2will check for an executable called
ncftp2, and descend into the
net/ncftp2 subdirectory of the ports
tree to build and install it if it is not found.The dependency is checked from within the
fetch target. The
target part can be omitted if it is
the same as DEPENDS_TARGET.EXTRACT_DEPENDSThis variable specifies executables or files this port
requires for extraction. Like the previous, it is a list of
path:dir:target
tuples. For example,EXTRACT_DEPENDS= unzip:${PORTSDIR}/archivers/unzipwill check for an executable called
unzip, and descend into the
archivers/unzip subdirectory of the
ports tree to build and install it if it is not found.The dependency is checked from within the
extract target. The
target part can be omitted if it
is the same as DEPENDS_TARGET.Use this variable only if the extraction does not
already work (the default assumes tar)
and cannot be made to work using
USES=tar, USES=lha or
USES=zip described in .PATCH_DEPENDSThis variable specifies executables or files this port
requires to patch. Like the previous, it is a list of
path:dir:target
tuples. For example,PATCH_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/java/jfc:extractwill descend into the java/jfc
subdirectory of the ports tree to extract it.The dependency is checked from within the
patch target. The
target part can be omitted if it
is the same as DEPENDS_TARGET.USESParameters can be added to define different features and
dependencies used by the port. They are specified by adding
this line to the Makefile:USES= feature[:arguments]For the complete list of values, please see
.USES cannot be assigned after
inclusion of bsd.port.pre.mk.USE_*Several variables exist to define common dependencies
shared by many ports. Their use is optional, but helps to
reduce the verbosity of the port
Makefiles. Each of them is styled as
USE_*. These
variables may be used only in the port
Makefiles and
ports/Mk/bsd.*.mk. They are not meant
for user-settable options — use
PORT_OPTIONS for that purpose.It is always incorrect to set any
USE_* in
/etc/make.conf. For instance,
settingUSE_GCC=X.Y(where X.Y is version number) would add a dependency
on gccXY for every port, including
lang/gccXY itself!
USE_*VariableMeansUSE_GCCThe port requires GCC (gcc or
g++) to build. Some ports need any
GCC version, some require modern, recent versions. It
is typically set to any (in this
case, GCC from base would be used on versions of &os;
that still have it, or lang/gcc
port would be installed when default C/C++ compiler is
Clang); or yes (means always use
stable, modern GCC from lang/gcc
port). The exact version can also be specified, with
a value such as 4.7. The minimal
required version can be specified as
4.6+. The GCC from the base system
is used when it satisfies the requested version,
otherwise an appropriate compiler is built from the
port, and CC and
CXX are adjusted
accordingly.
Variables related to gmake and
configure are described in
, while
autoconf,
automake and
libtool are described in
.
Perl related variables are
described in . X11 variables are
listed in .
deals with GNOME and
with KDE related variables.
documents Java variables, while
contains information on
Apache,
PHP and PEAR modules.
Python is discussed in
, while
Ruby in
.
provides variables used for SDL
applications and finally,
contains information on
Xfce.Minimal Version of a DependencyA minimal version of a dependency can be specified in any
*_DEPENDS
except LIB_DEPENDS using this
syntax:p5-Spiffy>=0.26:${PORTSDIR}/devel/p5-SpiffyThe first field contains a dependent package name, which
must match the entry in the package database, a comparison
sign, and a package version. The dependency is satisfied if
p5-Spiffy-0.26 or newer is installed on the machine.Notes on DependenciesAs mentioned above, the default target to call when a
dependency is required is
DEPENDS_TARGET. It defaults to
install. This is a user variable; it is
never defined in a port's Makefile. If
the port needs a special way to handle a dependency, use the
:target part of
*_DEPENDS
instead of redefining
DEPENDS_TARGET.When running make clean, the port
dependencies are automatically cleaned too. If this is not
desirable, define
NOCLEANDEPENDS in the environment. This
may be particularly desirable if the port has something that
takes a long time to rebuild in its dependency list, such as
KDE, GNOME or Mozilla.To depend on another port unconditionally, use the
variable ${NONEXISTENT} as the first field
of BUILD_DEPENDS or
RUN_DEPENDS. Use this only when
the source of the other port is needed. Compilation time can
be saved by specifying the target too. For
instanceBUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/graphics/jpeg:extractwill always descend to the jpeg port
and extract it.Circular Dependencies Are FatalDo not introduce any circular dependencies into the
ports tree!The ports building technology does not tolerate circular
dependencies. If one is introduced, someone, somewhere in the
world, will have their &os; installation broken
almost immediately, with many others quickly to follow. These
can really be hard to detect. If in doubt, before making
that change, make sure to run:
cd /usr/ports; make index. That process
can be quite slow on older machines, but it may be able to
save a large number of people, including yourself,
a lot of grief in the process.Problems Caused by Automatic DependenciesDependencies must be declared either explicitly or by
using the
OPTIONS framework.
Using other methods like automatic detection complicates
indexing, which causes problems for port and package
management.Wrong Declaration of an Optional Dependency.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/bin/foo)
LIB_DEPENDS= libbar.so:${PORTSDIR}/foo/bar
.endifThe problem with trying to automatically add dependencies
is that files and settings outside an individual port can
change at any time. For example: an index is built, then a
batch of ports are installed. But one of the ports installs
the tested file. The index is now incorrect, because an
installed port unexpectedly has a new dependency. The index
may still be wrong even after rebuilding if other ports also
determine their need for dependencies based on the existence
of other files.Correct Declaration of an Optional DependencyOPTIONS_DEFINE= BAR
BAR_DESC= Calling cellphones via bar
BAR_LIB_DEPENDS= libbar.so:${PORTSDIR}/foo/barTesting option variables is the correct method. It will
not cause inconsistencies in the index of a batch of ports,
provided the options were defined prior to the index build.
Simple scripts can then be used to automate the building,
installation, and updating of these ports and their
packages.USE_* and
WANT_*USE_* are set by the port
maintainer to define software on which this port depends. A
port that needs Firefox would setUSE_FIREFOX= yesSome USE_* can accept version
numbers or other parameters. For example, a port that
requires Apache 2.2 would setUSE_APACHE= 22For more control over dependencies in some cases,
WANT_* are available to more
precisely specify what is needed. For example, consider the
mail/squirrelmail port. This
port needs some PHP modules, which are listed in
USE_PHP:USE_PHP= session mhash gettext mbstring pcre openssl xmlThose modules may be available in CLI or web versions, so
the web version is selected with
WANT_*:WANT_PHP_WEB= yesAvailable USE_* and
WANT_* are defined in the files in
- /usr/ports/Mk.
+ /usr/ports/Mk.
MASTERDIRIf the port needs to build slightly different versions of
packages by having a variable (for instance, resolution, or
paper size) take different values, create one subdirectory per
package to make it easier for users to see what to do, but try
to share as many files as possible between ports. Typically, by
using variables cleverly, only a very short
Makefile is needed in all but one of the
directories. In the sole Makefile, use
MASTERDIR to specify the directory where the
rest of the files are. Also, use a variable as part of PKGNAMESUFFIX
so the packages will have different names.This will be best demonstrated by an example. This is part
of japanese/xdvi300/Makefile;PORTNAME= xdvi
PORTVERSION= 17
PKGNAMEPREFIX= ja-
PKGNAMESUFFIX= ${RESOLUTION}
:
# default
RESOLUTION?= 300
.if ${RESOLUTION} != 118 && ${RESOLUTION} != 240 && \
${RESOLUTION} != 300 && ${RESOLUTION} != 400
@${ECHO_MSG} "Error: invalid value for RESOLUTION: \"${RESOLUTION}\""
@${ECHO_MSG} "Possible values are: 118, 240, 300 (default) and 400."
@${FALSE}
.endifjapanese/xdvi300 also has all
the regular patches, package files, etc. Running
make there, it will take the default value
for the resolution (300) and build the port normally.As for other resolutions, this is the
entirexdvi118/Makefile:RESOLUTION= 118
MASTERDIR= ${.CURDIR}/../xdvi300
.include "${MASTERDIR}/Makefile"(xdvi240/Makefile and
xdvi400/Makefile are similar).
MASTERDIR definition tells
bsd.port.mk that the regular set of
subdirectories like FILESDIR and
SCRIPTDIR are to be found under
xdvi300. The
RESOLUTION=118 line will override the
RESOLUTION=300 line in
xdvi300/Makefile and the port will be built
with resolution set to 118.Man PagesIf the port anchors its man tree somewhere other than
PREFIX, use
MANDIRS to specify those directories. Note
that the files corresponding to manual pages must be be placed in
pkg-plist along with the rest of the files.
The purpose of MANDIRS is to enable automatic
compression of manual pages, therefore the file names are
suffixed with .gz.Info FilesIf the package needs to install GNU info files, list them
in INFO (without the
trailing .info), one entry per document.
These files are assumed to be installed to
PREFIX/INFO_PATH. Change
INFO_PATH if the package uses a different
location. However, this is not recommended. These entries
contain just the path relative to
PREFIX/INFO_PATH. For example,
lang/gcc34 installs info files to
PREFIX/INFO_PATH/gcc34, and
INFO will be something like this:INFO= gcc34/cpp gcc34/cppinternals gcc34/g77 ...Appropriate installation/de-installation code will be
automatically added to the temporary
pkg-plist before package
registration.Makefile OptionsMany applications can be built with optional or differing
configurations. Examples include choice of natural (human)
language, GUI versus command-line, or type of database to
support. Users may need a different configuration than the
default, so the ports system provides hooks the port author can
use to control which variant will be built. Supporting these
options properly will make users happy, and effectively provide
two or more ports for the price of one.OPTIONSBackgroundOPTIONS_* give the
user installing the port a dialog showing the available
options, and then saves those options to
${PORT_DBDIR}/${OPTIONS_NAME}/options.
The next time the port is built, the options are
reused. PORT_DBDIR defaults to
/var/db/ports.
OPTIONS_NAME is to the port origin with
an underscore as the space separator, for example, for
dns/bind99 it will be
dns_bind99.When the user runs make config (or
runs make build for the first time), the
framework checks for
${PORT_DBDIR}/${OPTIONS_NAME}/options.
If that file does not exist, the values of
OPTIONS_* are used, and a dialog box is
displayed where the options can be enabled or disabled.
Then options is saved and the
configured variables are used when building the port.If a new version of the port adds new
OPTIONS, the dialog will be presented to
the user with the saved values of old
OPTIONS prefilled.make showconfig shows the saved
configuration. Use make rmconfig
to remove the saved configuration.SyntaxOPTIONS_DEFINE contains a list of
OPTIONS to be used. These are
independent of each other and are not grouped:OPTIONS_DEFINE= OPT1 OPT2Once defined, OPTIONS are
described (optional, but strongly recommended):OPT1_DESC= Describe OPT1
OPT2_DESC= Describe OPT2
OPT3_DESC= Describe OPT3
OPT4_DESC= Describe OPT4
OPT5_DESC= Describe OPT5
OPT6_DESC= Describe OPT6ports/Mk/bsd.options.desc.mk
has descriptions for many common OPTIONS.
While often useful, override them if the
description is insufficient for the port.When describing options, view it from the
perspective of the user: What functionality does it
change?
and Why would I want to enable this?
Do not just repeat the name. For example, describing the
NLS option as
include NLS support does not help the user,
who can already see the option name but may not know what
it means. Describing it as Native Language Support
via gettext utilities is much more
helpful.Option names are always in all uppercase. They
cannot use mixed case or lowercase.OPTIONS can be grouped as radio
choices, where only one choice from each group is
allowed:OPTIONS_SINGLE= SG1
OPTIONS_SINGLE_SG1= OPT3 OPT4There must be one of each
OPTIONS_SINGLE group selected at all
times for the options to be valid. One option of each
group must be added to
OPTIONS_DEFAULT.OPTIONS can be grouped as radio
choices, where none or only one choice from each group
is allowed:OPTIONS_RADIO= RG1
OPTIONS_RADIO_RG1= OPT7 OPT8OPTIONS can also be grouped as
multiple-choice lists, where
at least one option must be
enabled:OPTIONS_MULTI= MG1
OPTIONS_MULTI_MG1= OPT5 OPT6OPTIONS can also be grouped as
multiple-choice lists, where none or any
option can be enabled:OPTIONS_GROUP= GG1
OPTIONS_GROUP_GG1= OPT9 OPT10OPTIONS are unset by default,
unless they are listed in
OPTIONS_DEFAULT:OPTIONS_DEFAULT= OPT1 OPT3 OPT6OPTIONS definitions must appear
before the inclusion of
bsd.port.options.mk.
PORT_OPTIONS values can only be tested
after the inclusion of
bsd.port.options.mk. Inclusion of
bsd.port.pre.mk can be used instead,
too, and is still widely used in ports written before the
introduction of bsd.port.options.mk.
But be aware that some variables will not work as expected
after the inclusion of bsd.port.pre.mk,
typically some USE_* flags.Simple Use of OPTIONSOPTIONS_DEFINE= FOO BAR
FOO_DESC= Option foo support
BAR_DESC= Feature bar support
OPTIONS_DEFAULT=FOO
# Will add --with-foo / --without-foo
FOO_CONFIGURE_WITH= foo
BAR_RUN_DEPENDS= bar:${PORTSDIR}/bar/bar
.include <bsd.port.mk>Check for Unset Port
OPTIONS.if ! ${PORT_OPTIONS:MEXAMPLES}
CONFIGURE_ARGS+=--without-examples
.endifThe form shown above is discouraged. The preferred
method is using a configure knob to really enable and
disable the feature to match the option:# Will add --with-examples / --without-examples
EXAMPLES_CONFIGURE_WITH= examplesPractical Use of OPTIONSOPTIONS_DEFINE= EXAMPLES
OPTIONS_SINGLE= BACKEND
OPTIONS_SINGLE_BACKEND= MYSQL PGSQL BDB
OPTIONS_MULTI= AUTH
OPTIONS_MULTI_AUTH= LDAP PAM SSL
EXAMPLES_DESC= Install extra examples
MYSQL_DESC= Use MySQL as backend
PGSQL_DESC= Use PostgreSQL as backend
BDB_DESC= Use Berkeley DB as backend
LDAP_DESC= Build with LDAP authentication support
PAM_DESC= Build with PAM support
SSL_DESC= Build with OpenSSL support
OPTIONS_DEFAULT= PGSQL LDAP SSL
# Will add USE_PGSQL=yes
PGSQL_USE= pgsql=yes
# Will add --enable-postgres / --disable-postgres
PGSQL_CONFIGURE_ENABLE= postgres
ICU_LIB_DEPENDS= libicuuc.so:${PORTSDIR}/devel/icu
# Will add --with-examples / --without-examples
EXAMPLES_CONFIGURE_WITH= examples
# Check other OPTIONS
.include <bsd.port.mk>Default OptionsThese options are always on by default.DOCS — build and install
documentation.NLS — Native Language
Support.EXAMPLES — build and
install examples.IPV6 — IPv6 protocol
support.There is no need to add these to
OPTIONS_DEFAULT. To have them active,
and show up in the options selection dialog, however, they
must be added to OPTIONS_DEFINE.Feature Auto-ActivationWhen using a GNU configure script, keep an eye on which
optional features are activated by auto-detection. Explicitly
disable optional features that are not needed by
adding --without-xxx or
--disable-xxx in
CONFIGURE_ARGS.Wrong Handling of an Option.if ${PORT_OPTIONS:MFOO}
LIB_DEPENDS+= libfoo.so:${PORTSDIR}/devel/foo
CONFIGURE_ARGS+= --enable-foo
.endifIn the example above, imagine a library libfoo is
installed on the system. The user does not want this
application to use libfoo, so he toggled the option off in the
make config dialog. But the application's
configure script detects the library present in the system and
includes its support in the resulting executable. Now when
the user decides to remove libfoo from the system, the ports
system does not protest (no dependency on libfoo was recorded)
but the application breaks.Correct Handling of an OptionFOO_LIB_DEPENDS= libfoo.so:${PORTSDIR}/devel/foo
# Will add --enable-foo / --disable-foo
FOO_CONFIGURE_ENABLE= fooUnder some circumstances, the shorthand conditional
syntax can cause problems with complex constructs. The
errors are usually
Malformed conditional, an alternative
syntax can be used..if !empty(VARIABLE:MVALUE)
# as an alternative to
.if ${VARIABLE:MVALUE}Options HelpersThere are some macros to help simplify conditional values
which differ based on the options set.OPTIONS_SUBIf OPTIONS_SUB is set to
yes then each of the options added to
OPTIONS_DEFINE will be added to
PLIST_SUB and
SUB_LIST, for example:OPTIONS_DEFINE= OPT1
OPTIONS_SUB= yes is equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
PLIST_SUB+= OPT1="" NO_OPT1="@comment "
SUB_LIST+= OPT1="" NO_OPT1="@comment "
.else
PLIST_SUB+= OPT1="@comment " NO_OPT1=""
SUB_LIST+= OPT1="@comment " NO_OPT1=""
.endifThe value of OPTIONS_SUB is
ignored. Setting it to any value will add
PLIST_SUB and
SUB_LIST entries for
all options.OPT_USEWhen option OPT is selected,
for each
key=value
pair in
OPT_USE,
value is appended to the
corresponding
USE_KEY. If
value has spaces in it, replace
them with commas and they will be changed back to spaces
during processing. For example:OPTIONS_DEFINE= OPT1
OPT1_USE= mysql=yes xorg=x11,xextproto,xext,xrandris equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
USE_MYSQL= yes
USE_XORG= x11 xextproto xext xrandr
.endifOPT_USE_OFFWhen option OPTis
not selected, for each
key=value
pair in
OPT_USE_OFF,
value is appended to the
corresponding
USE_KEY. If
value has spaces in it, replace
them with commas and they will be changed back to spaces
during processing. For example:OPTIONS_DEFINE= OPT1
OPT1_USE_OFF= mysql=yes xorg=x11,xextproto,xext,xrandris equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MOPT1}
USE_MYSQL= yes
USE_XORG= x11 xextproto xext xrandr
.endifOPT_CONFIGURE_ENABLEWhen option OPT is selected,
for each entry in
OPT_CONFIGURE_ENABLE
then
--enable-entry
is appended to CONFIGURE_ARGS. When option
OPT is not selected,
--disable-entry
is appended to CONFIGURE_ARGS. An optional
argument can be specified with an =
symbol. This argument is only appended to the
--enable-entry
configure option. For example:OPTIONS_DEFINE= OPT1 OPT2
OPT1_CONFIGURE_ENABLE= test1 test2
OPT2_CONFIGURE_ENABLE= test2=exhaustiveis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
CONFIGURE_ARGS+= --enable-test1 --enable-test2
.else
CONFIGURE_ARGS+= --disable-test1 --disable-test2
.endif
.if ${PORT_OPTIONS:MOPT2}
CONFIGURE_ARGS+= --enable-test2=exhaustive
.else
CONFIGURE_ARGS+= --disable-test2
.endifOPT_CONFIGURE_WITHWhen option OPT is selected,
for each entry in
OPT_CONFIGURE_ENABLE
then
--with-entry
is appended to CONFIGURE_ARGS. When option
OPT is not selected,
--without-entry
is appended to CONFIGURE_ARGS. An optional
argument can be specified with an =
symbol. This argument is only appended to the
--with-entry
configure option. For example:OPTIONS_DEFINE= OPT1 OPT2
OPT1_CONFIGURE_WITH= test1
OPT2_CONFIGURE_WITH= test2=exhaustiveis equivalent to:OPTIONS_DEFINE= OPT1 OPT2
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
CONFIGURE_ARGS+= --with-test1
.else
CONFIGURE_ARGS+= --without-test1
.endif
.if ${PORT_OPTIONS:MOPT2}
CONFIGURE_ARGS+= --with-test2=exhaustive
.else
CONFIGURE_ARGS+= --without-test2
.endifOPT_CONFIGURE_ONWhen option OPT is selected,
the value of
OPT_CONFIGURE_ON,
if defined, is appended to
CONFIGURE_ARGS. For example:OPTIONS_DEFINE= OPT1
OPT1_CONFIGURE_ON= --add-testis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
CONFIGURE_ARGS+= --add-test
.endifOPT_CONFIGURE_OFFWhen option OPTis
not selected, the value of
OPT_CONFIGURE_ON,
if defined, is appended to
CONFIGURE_ARGS. For example:OPTIONS_DEFINE= OPT1
OPT1_CONFIGURE_OFF= --no-testis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MOPT1}
CONFIGURE_ARGS+= --no-test
.endifOPT_CMAKE_ONWhen option OPT is selected,
the value of
OPT_CMAKE_ON,
if defined, is appended to CMAKE_ARGS.
For example:OPTIONS_DEFINE= OPT1
OPT1_CMAKE_ON= -DTEST:BOOL=trueis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
CMAKE_ARGS+= -DTEST:BOOL=true
.endifOPT_CMAKE_OFFWhen option OPTis
not selected, the value of
OPT_CMAKE_OFF,
if defined, is appended to CMAKE_ARGS.
For example:OPTIONS_DEFINE= OPT1
OPT1_CMAKE_OFF= -DTEST:BOOL=falseis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MOPT1}
CMAKE_ARGS+= -DTEST:BOOL=false
.endifOPT_QMAKE_ONWhen option OPT is selected,
the value of
OPT_QMAKE_ON,
if defined, is appended to
QMAKE_ARGS. For example:OPTIONS_DEFINE= OPT1
OPT1_QMAKE_ON= -DTEST:BOOL=trueis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
QMAKE_ARGS+= -DTEST:BOOL=true
.endifOPT_QMAKE_OFFWhen option OPTis
not selected, the value of
OPT_QMAKE_OFF,
if defined, is appended to
QMAKE_ARGS. For example:OPTIONS_DEFINE= OPT1
OPT1_QMAKE_OFF= -DTEST:BOOL=falseis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MOPT1}
QMAKE_ARGS+= -DTEST:BOOL=false
.endifDependenciesFor any of these dependency types:PKG_DEPENDSEXTRACT_DEPENDSPATCH_DEPENDSFETCH_DEPENDSBUILD_DEPENDSLIB_DEPENDSRUN_DEPENDSOPT_ABOVEVARIABLEWhen option OPT is
selected, the value of
OPT_ABOVEVARIABLE,
if defined, is appended to
ABOVEVARIABLE.
For example:OPTIONS_DEFINE= OPT1
OPT1_LIB_DEPENDS= liba.so:${PORTSDIR}/devel/ais equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
LIB_DEPENDS+= liba.so:${PORTSDIR}/devel/a
.endifOPT_ABOVEVARIABLE_OFFWhen option OPTis not selected, the value of
OPT_ABOVEVARIABLE_OFF,
if defined, is appended to
ABOVEVARIABLE.
For example:OPTIONS_DEFINE= OPT1
OPT1_LIB_DEPENDS_OFF= liba.so:${PORTSDIR}/devel/ais equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
. if ! ${PORT_OPTIONS:MOPT1}
LIB_DEPENDS+= liba.so:${PORTSDIR}/devel/a
.endifGeneric Variables ReplacementFor any of these variables:ALL_TARGETCATEGORIESCFLAGSCPPFLAGSCXXFLAGSCONFIGURE_ENVCONFLICTSCONFLICTS_BUILDCONFLICTS_INSTALLDISTFILESEXTRA_PATCHESINFOINSTALL_TARGETLDFLAGSMAKE_ARGSMAKE_ENVPATCH_SITESPATCHFILESPLIST_FILESPLIST_DIRSPLIST_DIRSTRYPLIST_SUBUSESSome of these variables, at least
ALL_TARGET and
INSTALL_TARGET, have their default
values set after the options are
processed.With these lines in the
Makefile:ALL_TARGET= all
DOCS_ALL_TARGET= docIf the DOCS option is enabled,
ALL_TARGET will have a final value of
all doc; if the option is disabled, it
would have a value of all.With only the options helper line in the
Makefile:DOCS_ALL_TARGET= docIf the DOCS option is enabled,
ALL_TARGET will have a final value of
doc; if the option is disabled, it
would have a value of all.OPT_ABOVEVARIABLEWhen option OPT is
selected, the value of
OPT_ABOVEVARIABLE,
if defined, is appended to
ABOVEVARIABLE.
For example:OPTIONS_DEFINE= OPT1
OPT1_USES= gmake
OPT1_CFLAGS= -DTESTis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPT1}
USES+= gmake
CFLAGS+= -DTEST
.endifOPT_ABOVEVARIABLE_OFFWhen option OPT is not selected, the value of
OPT_ABOVEVARIABLE_OFF,
if defined, is appended to
ABOVEVARIABLE.
For example:OPTIONS_DEFINE= OPT1
OPT1_USES_OFF=gmakeis equivalent to:OPTIONS_DEFINE= OPT1
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MOPT1}
USES+= gmake
.endifSpecifying the Working DirectoryEach port is extracted into a working directory, which must
be writable. The ports system defaults to having
DISTFILES unpack in to a directory called
${DISTNAME}. In other words, if the
Makefile has:PORTNAME= foo
PORTVERSION= 1.0then the port's distribution files contain a top-level
directory, foo-1.0, and the rest of the
files are located under that directory.A number of variables can overriden if that is
not the case.WRKSRCThe variable lists the name of the directory that is
created when the application's distfiles are extracted. If
our previous example extracted into a directory called
foo (and not
foo-1.0) write:WRKSRC= ${WRKDIR}/fooor possiblyWRKSRC= ${WRKDIR}/${PORTNAME}NO_WRKSUBDIRIf the port does not extract in to a subdirectory at all,
then set NO_WRKSUBDIR to
indicate that.NO_WRKSUBDIR= yesConflict HandlingThere are three different variables to register a conflict
between packages and ports: CONFLICTS,
CONFLICTS_INSTALL and
CONFLICTS_BUILD.The conflict variables automatically set the variable
IGNORE, which is more fully documented in
.When removing one of several conflicting ports, it is
advisable to retain CONFLICTS in
those other ports for a few months to cater for users who only
update once in a while.CONFLICTS_INSTALLIf the package cannot coexist with other packages
(because of file conflicts, runtime incompatibilities, etc.),
list the other package names in
CONFLICTS_INSTALL. Use
shell globs like * and ?
here. Enumerate package names in there, not port names or
origins. Please make sure
that CONFLICTS_INSTALL does not match this
port's package itself. Otherwise enforcing its installation
with FORCE_PKG_REGISTER will no longer
work. CONFLICTS_INSTALL check is done after the build
stage and prior to the install stage.CONFLICTS_BUILDIf the port cannot be built when other specific ports are already
installed, list the other port names in
CONFLICTS_BUILD. Use
shell globs like * and ?
here. Use package names, not port names or origins.
CONFLICTS_BUILD check is done prior to the build stage. Build
conflicts are not recorded in the resulting package.CONFLICTSIf the port cannot be built if a certain port is already
installed and the resulting package cannot coexist with the
other package, list the other package name in
CONFLICTS. use shell
globs like * and ? here.
Enumerate package names in there, not port names or
origins. Please make sure that
CONFLICTS does not match this
port's package itself. Otherwise enforcing its installation
with FORCE_PKG_REGISTER will no longer
work. CONFLICTS check is done prior to the build stage
and prior to the install stage.Installing FilesINSTALL_* MacrosUse the macros provided in
bsd.port.mk to ensure correct modes of
files in the port's *-install
targets. Set ownership directly in
pkg-plist with the corresponding entries,
such as
@owner owner and
@group group.
These operators work until being overridden, or until the end
of pkg-plist, so do not forget to reset
them after they are no longer needed. The default ownership
is root:wheel.INSTALL_PROGRAM is a command to
install binary executables.INSTALL_SCRIPT is a command to
install executable scripts.INSTALL_LIB is a command to install
shared libraries (but not static libraries).INSTALL_KLD is a command to
install kernel loadable modules. Some architectures
do not like having the modules stripped, so
use this command instead of
INSTALL_PROGRAM.INSTALL_DATA is a command to
install sharable data, including static libraries.INSTALL_MAN is a command to
install manpages and other documentation (it does not
compress anything).These are the install
command with all the appropriate flags.Do not use INSTALL_LIB to install
static libraries, because stripping them render them
useless. Use INSTALL_DATA
instead.Stripping Binaries and Shared LibrariesInstalled binaries should be stripped. Do not strip
binaries manually unless forced to. The
INSTALL_PROGRAM macro will install and
strip a binary at the same time (see the next section). The
INSTALL_LIB macro does the same thing to
shared libraries.When a file must be stripped, but neither
INSTALL_PROGRAM nor
INSTALL_LIB macros are desirable,
${STRIP_CMD} will strip the program or
shared library. This is typically done within the
post-install target. For
example:post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xdlWhen multiple files need to be stripped:post-install:
.for l in geometry media body track world
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}-${l}.so.0
.endforUse &man.file.1; on a file to determine if it has been
stripped. Binaries are reported by &man.file.1; as
stripped, or
not stripped. Additionally, &man.strip.1;
will detect programs that have already been stripped and exit
cleanly.Installing a Whole Tree of FilesSometimes, a large number of files must be installed while
preserving their hierarchical organization. For example,
copying over a whole directory tree from
WRKSRC to a target directory under
PREFIX. Note that
PREFIX, EXAMPLESDIR,
DATADIR, and other path variables must
always be prepended with STAGEDIR to
respect staging (see ).Two macros exist for this situation. The advantage of
using these macros instead of cp is that
they guarantee proper file ownership and permissions on target
files. The first macro, COPYTREE_BIN, will
set all the installed files to be executable, thus being
suitable for installing into PREFIX/bin.
The second macro, COPYTREE_SHARE, does not
set executable permissions on files, and is therefore suitable
for installing files under PREFIX/share
target.post-install:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})This example will install the contents of the
examples directory in the vendor distfile
to the proper examples location of the port.post-install:
${MKDIR} ${STAGEDIR}${DATADIR}/summer
(cd ${WRKSRC}/temperatures && ${COPYTREE_SHARE} "June July August" ${STAGEDIR}${DATADIR}/summer)And this example will install the data of summer months to
the summer subdirectory of a
DATADIR.Additional find arguments can be
passed via the third argument to
COPYTREE_* macros. For example, to install
all files from the first example except Makefiles, one can use
these commands.post-install:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
(cd ${WRKSRC}/examples && \
${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} "! -name Makefile")These macros do not add the installed files to
pkg-plist. They must be added manually.
For optional documentation (PORTDOCS, see
) and examples
(PORTEXAMPLES), the
%%PORTDOCS%% or
%%PORTEXAMPLES%% prefixes must be prepended
in pkg-plist.Install Additional DocumentationIf the software has some documentation other than the
standard man and info pages that is useful for the
user, install it under DOCSDIR
This can be done, like the previous item, in the
post-install target.Create a new directory for the port. The directory name
is DOCSDIR. This usually equals
PORTNAME. However, if the user
might want different versions of the port to be installed at
the same time, the whole
PKGNAME can be used.Since only the files listed in
pkg-plist are installed, it is safe to
always install documentation to STAGEDIR
(see ). Hence .if
blocks are only needed when the installed files are large
enough to cause significant I/O overhead.post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/docs/xvdocs.ps ${STAGEDIR}${DOCSDIR}Here are some handy variables and how they are expanded by
default when used in the Makefile:DATADIR gets expanded to
PREFIX/share/PORTNAME.DATADIR_REL gets expanded to
share/PORTNAME.DOCSDIR gets expanded to
PREFIX/share/doc/PORTNAME.DOCSDIR_REL gets expanded to
share/doc/PORTNAME.EXAMPLESDIR gets expanded to
PREFIX/share/examples/PORTNAME.EXAMPLESDIR_REL gets expanded to
share/examples/PORTNAME.The DOCS option only controls
additional documentation installed in
DOCSDIR. It does not apply to standard
man pages and info pages. Things installed in
DATADIR and
EXAMPLESDIR are controlled by
DATA and EXAMPLES
options, respectively.These variables are exported to
PLIST_SUB. Their values will appear there
as pathnames relative to PREFIX if
possible. That is, share/doc/PORTNAME
will be substituted for %%DOCSDIR%% in the
packing list by default, and so on. (See more on
pkg-plist substitution
here.)All conditionally installed documentation files and
directories are included in
pkg-plist with the
%%PORTDOCS%% prefix, for example:%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
%%PORTDOCS%%%%DOCSDIR%%/CONTACTAs an alternative to enumerating the documentation files
in pkg-plist, a port can set the variable
PORTDOCS to a list of file names and shell
glob patterns to add to the final packing list. The names
will be relative to DOCSDIR. Therefore, a
port that utilizes PORTDOCS, and uses a
non-default location for its documentation, must set
DOCSDIR accordingly. If a directory is
listed in PORTDOCS or matched by a glob
pattern from this variable, the entire subtree of contained
files and directories will be registered in the final packing
list. If the DOCS option has been unset
then files and directories listed in
PORTDOCS would not be installed or added to
port packing list. Installing the documentation at
PORTDOCS as shown above remains up to the
port itself. A typical example of utilizing
PORTDOCS looks as follows:PORTDOCS= README.* ChangeLog docs/*The equivalents of PORTDOCS for files
installed under DATADIR and
EXAMPLESDIR are
PORTDATA and
PORTEXAMPLES, respectively.The contents of pkg-message are
displayed upon installation. See
the section on using
pkg-message for details.
pkg-message does not need to be added
to pkg-plist.Subdirectories Under PREFIXTry to let the port put things in the right subdirectories
of PREFIX. Some ports lump everything and
put it in the subdirectory with the port's name, which is
incorrect. Also, many ports put everything except binaries,
header files and manual pages in a subdirectory of
lib, which does not work well with the
BSD paradigm. Many of the files must be moved to one of these
directories: etc (setup/configuration
files), libexec (executables started
internally), sbin (executables for
superusers/managers), info (documentation
for info browser) or share (architecture
independent files). See &man.hier.7; for details; the rules
governing /usr pretty much apply to
/usr/local too. The exception are ports
dealing with USENET news. They may use
PREFIX/news as a destination for their
files.
Index: head/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml
===================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml (revision 46272)
+++ head/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml (revision 46273)
@@ -1,786 +1,786 @@
Advanced pkg-plist PracticesChanging pkg-plist Based on Make
VariablesSome ports, particularly the p5- ports,
need to change their pkg-plist depending on
what options they are configured with (or version of
perl, in the case of p5-
ports). To make this easy, any instances in
pkg-plist of %%OSREL%%,
%%PERL_VER%%, and
%%PERL_VERSION%% will be substituted
appropriately. The value of %%OSREL%% is the
numeric revision of the operating system (for example,
4.9). %%PERL_VERSION%%
and %%PERL_VER%% is the full version number
of perl (for example, 5.8.9).
Several other
%%VARS%% related
to port's documentation files are described in the relevant
section.To make other substitutions, set
PLIST_SUB with a list of
VAR=VALUE
pairs and instances of
%%VAR%% will be
substituted with VALUE in
pkg-plist.For instance, if a port installs many files
in a version-specific subdirectory, use a placeholder for the
version so that pkg-plist does not have to
be regenerated every time the port is updated. For
example:OCTAVE_VERSION= ${PORTREVISION}
PLIST_SUB= OCTAVE_VERSION=${OCTAVE_VERSION}in the Makefile and use
%%OCTAVE_VERSION%% wherever the version shows
up in pkg-plist. When
the port is upgraded, it will not be necessary to edit dozens (or in some
cases, hundreds) of lines in
pkg-plist.If files are installed conditionally on the options
set in the port, the usual way of handling it is prefixing
pkg-plist lines with a
%%OPT%% for lines needed when the option is
enabled, or %%NO_OPT%% when the option is
disabled, and adding OPTIONS_SUB=yes to the
Makefile. See for more information.For instance, if there are files that are only installed
when the X11 option is enabled, and
Makefile has:OPTIONS_DEFINE= X11
OPTIONS_SUB= yesIn pkg-plist, put
%%X11%% in front of the lines only being
installed when the option is enabled, like this :%%X11%%bin/foo-guiThis substitution will be done between the
pre-install and
do-install targets, by reading from
PLIST and writing to
TMPPLIST (default:
WRKDIR/.PLIST.mktmp). So if the port
builds PLIST on the fly, do so in or before
pre-install. Also, if the port
needs to edit the resulting file, do so in
post-install to a file named
TMPPLIST.Another way of modifying a port's packing list is based on
setting the variables PLIST_FILES and
PLIST_DIRS. The value of each variable is
regarded as a list of pathnames to write to
TMPPLIST along with
PLIST contents. Names listed in
PLIST_FILES and
PLIST_DIRS are subject to
%%VAR%%
substitution as described above. Except for that, names from
PLIST_FILES will appear in the final packing
list unchanged, while @dir
will be prepended to names from
PLIST_DIRS. To take effect,
PLIST_FILES and
PLIST_DIRS must be set before
TMPPLIST is written, that is, in
pre-install or earlier.From time to time, using OPTIONS_SUB
is not enough. In those cases, adding a specific
TAG to PLIST_SUB
inside the Makefile with a special
value of @comment, makes package tools to
ignore the line. For instance, if some files are only installed
when the X11 option is on and the
architecture is i386:.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MX11} && ${ARCH} == "i386"
PLIST_SUB+= X11I386=""
.else
PLIST_SUB+= X11I386="@comment "
.endifEmpty DirectoriesCleaning Up Empty DirectoriesWhen being de-installed, a port has to remove empty
directories it created. Most of these directories are removed
automatically by &man.pkg.8;, but for directories created
outside of ${PREFIX}, or empty
directories, some more work needs to be done. This is usually
accomplished by adding @dir lines for those
directories. Subdirectories must be deleted before deleting
parent directories.[...]
@dir /var/games/oneko/saved-games
@dir /var/games/onekoCreating Empty DirectoriesEmpty directories created during port installation need
special attention. They must be present when the package
is created. If they are not created by the port code, create
them in the Makefile:post-stage:
@${MKDIR} ${STAGEDIR}${PREFIX}/some/directoryAdd the directory to pkg-plist
like any other. For example:@dir some/directoryConfiguration FilesIf the port installs configuration files to
PREFIX/etc (or elsewhere) do
not list them in
pkg-plist. That will cause
pkg delete to remove files that have been carefully
edited by the user, and a re-installation will wipe them
out.Instead, install sample files with a
filename.sample
extension. The @sample macro automates this,
see for what it does
exactly. For each sample file, add a line to
pkg-plist:@sample etc/orbit.conf.sampleIf there is a very good reason not to install a working
configuration file by default, only list the sample filename in
pkg-plist, without the @sample
part, and add a message pointing out that the
user must copy and edit the file before the software will
work.When a port installs its configuration in a subdirectory
of ${PREFIX}/etc, use
ETCDIR, which defaults to
${PREFIX}/etc/${PORTNAME}, it can be
overridden in the ports Makefile if there
is a convention for the port to use some other directory. The
%%ETCDIR%% macro will be used in its
stead in pkg-plist.The sample configuration files should always have the
.sample suffix. If for some historical
reason using the standard suffix is not possible, use
this construct:@unexec if cmp -s %D/etc/orbit.conf-dist %D/etc/orbit.conf; then rm -f %D/etc/orbit.conf; fi
etc/orbit.conf-dist
@exec if [ ! -f %D/etc/orbit.conf ] ; then cp -p %D/%F %B/orbit.conf; fiThe order of these lines is important. On deinstallation,
the sample file is compared to the actual configuration file.
If these files are identical, no changes have been made by the
user and the actual file can be safely deleted. Because the
sample file must still exist for the comparison, the
@unexec line comes before the sample
configuration file name. On installation, if an actual
configuration file is not already present, the sample file is
copied to the actual file. The sample file must be present
before it can be copied, so the @exec line
comes after the sample configuration file name.To debug any issues, temporarily remove the
-s flag to &man.cmp.1; for more
output.See &man.pkg-create.8; for more information on
%D and related substitution markers.Dynamic Versus Static Package ListA static package list is a package
list which is available in the Ports Collection either as
pkg-plist (with or without variable
substitution), or embedded into the
Makefile via
PLIST_FILES and
PLIST_DIRS. Even if the contents are
auto-generated by a tool or a target in the Makefile
before the inclusion into the Ports
Collection by a committer (for example, using make
makeplist>), this is still considered a static list,
since it is possible to examine it without having to download or
compile the distfile.A dynamic package list is a package
list which is generated at the time the port is compiled based
upon the files and directories which are installed. It is not
possible to examine it before the source code of the ported
application is downloaded and compiled, or after running a
make clean.While the use of dynamic package lists is not forbidden,
maintainers should use static package lists wherever possible,
as it enables users to &man.grep.1; through available ports to
discover, for example, which port installs a certain file.
Dynamic lists should be primarily used for complex ports where
the package list changes drastically based upon optional
features of the port (and thus maintaining a static package list
is infeasible), or ports which change the package list based
upon the version of dependent software used. For example, ports which
generate docs with Javadoc.Automated Package List CreationFirst, make sure the port is almost complete, with only
pkg-plist missing. Running make
makeplist will show an example for
pkg-plist. The output of
makeplist must be double checked for
correctness as it tries to automatically guess a few things, and
can get it wrong.User configuration files should be installed as
filename.sample,
as it is described in .
info/dir must not be listed and
appropriate install-info lines must be
added as noted in the info
files section. Any libraries installed by the port
must be listed as specified in the shared libraries
section.Expanding Package List with KeywordsAll keywords can also take optional arguments in
parentheses. The arguments are owner, group, and mode. This
argument is used on the file or directory referenced.
To change the owner, group, and mode of a configuration file,
use:@sample(games,games,640) etc/config.sampleThe arguments are optional. If only the group and mode
need to be changed, use:@sample(,games,660) etc/config.sample@fcdirectoryAdd a @dir entry for the
directory passed as an argument, and run fc-cache
-s on that directory after installation and
deinstallation.@fcfontsdirdirectoryAdd a @dir entry for the
directory passed as an argument, and run fc-cache
-s, mkfontscale and
mkfontdir on that directory after
installation and deinstallation. Additionally, on
deinstallation, it removes the
fonts.scale and
fonts.dir cache files if they are
empty.@fontsdirdirectoryAdd a @dir entry for the
directory passed as an argument, and run
mkfontscale and
mkfontdir on that directory after
installation and deinstallation. Additionally, on
deinstallation, it removes the
fonts.scale and
fonts.dir cache files if they are
empty.@infofileAdd the file passed as argument to the plist, and updates
the info document index on installation and deinstallation.
Additionally, it removes the index if empty on
deinstallation.@samplefileAdd the file passed as argument to the plist.On installation, check for a real file with
just the base name (the name without the
.sample extension). If the real file is
not found, copy the sample file to the base file name. On
deinstallation, remove the configuration file if it has not
been modified. See for more
information.@shellfileAdd the file passed as argument to the plist.On installation, add the full path to
file to
/etc/shells, while making sure it is not
added twice. On deinstallation, remove it from
/etc/shells.Base KeywordsThere are a few keywords that are hardcoded, and
documented in &man.pkg-create.8;. For the sake of
completeness, they are also documented here.@
[file]The empty keyword is a placeholder to use when the
file's owner, group, or mode need to be changed. For
example, to set the group of the file to
games and add the setgid bit, add:@(,games,2755) sbin/daemon@cwd
[directory] (Deprecated)Set the internal directory pointer to point to
directory. All subsequent filenames are assumed relative to
this directory.@execcommandExecute command as part of
the unpacking process. If command contains any of these
sequences somewhere in it, they are expanded
inline. For these examples, assume that
@cwd is set to /usr/local and the last
+ >/usr/local and the last
extracted file was bin/emacs.%FExpand to the last filename extracted (as
specified). In the example case
bin/emacs.%DExpand to the current directory prefix, as set
with @cwd. In the example case
/usr/local.
+ >/usr/local.
%BExpand to the basename of the fully qualified
filename, that is, the current directory prefix plus
the last filespec, minus the trailing filename. In
the example case, that would be /usr/local/bin.
+ >/usr/local/bin.
%fExpand to the filename part of the fully qualified
name, or the converse of %B. In
the example case,
emacs.@unexeccommandExecute command as part of
the deinstallation process. Expansion of special
% sequences is the same as for
@exec. This command is not executed
during the package add, as @exec is, but
rather when the package is deleted. This is useful for
deleting links and other ancillary files that were created
as a result of adding the package, but not directly known to
the package's table of contents (and hence not automatically
removable).@modemodeSet default permission for all subsequently extracted
files to mode. Format is the
same as that used by &man.chmod.1;. Use without an arg to
set back to default permissions (mode of the file while
being packed).This must be a numeric mode, like
644, 4755, or
600. It cannnot be a relative mode
like u+s.@owneruserSet default ownership for all subsequent files to
user. Use without an argument to
set back to default ownership (root).@groupgroupSet default group ownership for all subsequent files to
group. Use without an arg to set
back to default group ownership (wheel).@commentstringThis line is ignored when packing.@dirdirectoryDeclare directory name. By default, directories created
under PREFIX by a package installation
are automatically removed. Use this when an empty directory
under PREFIX needs to be created, or when
the directory needs to have non default owner, group, or
mode. Directories outside of PREFIX need
to be registered. For example,
/var/db/${PORTNAME} needs to have a
@dir entry whereas
${PREFIX}/share/${PORTNAME} does not if
it contains files or uses the default owner, group, and
mode.@dirrmdirectory (Deprecated)Declare directory name to be deleted at deinstall time.
By default, directories created under
PREFIX by a package installation are
deleted when the package is deinstalled.@dirrmtrydirectory (Deprecated)Declare directory name to be removed, as for
@dirrm, but does not issue a warning if
the directory cannot be removed.Creating New KeywordsPackage list files can be extended by keywords that are
defined in the ${PORTSDIR}/Keywords directory.
+ >${PORTSDIR}/Keywords directory.
The settings for each keyword are stored in a
UCL file named
keyword.ucl.
The file must contain at least one of the next
sections:attributesChanges the owner, group, or mode used by the
keyword. Contains an associative array where the
possible keys are owner,
group, and mode.
The values are, respectively, a user name, a group name,
and a file mode. For example:attributes: { owner: "games", group: "games", mode: 0555 }actionDefines what happens to the keyword's parameter.
Contains an array where the possible values are:setprefixSet the prefix for the next plist
entries.dirRegister a directory to be created on
install and removed on deinstall.dirrmRegister a directory to be deleted on
deinstall. Deprecated.dirrmtryRegister a directory to try and deleted on
deinstall. Deprecated.fileRegister a file.setmodeSet the mode for the next plist
entries.setownerSet the owner for the next plist
entries.setgroupSet the group for the next plist
entries.commentDoes not do anything, equivalent to not
entering an action
section.ignore_nextIgnore the next entry in the plist.pre-installpost-installpre-deinstallpost-deinstallpre-upgradepost-upgradeThese keywords contains a &man.sh.1; script to be
executed before or after installation, deinstallation,
or upgrade of the package. In addition to the usual
@exec%foo
placeholders described in , there is a new
one, %@, which represents the
argument of the keyword.Example of a @dirrmtryecho
KeywordThis keyword does two things, it adds a
@dirrmtry
directory line to the
packing list, and echoes the fact that the directory is
removed when deinstalling the package.actions: [dirrmtry]
post-deinstall: <<EOD
echo "Directory %D/%@ removed."
EODReal Life Example, How @sample
is ImplementedThis keyword does three things, it adds the
filename passed as an argument to
@sample to the packing list, it adds to
the post-install script instructions to
copy the sample to the actual configuration file if it does
not already exist, and it adds to the
post-deinstall instructions to remove the
configuration file if it has not been modified.actions: [file]
post-install: <<EOD
case "%@" in
/*) sample_file="%@" ;;
*) sample_file="%D/%@" ;;
esac
target_file="${sample_file%.sample}"
if ! [ -f "${target_file}" ]; then
/bin/cp -p "${sample_file}" "${target_file}"
fi
EOD
pre-deinstall: <<EOD
case "%@" in
/*) sample_file="%@" ;;
*) sample_file="%D/%@" ;;
esac
target_file="${sample_file%.sample}"
if cmp -s "${target_file}" "${sample_file}"; then
rm -f "${target_file}"
else
echo "You may need to manually remove ${target_file} if it's no longer needed."
fi
EOD
Index: head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml
===================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml (revision 46272)
+++ head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml (revision 46273)
@@ -1,1330 +1,1330 @@
Values of
USES
Values of USESFeatureArgumentsDescriptionada(none), 47Depends on an Ada-capable
compiler, and sets CC accordingly.
Defaults to a gcc 4.9 based
compiler, use :47 to use the older
gcc 4.7 based one.autoreconf(none), buildRuns autoreconf. It encapsulates
the aclocal,
autoconf,
autoheader,
automake, autopoint,
and libtoolize commands. Each command
applies to
${CONFIGURE_WRKSRC}/configure.ac or
its old name,
${CONFIGURE_WRKSRC}/configure.in. If
configure.ac defines subdirectories
with their own configure.ac using
AC_CONFIG_SUBDIRS,
autoreconf will recursively update
those as well. The :build argument
only adds build time dependencies on those tools but does
not run autoreconf.bison(none), build,
run, bothUses devel/bison
By default, with no arguments or with the
build argument, it implies
bison is a build-time dependency,
run implies a run-time dependency, and
both implies both run-time and
build-time dependencies.charsetfix(none)Prevents the port from installing
charset.alias. This must be
installed only by
converters/libiconv.
CHARSETFIX_MAKEFILEIN can be set to a
path relative to WRKSRC if
charset.alias is not installed by
${WRKSRC}/Makefile.in.cmake(none), outsource,
runUses CMake for configuring
and building. With the outsource
argument, an out-of-source build will be performed. With
the run argument, a run-time dependency
is registered. For more information see
.compiler(none), c++0x,
c++11-lang,
gcc-c++11-lib,
c++11-lib, c11,
openmp, nestedfct,
featuresDetermines which compiler to use based on any given
wishes. Use c++11-lang if the port
needs a C++11-capable compiler,
gcc-c++11-lib if the port needs the
g++ compiler with a C++11 library, and
c++11-lib if the port also needs a
C++11-ready standard library. If the port needs a
compiler understanding C++0X, C11, OpenMP, or nested
functions, the corresponding parameters can be used. Use
features to request a list of features
supported by the default compiler. After including
bsd.port.pre.mk the port can inspect
the results using these variables:
COMPILER_TYPE: the default
compiler on the system, either gcc or clangALT_COMPILER_TYPE: the
alternative compiler on the system, either gcc or
clang. Only set if two compilers are present in the
base system.COMPILER_VERSION: the first
two digits of the version of the default
compiler.ALT_COMPILER_VERSION: the
first two digits of the version of the alternative
compiler, if present.CHOSEN_COMPILER_TYPE: the
chosen compiler, either gcc or clangCOMPILER_FEATURES: the
features supported by the default compiler. It
currently lists the C++ library.cpe(none)
Include Common Platform Enumeration
(CPE) information in package manifest
as a CPE 2.3 formatted string. See the
CPE
specification for details. To add
CPE information to a port, follow these
steps:
Search for the official CPE entry for the
software product either by using the NVD's CPE
search engine or in the official
CPE dictionary (warning,
very large XML file).
Do not ever make up CPE
data.Add cpe to
USES and compare the result of
make -V CPE_STR to the
CPE dictionary entry. Continue
one step at a time until make -V
CPE_STR is correct.If the product name (second field, defaults to
PORTNAME) is incorrect, define
CPE_PRODUCT.If the vendor name (first field, defaults to
CPE_PRODUCT) is incorrect, define
CPE_VENDOR.If the version field (third field, defaults to
PORTVERSION) is incorrect, define
CPE_VERSION.If the update field (fourth field, defaults to
empty) is incorrect, define
CPE_UPDATE.If it is still not correct, check
Mk/Uses/cpe.mk for additional
details, or contact the &a.ports-secteam;.Derive as much as possible of the
CPE name from existing variables
such as PORTNAME and
PORTVERSION. Use variable
modifiers to extract the relevant portions from
these variables rather than hardcoding the
name.Always run make -V
CPE_STR and check the output before
committing anything that changes
PORTNAME or
PORTVERSION or any other variable
which is used to derive
CPE_STR.cran(none), auto-plistUses the Comprehensive R Archive Network. Specify
auto-plist to automatically generate
pkg-plist.desktop-file-utils(none)Uses
update-desktop-database from
devel/desktop-file-utils.
An extra post-install step will be run without interfering
with any post-install steps already in the port
Makefile. Lines will be inserted
into the plist to run
update-desktop-database on
package install or removal.desthack(none)Changes the behavior of GNU configure to properly
support DESTDIR in case the original
software does not.display(none), ARGSSet up a virtual display environment. If the
environment variable DISPLAY is not
set, then Xvfb is added as a
build dependency, and CONFIGURE_ENV is
extended with the port number of the currently running
instance of Xvfb. The
ARGS parameter defaults to
install and controls the phase around
which to start and stop the virtual display.dos2unix(none)The port has files with line endings in
DOS format which need to be converted.
Three variables can be set to control which files will be
converted. The default is to convert
all files, including binaries. See
for
examples.
DOS2UNIX_REGEX: match file
names based on a regular expression.DOS2UNIX_FILES: match literal
file names.DOS2UNIX_GLOB: match file
names based on a glob pattern.drupal6, 7,
module,
themeAutomate installation of a port that is a
Drupal
theme or module. Use with the version of Drupal that the
port is expecting. For example,
USES=drupal:6,module says that this
port creates a Drupal 6 module. A Drupal 7 theme can be
specified with
USES=drupal:7,theme.execinfo(none)Add a library dependency on devel/libexecinfo if
libexecinfo.so is not present in the
base system.fam(none), fam, gaminUses a File Alteration Monitor as a library
dependency, either
devel/fam or
devel/gamin. End users can
set WITH_FAM_SYSTEM to specify their preference.fmake(none)Uses devel/fmake as a
build-time dependency.fortrangcc (default),
ifortUses the Fortran compiler from either GNU or
Intel.fuse(none)The port will depend on the FUSE library and handle
the dependency on the kernel module depending on the
version of &os;.geckolibxul (default),
firefox, seamonkey,
thunderbird, build,
XY,
XY+Add a dependency on different
gecko based applications. If
libxul is used, it is the only argument
allowed. When the argument is not
libxul, the firefox,
seamonkey, or
thunderbird arguments can be used,
along with optional build and
XY/XY+
version
arguments.gettext(none), lib (default),
build, runUses devel/gettext.
By default, with no arguments or with the
lib argument, implies a library
dependency on libintl.so.
build and run
implies, respectively a build-time and a run-time
dependency on xgettext.gmake(none), liteUses devel/gmake, or
devel/gmake-lite if the
lite argument is used, as a
build-time dependency and sets up the environment to use
gmake as the default
make for the build.gperf(none)Add a buildtime dependency on devel/gperf if
gperf is not present in the base
system.gssapi(none), base (default),
heimdal, mit,
flags,
bootstrapHandle dependencies needed by consumers of the
GSS-API. Only libraries that provide
the Kerberos mechanism are
available. By default, or set to
base, the GSS-API
library from the base system is used. Can also be set
to heimdal to use
security/heimdal, or
mit to use
security/krb5.When the local Kerberos
installation is not in LOCALBASE, set
HEIMDAL_HOME (for
heimdal) or
KRB5_HOME (for
krb5) to the location of the
Kerberos installation.These variables are exported for the ports to
use:GSSAPIBASEDIRGSSAPICPPFLAGSGSSAPIINCDIRGSSAPILDFLAGSGSSAPILIBDIRGSSAPILIBSGSSAPI_CONFIGURE_ARGSThe flags option can be given
alongside base,
heimdal, or mit to
automatically add GSSAPICPPFLAGS,
GSSAPILDFLAGS, and
GSSAPILIBS to
CFLAGS, LDFLAGS,
and LDADD, respectively. For
example, use base,flags.The bootstrap option is a special
prefix only for use by
security/krb5 and
security/heimdal. For
example, use bootstrap,mit.Typical UseOPTIONS_SINGLE= GSSAPI
OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE
GSSAPI_BASE_USES= gssapi
GSSAPI_BASE_CONFIGURE_ON= --with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
GSSAPI_HEIMDAL_USES= gssapi:heimdal
GSSAPI_HEIMDAL_CONFIGURE_ON= --with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
GSSAPI_MIT_USES= gssapi:mit
GSSAPI_MIT_CONFIGURE_ON= --with-gssapi=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS}
GSSAPI_NONE_CONFIGURE_ON= --without-gssapihorde(none)Add buildtime and runtime dependencies on devel/pear-channel-horde. Other
Horde dependencies can be added
with USE_HORDE_BUILD and
USE_HORDE_RUN. See for more information.iconv(none), lib,
build,
patch, translit,
wchar_tUses iconv functions, either from
the port
converters/libiconv as a
build-time and run-time dependency, or from the base
system on 10-CURRENT after a native
iconv was committed in
254273. By default, with no
arguments or with the lib argument,
implies iconv with build-time and
run-time dependencies. build implies a
build-time dependency, and patch
implies a patch-time dependency. If the port uses the
WCHAR_T or
//TRANSLIT iconv extensions, add the
relevant arguments so that the correct iconv is used. For
more information see
.imake(none), env,
notall,
nomanAdd devel/imake as a
build-time dependency and run xmkmf -a
during the configure stage. If
the env argument is given, the
configure target is not set.
If the flag is a problem for the port,
add the notall argument. If
xmkmf does not generate a
install.man target, add the
noman argument.kmod(none)Fills in the boilerplate for kernel module ports,
currently:
Add kld to
CATEGORIES.Set SSP_UNSAFE.Set IGNORE if the kernel
sources are not found in
SRC_BASE.Define KMODDIR to
- /boot/modules
+ /boot/modules
by default, add it to PLIST_SUB
and MAKE_ENV, and create it upon
installation. If KMODDIR is set
to
- /boot/kernel,
+ /boot/kernel,
it will be rewritten to /boot/modules. This
+ >/boot/modules. This
prevents breaking packages when upgrading the kernel
due to /boot/kernel being
+ >/boot/kernel being
renamed to /boot/kernel.old in
+ >/boot/kernel.old in
the process.Handle cross-referencing kernel modules upon
installation and deinstallation.lha(none)Set EXTRACT_SUFX to
.lzhlibtool(none), keepla,
buildPatches libtool scripts. This
must be added to all ports that use
libtool. The keepla
argument can be used to keep .la
files. Some ports do not ship with their own copy of
libtool and need a build time dependency on devel/libtool, use the
:build argument to add such
dependency.lua(none),
XY+,
XY,
build,
runAdds a dependency on Lua.
By default this is a library dependency, unless
overridden by the build or
run option. The default version is
5.2, unless set by the
XY parameter
(for example, 51 or
52+).makeinfobuild (default),
run, bothAdd the corresponding dependencies on
makeinfo.makeself(none)Indicates that the distribution files are makeself
archives and sets the appropriate dependencies.mono(none)Adds a dependency on the
Mono (currently only C#)
framework by setting the appropriate dependencies.motif(none)Uses
x11-toolkits/open-motif as
a library dependency. End users can set
WANT_LESSTIF for the dependency to be
on x11-toolkits/lesstif
instead of x11-toolkits/open-motif.ncurses(none), base,
portUses ncurses, and causes
some useful variables to be set.ninja(none)Uses ninja to build the
port. End users can set NINJA_VERBOSE
for verbose output.objc(none)Add objective C dependencies (compiler, runtime
library) if the base system does not support it.openalal, soft
(default), si,
alutUses OpenAL. The backend
can be specified, with the software implementation as the
default. The user can specify a preferred backend with
WANT_OPENAL. Valid values for
this knob are soft (default) and
si.pathfix(none)Look for Makefile.in and
configure in the port's
associated sources and fix common paths to make sure they
respect the &os; hierarchy. If the port uses
automake, set
PATHFIX_MAKEFILEIN to
Makefile.am if needed.pear(none)Adds a dependency on devel/pear. It will setup default
behavior for software using the
PHP Extension and Application
Repository. See for more
information.perl5(none)Depends on Perl. These
variables can be set:
PERL_VERSION: Full version of
Perl to use, or the
default if not setPERL_ARCH: Directory name of
architecture dependent libraries, defaults to
- mach
+ machPERL_PORT: Name of the
Perl port to be
installed, the default is derived from
PERL_VERSIONSITE_PERL: Directory name for
site specific Perl
packagesUSE_PERL5: Phases in which to
use Perl, can be
extract,
patch, build,
install, or
run. It can also be
configure,
modbuild, or
modbuildtiny when
Makefile.PL,
Build.PL, or the
Module::Build::Tiny flavor of
Build.PL is required. If there
is a .packlist referencing
${STAGEDIR}, then
fixpacklist must be used to
patch it. It defaults to
build run.pgsql(none),
X.Y,
X.Y+,
X.Y-Provide support for PostgreSQL. Maintainer can
set version required. Minimum and maximum versions can
be specified; for example, 9.0-, 8.4+.Add PostgreSQL component dependency, using
WANT_PGSQL=component[:target]. for example,
WANT_PGSQL=server:configure pltcl
plperl For the full list use
make -V _USE_PGSQL_DEP.pkgconfig(none), build (default),
run, bothUses devel/pkgconf.
With no arguments or with the build
argument, it implies pkg-config as a
build-time dependency. run implies a
run-time dependency and both implies
both run-time and build-time dependencies.pure(none), ffiUses lang/pure.
Largely used for building related
pure ports. With the
ffi argument, it implies
devel/pure-ffi as a
run-time dependency.python(none),
X.Y,
X.Y+,
-X.Y,
X.Y-Z.A,
build,
runUses Python. A supported
version or version range can be specified. If Python is
only needed at build or run time, it can be set as a build
or run dependency with build or
run. See
for more information.qmail(none), build,
run,
both, varsUses mail/qmail. With
the build argument, it implies
qmail as a build-time dependency.
run implies a run-time dependency.
Using no argument or the both argument
implies both run-time and build-time dependencies.
vars will only set QMAIL variables for
the port to use.qmake(none), norecursive,
outsourceUses QMake for
configuring. For more information see
.readline(none), portUses readline as a library
dependency, and sets CPPFLAGS and
LDFLAGS as necessary. If the
port argument is used or if readline
is not present in the base system, add a dependency on
devel/readlinescons(none)Provide support for the use of
devel/sconsshared-mime-info(none)Uses update-mime-database
from misc/shared-mime-info.
This uses will automatically add a post-install step in
such a way that the port itself still can specify there
own post-install step if needed. It also insert lines
into the plist for package install and removal to run
update-mime-data with the
correct arguments.shebangfix(none)A lot of software uses incorrect locations for script
interpreters, most notably
/usr/bin/perl and
/bin/bash. This fixes shebang lines
in scripts listed in SHEBANG_FILES.
Currently Bash,
Java,
Perl,
PHP,
Python,
Ruby,
Tcl, and
Tk are supported by default.
To support another interpreter, set
SHEBANG_LANG,
lua_OLD_CMD and
lua_CMD. For example
SHEBANG_LANG=lua, then
lua_OLD_CMD=/usr/bin/lua and
lua_CMD=${LOCALBASE}/bin/lua.tar(none), Z, bz2,
bzip2, lzma,
tbz, tgz,
txz, xzSet EXTRACT_SUFX to
.tar, .tar.Z,
.tar.bz2, .tar.bz2,
.tar.lzma, .tbz,
.tgz, .txz or
.tar.xz respectively.tclPORTAdd a dependency on Tcl.
The PORT parameter can be either
tcl or tk. Either a
version or wrapper dependency can be appended using
PORT:version or
PORT:wrapper. The version can be
empty, one or more exact version numbers (currently
84, 85, or
86), or a minimal version number
(currently 84+, 85+
or 86+). A build- or run-time only
dependency can be specified using
PORT,build or
PORT,run. After including
bsd.port.pre.mk the port can inspect
the results using these variables:
TCL_VER: chosen major.minor
version of TclTCLSH: full path of the
Tcl interpreterTCL_LIBDIR: path of the
Tcl librariesTCL_INCLUDEDIR: path of the
Tcl C header filesTK_VER: chosen major.minor
version of TkWISH: full path of the
Tk interpreterTK_LIBDIR: path of the
Tk librariesTK_INCLUDEDIR: path of the
Tk C header filestkSame as arguments for tclSmall wrapper when using both
Tcl and
Tk. The same variables are
returned as when using
Tcl.twisted(none), ARGSAdd a dependency on
twistedCore. The list of
required components can be specified as a value of this
variable. ARGS can be one of:
build: add
twistedCore or any
specified component as build dependency.run: add
twistedCore or any
specified component as run dependency.
Besides build and
run, one or more other supported
twisted components can be
specified. Supported values are listed in
Uses/twisted.mk.uidfix(none)Changes some default behavior (mostly variables) of
the build system to allow installing this port as a normal
user. Try this in the port before adding
NEED_ROOT=yesuniquefiles(none), dirsMake files or directories 'unique', by adding a
prefix or suffix. If the dirs argument
is used, the port needs a prefix (a only a prefix) based
on UNIQUE_PREFIX for standard
directories DOCSDIR,
EXAMPLESDIR,
DATADIR, WWWDIR,
ETCDIR. These variables are
available for ports:
UNIQUE_PREFIX: The prefix to
be used for directories and files. Default:
${PKGNAMEPREFIX}.UNIQUE_PREFIX_FILES: A list
of files that need to be prefixed. Default:
empty.UNIQUE_SUFFIX: The suffix to
be used for files. Default:
${PKGNAMESUFFIX}.UNIQUE_SUFFIX_FILES: A list
of files that need to be suffixed. Default:
empty.webplugin(none), ARGSAutomatically create and remove symbolic links for
each application that supports the webplugin framework.
ARGS can be one of:
gecko: support plug-ins based
on Geckonative: support plug-ins for
Gecko, Opera, and WebKit-GTKlinux: support Linux
plug-insall (default, implicit):
support all plug-in types(individual entries): support only the browsers
listed
These variables can be adjusted:
WEBPLUGIN_FILES: No default,
must be set manually. The plug-in files to
install.WEBPLUGIN_DIR: The directory
to install the plug-in files to, default PREFIX/lib/browser_plugins/WEBPLUGIN_NAME.
+ >PREFIX/lib/browser_plugins/WEBPLUGIN_NAME.
Set this if the port installs plug-in files outside
of the default directory to prevent broken symbolic
links.WEBPLUGIN_NAME: The final
directory to install the plug-in files into, default
PKGBASE.zip(none), infozipIndicates that the distribution files use the ZIP
compression algorithm. For files using the InfoZip
algorithm the infozip argument must be
passed to set the appropriate dependencies.zope(none)Uses www/zope. Mostly
used for building zope related
ports. ZOPE_VERSION can be used by a
port to indicate that a specific version of
zope shall be used.