Index: head/en_US.ISO8859-1/books/porters-handbook/pkg-files/chapter.xml
===================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/pkg-files/chapter.xml (revision 51912)
+++ head/en_US.ISO8859-1/books/porters-handbook/pkg-files/chapter.xml (revision 51913)
@@ -1,204 +1,220 @@
pkg-*There are some tricks we have not mentioned yet about the
pkg-* files that
come in handy sometimes.pkg-messageTo display a message when the package is installed,
place the message in pkg-message. This
capability is often useful to display additional installation
steps to be taken after a pkg install or to
display licensing information.When some lines about the build-time knobs or warnings
have to be displayed, use ECHO_MSG.
pkg-message is only for
post-installation steps. Likewise, the distinction between
ECHO_MSG is for printing
informational text to the screen and ECHO_CMD
is for
command pipelining:update-etc-shells:
@${ECHO_MSG} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@( ${GREP} -v ${PREFIX}/bin/bash /etc/shells.bak; \
${ECHO_CMD} ${PREFIX}/bin/bash) >/etc/shells
@${RM} /etc/shells.bakDo not add an entry for pkg-message
in pkg-plist.pkg-installIf the port needs to execute commands when the binary
package is installed with pkg add or
pkg install, use
pkg-install. This script will
automatically be added to the package. It will be run twice by
pkg, the first time as ${SH}
pkg-install ${PKGNAME} PRE-INSTALL before the
package is installed, and the second time as
${SH} pkg-install ${PKGNAME}
POST-INSTALL after it has been installed.
$2 can be tested to determine which
mode the script is being run in. The PKG_PREFIX
environmental variable will be set to the package installation
directory.
+
+
+ This script is here to help you set up the package so that
+ it is as ready to use as possible. It must
+ not be abused to start services, stop services,
+ or any other commands that will modify the currenly running
+ system.
+ pkg-deinstallThis script executes when a package is removed.This script will be run twice by pkg
delete The first time as ${SH}
pkg-deinstall ${PKGNAME} DEINSTALL before the
port is de-installed and the second time as
${SH} pkg-deinstall ${PKGNAME}
POST-DEINSTALL after the port has been de-installed.
$2 can be tested to determine which
mode the script is being run in. The PKG_PREFIX
environmental variable will be set to the package installation
directory
+
+
+ This script is here to help you set up the package so that
+ it is as ready to use as possible. It must
+ not be abused to start services, stop services,
+ or any other commands that will modify the currenly running
+ system.
+ Changing the Names of
pkg-*All the names of
pkg-* are
defined using variables that can be changed in the
Makefile if needed. This is especially
useful when sharing the same
pkg-* files
among several ports or when it is necessary to write to one of
these files.
See writing to places other than
WRKDIR for why it is a bad idea to
write directly into
the directory containing the
pkg-*
files.Here is a list of variable names and their default values.
(PKGDIR defaults to
${MASTERDIR}.)VariableDefault valueDESCR${PKGDIR}/pkg-descrPLIST${PKGDIR}/pkg-plistPKGINSTALL${PKGDIR}/pkg-installPKGDEINSTALL${PKGDIR}/pkg-deinstallPKGMESSAGE${PKGDIR}/pkg-messageMaking Use of SUB_FILES and
SUB_LISTSUB_FILES and
SUB_LIST are useful for dynamic
values in port files, such as the installation
PREFIX in
pkg-message.SUB_FILES specifies a list
of files to be automatically modified. Each
file in the
SUB_FILES list must have a corresponding
file.in present
in FILESDIR. A modified version will be
created as
${WRKDIR}/file.
Files defined as a value of USE_RC_SUBR are
automatically added to SUB_FILES. For the files
pkg-message,
pkg-install, and
pkg-deinstall, the corresponding Makefile
variable is automatically set to point to the processed
version.SUB_LIST is a list of
VAR=VALUE pairs. For each pair,
%%VAR%% will be replaced with
VALUE in each file listed in
SUB_FILES. Several common pairs are
automatically defined: PREFIX,
LOCALBASE, DATADIR,
DOCSDIR, EXAMPLESDIR,
WWWDIR, and ETCDIR. Any
line beginning with @comment followed by a
space, will be deleted
from resulting files after a variable substitution.This example replaces
%%ARCH%% with the system architecture in a
pkg-message:SUB_FILES= pkg-message
SUB_LIST= ARCH=${ARCH}Note that for this example,
pkg-message.in must exist in
FILESDIR.Example of a good
pkg-message.in:Now it is time to configure this package.
Copy %%PREFIX%%/share/examples/putsy/%%ARCH%%.conf into your home directory
as .putsy.conf and edit it.
Index: head/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml
===================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml (revision 51912)
+++ head/en_US.ISO8859-1/books/porters-handbook/plist/chapter.xml (revision 51913)
@@ -1,1032 +1,1040 @@
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. While names listed in
PLIST_FILES and
PLIST_DIRS are subject to
%%VAR%%
substitution as described above, it is better to use the
${VAR} directly.
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-install:
${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 followed by a space 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, or if the
sample files come from some other directory, use
this construct:@sample etc/orbit.conf-dist etc/orbit.confor@sample %%EXAMPLESDIR%%/orbit.conf etc/orbit.confThe format is @sample
sample-fileactual-config-file.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 PLIST_SUB with Regular
ExpressionsStrings to be replaced sometimes need to be very specific
to avoid undesired replacements. This is a common problem
with shorter values.To address this problem, for each
PLACEHOLDER=value,
a
PLACEHOLDER_regex=regex
can be set, with the
regex part
matching value more
precisely.Using PLIST_SUB with Regular ExpressionsPerl ports can install
architecture dependent files in a specific tree. On &os; to
ease porting, this tree is called mach.
For example, a port that installs a file whose path contains
mach could have that part of the path
string replaced with the wrong values. Consider this
Makefile:PORTNAME= Machine-Build
DISTVERSION= 1
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Building machine
USES= perl5
USE_PERL5= configure
PLIST_SUB= PERL_ARCH=machThe files installed by the port are:/usr/local/bin/machine-build
/usr/local/lib/perl5/site_perl/man/man1/machine-build.1.gz
/usr/local/lib/perl5/site_perl/man/man3/Machine::Build.3.gz
/usr/local/lib/perl5/site_perl/Machine/Build.pm
/usr/local/lib/perl5/site_perl/mach/5.20/Machine/Build/Build.soRunning make makeplist wrongly
generates:bin/%%PERL_ARCH%%ine-build
%%PERL5_MAN1%%/%%PERL_ARCH%%ine-build.1.gz
%%PERL5_MAN3%%/Machine::Build.3.gz
%%SITE_PERL%%/Machine/Build.pm
%%SITE_PERL%%/%%PERL_ARCH%%/%%PERL_VER%%/Machine/Build/Build.soChange the PLIST_SUB line from the
Makefile to:PLIST_SUB= PERL_ARCH=mach \
PERL_ARCH_regex=\bmach\bNow make makeplist correctly
generates:bin/machine-build
%%PERL5_MAN1%%/machine-build.1.gz
%%PERL5_MAN3%%/Machine::Build.3.gz
%%SITE_PERL%%/Machine/Build.pm
%%SITE_PERL%%/%%PERL_ARCH%%/%%PERL_VER%%/Machine/Build/Build.soExpanding 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@desktop-file-utilsWill run update-desktop-database -q
after installation and deinstallation.
Never use directly, add USES=desktop-file-utils
to the Makefile.@fcdirectoryAdd a @dir entry for the directory
passed as an argument, and run fc-cache -fs
on that directory after installation and
deinstallation.@fcfontsdirdirectoryAdd a @dir entry for the
directory passed as an argument, and run fc-cache
-fs, 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. This keyword is equivalent to adding both @fcdirectory and @fontsdirdirectory.@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.@glib-schemasRuns glib-compile-schemas on
installation and deinstallation.@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. This should never be used manually, but
always through INFO. See for more information.@klddirectoryRuns kldxref on the directory
on installation and deinstallation. Additionally, on
deinstallation, it will remove the directory if empty.@rmtryfileWill remove the file on deinstallation, and not give an
error if the file is not there.@samplefile
[file]This is used to handle installation of configuration
files, through example files bundled with the package. The
actual, non-sample, file is either the second
filename, if present, or the first filename without the
.sample extension.This does three things. First, add the first file passed
as argument, the sample file, to the plist. Then, on
installation, if the actual file is not found, copy the sample
file to the actual file. And finally, on deinstallation,
remove the actual file if it has not been modified. See for more information.@shared-mime-infodirectoryRuns update-mime-database on the
directory on installation and deinstallation.@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.@terminfoDo not use by itself. If the port installs
*.terminfo
files, add USES=terminfo
to its Makefile.On installation and deinstallation, if
tic is present, refresh
${PREFIX}/share/misc/terminfo.db from the
*.terminfo
files in ${PREFIX}/share/misc.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@preexeccommand,
@postexeccommand,
@preunexeccommand,
@postunexeccommandExecute command as part of
the package installation or deinstallation process.@preexeccommandExecute command as part
of the pre-install
scripts.@postexeccommandExecute command as part
of the post-install
scripts.@preunexeccommandExecute command as part
of the pre-deinstall
scripts.@postunexeccommandExecute command as part
of the post-deinstall
scripts.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
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.%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.%fExpand to the filename part of the fully qualified
name, or the converse of %B. In
the example case,
emacs.
+
+
+ These keywords are here to help you set up the package
+ so that it is as ready to use as possible. They
+ must not be abused to start services,
+ stop services, or any other commands that will modify the
+ currenly running system.
+ @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 cannot 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.@execcommand,
@unexeccommand (Deprecated)Execute command as part of
the installation or deinstallation process. Please use
instead.@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. The settings for each keyword are stored in a
UCL file named
keyword.ucl.
The file must contain at least one of these sections:attributesactionpre-installpost-installpre-deinstallpost-deinstallpre-upgradepost-upgradeattributesChanges 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.argumentsIf set to true, adds argument
handling, splitting the whole line, %@,
into numbered arguments, %1,
%2, and so on. For example, for this
line:@foo some.content other.content%1 and %2 will
contain:some.content
other.contentIt also affects how the action
entry works. When there is more than one argument, the
argument number must be specified. For example:actions: [file(1)]pre-install,
post-install,
pre-deinstall,
post-deinstall,
pre-upgrade,
post-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.Custom Keyword ExamplesExample 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 first
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(1)]
arguments: true
post-install: <<EOD
case "%1" in
/*) sample_file="%1" ;;
*) sample_file="%D/%1" ;;
esac
target_file="${sample_file%.sample}"
set -- %@
if [ $# -eq 2 ]; then
target_file=${2}
fi
case "${target_file}" in
/*) target_file="${target_file}" ;;
*) target_file="%D/${target_file}" ;;
esac
if ! [ -f "${target_file}" ]; then
/bin/cp -p "${sample_file}" "${target_file}" && \
/bin/chmod u+w "${target_file}"
fi
EOD
pre-deinstall: <<EOD
case "%1" in
/*) sample_file="%1" ;;
*) sample_file="%D/%1" ;;
esac
target_file="${sample_file%.sample}"
set -- %@
if [ $# -eq 2 ]; then
set -- %@
target_file=${2}
fi
case "${target_file}" in
/*) target_file="${target_file}" ;;
*) target_file="%D/${target_file}" ;;
esac
if cmp -s "${target_file}" "${sample_file}"; then
rm -f "${target_file}"
else
echo "You may need to manually remove ${target_file} if it is no longer needed."
fi
EOD
Index: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml
===================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml (revision 51912)
+++ head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml (revision 51913)
@@ -1,5836 +1,5845 @@
Special ConsiderationsThis section explains the most common things to consider when
creating a port.Stagingbsd.port.mk expects ports to work
with a stage directory. This means that a port
must not install files directly to the regular destination
directories (that is, under PREFIX, for
example) but instead into a separate directory from which the
package is then built. In many cases, this does not require
root privileges, making it possible to build packages as an
unprivileged user. With staging, the port is built and
installed into the stage directory,
STAGEDIR. A package is created from the
stage directory and then installed on the system. Automake
tools refer to this concept as DESTDIR, but
in &os;, DESTDIR has a different meaning
(see ).No port really needs to be root. It
can mostly be avoided by using USES=uidfix.
If the port still runs commands like &man.chown.8;,
&man.chgrp.1;, or forces owner or group with &man.install.1;
then use USES=fakeroot
to fake those calls. Some patching of the port's
Makefiles will be needed.Meta ports, or ports that do not install files themselves
but only depend on other ports, must avoid needlessly
extracting the &man.mtree.8; to the stage directory. This is
the basic directory layout of the package, and these empty
directories will be seen as orphans. To prevent
&man.mtree.8; extraction, add this line:NO_MTREE= yesMetaports should use USES=metaport.
It sets up defaults for ports that do not fetch, build, or
install anything.Staging is enabled by prepending
STAGEDIR to paths used in the
pre-install,
do-install, and
post-install targets (see the
examples through the book). Typically, this includes
PREFIX, ETCDIR,
DATADIR, EXAMPLESDIR,
MANPREFIX, DOCSDIR, and
so on. Directories should be created as part of the
post-install target. Avoid using
absolute paths whenever possible.Ports that install kernel modules must prepend
STAGEDIR to their destination, by default
/boot/modules.Handling Symbolic LinksWhen creating a symlink, there are two cases, either the
source and target are both within
${PREFIX}. In that case, use
${RLN}. In the other case, if one or both
of the paths are outside of ${PREFIX}
use ${LN} -s and only prepend
${STAGEDIR} to the target's path.Inside ${PREFIX}, Create Relative
Symbolic Links${RLN} uses &man.install.1;'s
relative symbolic feature which frees the porter of
computing the relative path.${RLN} ${STAGEDIR}${PREFIX}/lib/libfoo.so.42 ${STAGEDIR}${PREFIX}/lib/libfoo.soWill generate:&prompt.user; ls -lF ${STAGEDIR}${PREFIX}/lib
lrwxr-xr-x 1 nobody nobody 181 Aug 3 11:27 libfoo.so@ -> libfoo.so.42
-rwxr-xr-x 1 nobody nobody 15 Aug 3 11:24 libfoo.so.42*When used with paths not in the same directory:${RLN} ${STAGEDIR}${PREFIX}/libexec/foo/bar ${STAGEDIR}${PREFIX}/bin/barWill automatically generate the relative symbolic
links:&prompt.user; ls -lF ${STAGEDIR}${PREFIX}/bin
lrwxr-xr-x 1 nobody nobody 181 Aug 3 11:27 bar@ -> ../libexec/foo/barOutside ${PREFIX}, Create Absolute
Symbolic LinksWhen creating a symbolic link outside of
${PREFIX}, the source must not contain
${STAGEDIR}, the target, however,
must:${LN} -sf /var/cache/${PORTNAME} ${STAGEDIR}${PREFIX}/share/${PORTNAME}Will generate:&prompt.user; ls -lF ${STAGEDIRDIR}${PREFIX}/share
lrwxr-xr-x 1 nobody nobody 181 Aug 3 11:27 foo@ -> /var/cache/fooBundled LibrariesThis section explains why bundled dependencies are
considered bad and what to do about them.Why Bundled Libraries Are BadSome software requires the porter to locate third-party
libraries and add the required dependencies to the port.
Other software bundles all necessary libraries into the
distribution file. The second approach seems easier at
first, but there are some serious drawbacks:This list is loosely based on the Fedora
and Gentoo
wikis, both licensed under the CC-BY-SA
3.0 license.SecurityIf vulnerabilities are found in the upstream library
and fixed there, they might not be fixed in the library
bundled with the port. One reason could be that the
author is not aware of the problem. This means that the
porter must fix them, or upgrade to a non-vulnerable
version, and send a patch to the author. This all takes
time, which results in software being vulnerable longer
than necessary. This in turn makes it harder to
coordinate a fix without unnecessarily leaking
information about the vulnerability.BugsThis problem is similar to the problem with security
in the last paragraph, but generally less severe.ForkingIt is easier for the author to fork the upstream
library once it is bundled. While convenient on first
sight, it means that the code diverges from upstream
making it harder to address security or other problems
with the software. A reason for this is that patching
becomes harder.Another problem of forking is that because code
diverges from upstream, bugs get solved over and over
again instead of just once at a central location. This
defeats the idea of open source software in the first
place.Symbol collisionWhen a library is installed on the system, it might
collide with the bundled version. This can cause
immediate errors at compile or link time. It can also
cause errors when running the program which might be
harder to track down. The latter problem could be
caused because the versions of the two libraries are
incompatible.LicensingWhen bundling projects from different sources,
license issues can arise more easily, especially when
licenses are incompatible.Waste of resourcesBundled libraries waste resources on several levels.
It takes longer to build the actual application,
especially if these libraries are already present on the
system. At run-time, they can take up unnecessary
memory when the system-wide library is already loaded by
one program and the bundled library is loaded by another
program.Waste of effortWhen a library needs patches for &os;, these patches
have to be duplicated again in the bundled library.
This wastes developer time because the patches might not
apply cleanly. It can also be hard to notice that these
patches are required in the first place.What to do About Bundled LibrariesWhenever possible, use the unbundled version of the
library by adding a LIB_DEPENDS to the
port. If such a port does not exist yet, consider creating
it.Only use bundled libraries if the upstream has a
good track record on security and using unbundled versions
leads to overly complex patches.In some very special cases, for example emulators, like
Wine, a port has to bundle
libraries, because they are in a different architecture, or
they have been modified to fit the software's use. In that
case, those libraries should not be exposed to other ports
for linking. Add BUNDLE_LIBS=yes to the
port's Makefile. This will tell
&man.pkg.8; to not compute provided libraries. Always ask
the &a.portmgr; before adding this to a port.Shared LibrariesIf the port installs one or more shared libraries, define
a USE_LDCONFIG make variable, which will
instruct a bsd.port.mk to run
${LDCONFIG} -m on the directory
where the new library is installed (usually
PREFIX/lib) during
post-install target to register it
into the shared library cache. This variable, when defined,
will also facilitate addition of an appropriate
@exec /sbin/ldconfig -m and
@unexec /sbin/ldconfig -R pair into
pkg-plist, so that a user who
installed the package can start using the shared library
immediately and de-installation will not cause the system to
still believe the library is there.USE_LDCONFIG= yesThe default directory can be overridden by
setting USE_LDCONFIG to a list of
directories into which shared libraries are to be installed.
For example, if the port installs shared libraries into
PREFIX/lib/foo and
PREFIX/lib/bar
use this in
Makefile:USE_LDCONFIG= ${PREFIX}/lib/foo ${PREFIX}/lib/barPlease double-check, often this is not necessary at all or
can be avoided through -rpath or setting
LD_RUN_PATH during linking (see
lang/mosml for an
example), or through a shell-wrapper which sets
LD_LIBRARY_PATH before invoking the binary,
like www/seamonkey
does.When installing 32-bit libraries on 64-bit system, use
USE_LDCONFIG32 instead.If the software uses autotools, and specifically
libtool, add USES=libtool.When the major library version number increments in the
update to the new port version, all other ports that link to
the affected library must have their
PORTREVISION incremented, to force
recompilation with the new library version.Ports with Distribution Restrictions or Legal
ConcernsLicenses vary, and some of them place restrictions on how
the application can be packaged, whether it can be sold for
profit, and so on.It is the responsibility of a porter to read the
licensing terms of the software and make sure that the
&os; project will not be held accountable for violating
them by redistributing the source or compiled binaries
either via FTP/HTTP or CD-ROM. If in doubt, please contact
the &a.ports;.In situations like this, the variables described in the
next sections can be set.NO_PACKAGEThis variable indicates that we may not generate a
binary package of the application. For instance, the
license may disallow binary redistribution, or it may
prohibit distribution of packages created from patched
sources.However, the port's DISTFILES may be
freely mirrored on FTP/HTTP. They may also be distributed
on a CD-ROM (or similar media) unless
NO_CDROM is set as well.If the
binary package is not generally useful, and the application
must always be compiled from the source code, use
NO_PACKAGE. For
example, if the application has configuration information
that is site specific hard coded into it at compile time,
set NO_PACKAGE.Set NO_PACKAGE to a string
describing the reason why the package cannot be
generated.NO_CDROMThis variable alone indicates that, although we are
allowed to generate binary packages, we may put neither
those packages nor the port's DISTFILES
onto a CD-ROM (or similar media) for resale. However, the
binary packages and the port's DISTFILES
will still be available via FTP/HTTP.If this variable is set along with
NO_PACKAGE, then only the port's
DISTFILES will be available, and only via
FTP/HTTP.Set NO_CDROM to a string
describing the reason why the port cannot be redistributed
on CD-ROM. For instance, use this if the port's
license is for non-commercial use
only.NOFETCHFILESFiles defined in NOFETCHFILES
are not fetchable from any of
MASTER_SITES. An example of such a file
is when the file is supplied on CD-ROM by the vendor.Tools which check for the availability of these files
on MASTER_SITES have to ignore these
files and not report about them.RESTRICTEDSet this variable alone if the application's license
permits neither mirroring the application's
DISTFILES nor distributing the binary
package in any way.Do not set NO_CDROM or
NO_PACKAGE along with
RESTRICTED, since the latter variable
implies the former ones.Set RESTRICTED to a string
describing the reason why the port cannot be redistributed.
Typically, this indicates that the port contains proprietary
software and that the user will need to manually download
the DISTFILES, possibly after registering
for the software or agreeing to accept the terms of an
EULA.RESTRICTED_FILESWhen RESTRICTED or
NO_CDROM is set, this variable defaults
to ${DISTFILES} ${PATCHFILES}, otherwise
it is empty. If only some of the distribution files are
restricted, then set this variable to list them.LEGAL_TEXTIf the port has legal concerns not addressed by the
above variables, set LEGAL_TEXT
to a string explaining the concern. For
example, if special permission was obtained for &os; to
redistribute the binary, this variable must indicate
so./usr/ports/LEGAL and
LEGALA port which sets any of the above variables must also
be added to /usr/ports/LEGAL. The
first column is a glob which matches the restricted
distfiles. The second column is the port's origin. The
third column is the output of
make -VLEGAL.ExamplesThe preferred way to state "the distfiles for this port
must be fetched manually" is as follows:.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE= may not be redistributed because of licensing reasons. Please visit some-website to accept their license and download ${DISTFILES} into ${DISTDIR}
.endifThis both informs the user, and sets the proper metadata
on the user's machine for use by automated programs.Note that this stanza must be preceded by an inclusion
of bsd.port.pre.mk.Building MechanismsBuilding Ports in ParallelThe &os; ports framework supports parallel building
using multiple make sub-processes, which
allows SMP systems to utilize all of
their available CPU power, allowing port
builds to be faster and more effective.This is achieved by passing -jX flag
to &man.make.1; running on vendor code. This is the default
build behavior of ports. Unfortunately, not all ports
handle parallel building well and it may be required to
explicitly disable this feature by adding the
MAKE_JOBS_UNSAFE=yes variable. It is
used when a port is known to be broken with
-jX.make, gmake,
and imakeSeveral differing make
implementations exist. Ported software often requires a
particular implementation, like GNU
make, known in &os; as
gmake.If the port uses GNU make,
add gmake to
USES.MAKE_CMD can be used to reference the
specific command configured by the USES
setting in the port's Makefile.
Only use MAKE_CMD within the
application Makefiles in
WRKSRC to call the
make implementation expected by the
ported software.If the port is an X application that uses
imake to create
Makefiles from
Imakefiles, set USES=
imake.. See the USES=imake
section of for more details.If the port's source Makefile has
something other than all as the
main build target, set ALL_TARGET
accordingly. The same goes for
install and
INSTALL_TARGET.configure ScriptIf the port uses the configure
script to generate Makefile from
Makefile.in, set
GNU_CONFIGURE=yes. To give
extra arguments to the configure script
(the default argument is --prefix=${PREFIX}
--infodir=${PREFIX}/${INFO_PATH}
--mandir=${MANPREFIX}/man
--build=${CONFIGURE_TARGET}), set those
extra arguments in CONFIGURE_ARGS. Extra
environment variables can be passed using
CONFIGURE_ENV.
Variables for Ports That Use
configureVariableMeansGNU_CONFIGUREThe port uses configure
script to prepare build.HAS_CONFIGURESame as GNU_CONFIGURE,
except default configure target is not added to
CONFIGURE_ARGS.CONFIGURE_ARGSAdditional arguments passed to
configure script.CONFIGURE_ENVAdditional environment variables to be set
for configure script run.CONFIGURE_TARGETOverride default configure target. Default
value is
${MACHINE_ARCH}-portbld-freebsd${OSREL}.
Using cmakeFor ports that use CMake,
define USES= cmake, or
USES= cmake:outsource to build in a
separate directory (see below).
Variables for Ports That Use
cmakeVariableMeansCMAKE_ARGSPort specific CMake
flags to be passed to the cmake
binary.CMAKE_ONFor each entry in CMAKE_ON, an
enabled boolean value is added to
CMAKE_ARGS. See .CMAKE_OFFFor each entry in CMAKE_OFF, a
disabled boolean value is added to
CMAKE_ARGS. See .CMAKE_BUILD_TYPEType of build (CMake
predefined build profiles). Default is
Release, or
Debug if
WITH_DEBUG is set.CMAKE_SOURCE_PATHPath to the source directory. Default is
${WRKSRC}.CONFIGURE_ENVAdditional environment variables to be set for
the cmake binary.
Variables the Users Can Define for
cmake BuildsVariableMeansCMAKE_VERBOSEEnable verbose build output. Default not set,
unless BATCH or
PACKAGE_BUILDING are set.CMAKE_NOCOLORDisables color build output. Default not set,
unless BATCH or
PACKAGE_BUILDING are set.
CMake supports these
build profiles: Debug,
Release,
RelWithDebInfo and
MinSizeRel. Debug and
Release profiles respect system
*FLAGS, RelWithDebInfo
and MinSizeRel will set
CFLAGS to -O2 -g and
-Os -DNDEBUG correspondingly. The
lower-cased value of CMAKE_BUILD_TYPE is
exported to PLIST_SUB and must be
used if the port installs
*.cmake
depending on the build type (see
deskutils/strigi for an
example). Please note that some projects may define their own
build profiles and/or force particular build type by setting
CMAKE_BUILD_TYPE in
CMakeLists.txt. To make a port for such
a project respect CFLAGS and
WITH_DEBUG, the
CMAKE_BUILD_TYPE definitions must be
removed from those files.Most CMake-based projects
support an out-of-source method of building. The
out-of-source build for a port can be requested by using the
:outsource suffix. When enabled,
CONFIGURE_WRKSRC,
BUILD_WRKSRC and
INSTALL_WRKSRC will be set to
${WRKDIR}/.build and this
directory will be used to keep all files generated during
configuration and build stages, leaving the source directory
intact.USES= cmake ExampleThis snippet demonstrates the use of
CMake for a port.
CMAKE_SOURCE_PATH is not usually
required, but can be set when the sources are not located
in the top directory, or if only a subset of the project
is intended to be built by the port.USES= cmake:outsource
CMAKE_SOURCE_PATH= ${WRKSRC}/subprojectCMAKE_ON and
CMAKE_OFFWhen adding boolean values to
CMAKE_ARGS, it is easier to use the
CMAKE_ON and CMAKE_OFF
variables instead. This:CMAKE_ON= VAR1 VAR2
CMAKE_OFF= VAR3Is equivalent to:CMAKE_ARGS= -DVAR1:BOOL=TRUE -DVAR2:BOOL=TRUE -DVAR3:BOOL=FALSEThis is only for the default values off
CMAKE_ARGS. The helpers described in
use the same
semantics, but for optional values.Using sconsIf the port uses SCons,
define USES=scons.To make third party SConstruct
respect everything that is passed to SCons in
the environment (that is, most importantly,
CC/CXX/CFLAGS/CXXFLAGS), patch
SConstruct so build
Environment is constructed like
this:env = Environment(**ARGUMENTS)It may be then modified with
env.Append and
env.Replace.Using cargoFor ports that use Cargo,
define USES=cargo.
Variables the Users Can Define for
cargo BuildsVariableDefaultDescriptionCARGO_CRATESList of crates the port depends on. Each entry
needs to have a format like
cratename-semver for example,
libc-0.2.40. Port maintainers can
generate this list from
Cargo.lock using
make cargo-crates. Manually
bumping crate versions is possible but be mindful of
transitive dependencies.CARGO_FEATURESList of application features to build (space
separated list).CARGO_CARGOTOML${WRKSRC}/Cargo.tomlThe path to the Cargo.toml
to use.CARGO_CARGOLOCK${WRKSRC}/Cargo.lockThe path to the Cargo.lock
to use for make cargo-crates. It
is possible to specify more than one lock file when
necessary.CARGO_ENVA list of environment variables to pass to Cargo
similar to MAKE_ENV.RUSTFLAGSFlags to pass to the Rust compiler.CARGO_CONFIGUREyesUse the default
do-configure.CARGO_UPDATE_ARGSExtra arguments to pass to Cargo during the
configure phase. Valid arguments can be looked up
with cargo update --help.CARGO_BUILDDEPyesAdd a build dependency on
lang/rust.CARGO_CARGO_BIN${LOCALBASE}/bin/cargoLocation of the cargo
binary.CARGO_BUILDyesUse the default
do-build.CARGO_BUILD_ARGSExtra arguments to pass to Cargo during the
build phase. Valid arguments can be looked up with
cargo build --help.CARGO_INSTALLyesUse the default
do-install.CARGO_INSTALL_ARGSExtra arguments to pass to Cargo during the
install phase. Valid arguments can be looked up with
cargo install --help.CARGO_TESTyesUse the default
do-test.CARGO_TEST_ARGSExtra arguments to pass to Cargo during the test
phase. Valid arguments can be looked up with
cargo test --help.CARGO_TARGET_DIR${WRKDIR}/targetLocation of the cargo output directory.CARGO_DIST_SUBDIRrust/cratesDirectory relative to DISTDIR
where the crate distribution files will be
stored.CARGO_VENDOR_DIR${WRKSRC}/cargo-cratesLocation of the vendor directory where
all crates will be extracted to. Try to keep this
under PATCH_WRKSRC, so that
patches can be applied easily.CARGO_USE_GITHUBnoEnable fetching of crates locked to specific Git
commits on GitHub via GH_TUPLE.
This will try to patch both
Cargo.lock and
Cargo.toml to point to the
offline sources instead of fetching them from a
Git repository during the build. Use with caution
as transitive Git dependencies are not resolved and
patched correctly.CARGO_GH_CARGOTOML${CARGO_CARGOTOML}List of Cargo.toml that
will be patched when using
CARGO_USE_GITHUB.
Creating a Port for a Simple Rust ApplicationCreating a Cargo based port is a three stage process.
First we need to provide a ports template that fetches the
application distribution file:PORTNAME= tokei
DISTVERSIONPREFIX= v
DISTVERSION= 7.0.2
CATEGORIES= devel
MAINTAINER= tobik@FreeBSD.org
COMMENT= Display statistics about your code
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= Aaronepower
.include <bsd.port.mk>Generate an initial
distinfo:&prompt.user; make makesum
=> Aaronepower-tokei-v7.0.2_GH0.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://codeload.github.com/Aaronepower/tokei/tar.gz/v7.0.2?dummy=/Aaronepower-tokei-v7.0.2_GH0.tar.gz
fetch: https://codeload.github.com/Aaronepower/tokei/tar.gz/v7.0.2?dummy=/Aaronepower-tokei-v7.0.2_GH0.tar.gz: size of remote file is not known
Aaronepower-tokei-v7.0.2_GH0.tar.gz 45 kB 239 kBps 00m00sNow the distribution file is ready to use and we can go
ahead and extract crate dependencies from the bundled
Cargo.lock:&prompt.user; make cargo-crates
CARGO_CRATES= aho-corasick-0.6.4 \
ansi_term-0.11.0 \
arrayvec-0.4.7 \
atty-0.2.9 \
bitflags-1.0.1 \
byteorder-1.2.2 \
[...]The output of this command needs to be pasted directly
into the Makefile:PORTNAME= tokei
DISTVERSIONPREFIX= v
DISTVERSION= 7.0.2
CATEGORIES= devel
MAINTAINER= tobik@FreeBSD.org
COMMENT= Display statistics about your code
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= Aaronepower
CARGO_CRATES= aho-corasick-0.6.4 \
ansi_term-0.11.0 \
arrayvec-0.4.7 \
atty-0.2.9 \
bitflags-1.0.1 \
byteorder-1.2.2 \
[...]
.include <bsd.port.mk>distinfo needs to be regenerated to
contain all the crate distribution files:&prompt.user; make makesum
=> rust/crates/aho-corasick-0.6.4.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://crates.io/api/v1/crates/aho-corasick/0.6.4/download?dummy=/rust/crates/aho-corasick-0.6.4.tar.gz
rust/crates/aho-corasick-0.6.4.tar.gz 100% of 24 kB 6139 kBps 00m00s
=> rust/crates/ansi_term-0.11.0.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://crates.io/api/v1/crates/ansi_term/0.11.0/download?dummy=/rust/crates/ansi_term-0.11.0.tar.gz
rust/crates/ansi_term-0.11.0.tar.gz 100% of 16 kB 21 MBps 00m00s
=> rust/crates/arrayvec-0.4.7.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://crates.io/api/v1/crates/arrayvec/0.4.7/download?dummy=/rust/crates/arrayvec-0.4.7.tar.gz
rust/crates/arrayvec-0.4.7.tar.gz 100% of 22 kB 3237 kBps 00m00s
=> rust/crates/atty-0.2.9.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch https://crates.io/api/v1/crates/atty/0.2.9/download?dummy=/rust/crates/atty-0.2.9.tar.gz
rust/crates/atty-0.2.9.tar.gz 100% of 5898 B 81 MBps 00m00s
=> rust/crates/bitflags-1.0.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
[...]The working directory currently only contains the
application sources we extracted as part of the
make cargo-crates step. Before
attempting to build the port the working directory
must be cleaned, so that the crate sources can be
extracted into CARGO_VENDOR_DIR:&prompt.user; make clean
===> Cleaning for tokei-7.0.2The port is now ready for a test build and further
adjustments like creating a plist, writing a description,
adding license information, options, etc. as normal.Enabling Additional Application FeaturesSome applications define additional features in their
Cargo.toml. They can be compiled in
by setting CARGO_FEATURES in the
port.Here we enable Tokei's json and
yaml features:CARGO_FEATURES= json yamlListing Crate LicensesCrates have their own licenses. It is important to
know what they are when adding a LICENSE
block to the port (see ). The
helper target
cargo-crates-licenses will try
to list all the licenses of all crates defined in
CARGO_CRATES.&prompt.user; make cargo-crates-licenses
aho-corasick-0.6.4 Unlicense/MIT
ansi_term-0.11.0 MIT
arrayvec-0.4.7 MIT/Apache-2.0
atty-0.2.9 MIT
bitflags-1.0.1 MIT/Apache-2.0
byteorder-1.2.2 Unlicense/MIT
[...]The license names
make cargo-crates-licenses outputs are
SPDX 2.1 licenses expression which do not match the
license names defined in the ports framework. They need
to be translated to the names from
.Using GNU AutotoolsIf a port needs any of the GNU Autotools software, add
USES=autoreconf. See for more information.Using GNU gettextBasic UsageIf the port requires gettext, set
USES= gettext, and the port will inherit
a dependency on libintl.so from
devel/gettext. Other
values for gettext usage are listed in
USES=gettext.A rather common case is a port using
gettext and configure.
Generally, GNU configure should be able
to locate gettext automatically.USES= gettext
GNU_CONFIGURE= yesIf it ever fails to, hints at the location of
gettext can be passed in
CPPFLAGS and LDFLAGS as
follows:USES= gettext
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
GNU_CONFIGURE= yesOptional UsageSome software products allow for disabling
NLS. For example, through passing
to
configure. In that case, the port must use
gettext conditionally, depending on the
status of the NLS option. For ports of low
to medium complexity, use this idiom:GNU_CONFIGURE= yes
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
.include <bsd.port.mk>Or using the older way of using options:GNU_CONFIGURE= yes
OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.include <bsd.port.mk>The next item on the to-do list is to arrange so that
the message catalog files are included in the packing list
conditionally. The Makefile part of
this task is already provided by the idiom. It is explained
in the section on advanced
pkg-plist practices. In a
nutshell, each occurrence of %%NLS%% in
pkg-plist will be replaced by
@comment if NLS is
disabled, or by a null string if NLS is enabled.
Consequently, the lines prefixed by
%%NLS%% will become mere comments in the
final packing list if NLS is off; otherwise the prefix will
be just left out. Then insert
%%NLS%% before each path to a message
catalog file in pkg-plist. For
example:%%NLS%%share/locale/fr/LC_MESSAGES/foobar.mo
%%NLS%%share/locale/no/LC_MESSAGES/foobar.moIn high complexity cases, more advanced techniques
may be needed, such as
dynamic packing list
generation.Handling Message Catalog DirectoriesThere is a point to note about installing message
catalog files. The target directories for them, which
reside under
LOCALBASE/share/locale,
must not be created and removed by a port. The most
popular languages have their respective directories listed
in
PORTSDIR/Templates/BSD.local.dist.
The directories for many other languages are governed by the
devel/gettext port.
Consult its pkg-plist and see whether
the port is going to install a message catalog file for a
unique language.Using PerlIf MASTER_SITES is set to
CPAN, the correct subdirectory is usually
selected automatically. If the default subdirectory is wrong,
CPAN/Module can be used to change it.
MASTER_SITES can also be set to the old
MASTER_SITE_PERL_CPAN, then the preferred
value of MASTER_SITE_SUBDIR is the
top-level hierarchy name. For example, the recommended value
for p5-Module-Name is
Module. The top-level hierarchy can be
examined at cpan.org.
This keeps the port working when the author of the module
changes.The exception to this rule is when the relevant directory
does not exist or the distfile does not exist in that
directory. In such case, using author's id as
MASTER_SITE_SUBDIR is allowed.
The CPAN:AUTHOR macro can be used, which will
be translated to the hashed author directory. For example,
CPAN:AUTHOR will be converted to
authors/id/A/AU/AUTHOR.When a port needs Perl support,
it must set USES=perl5 with the optional
USE_PERL5 described in the perl5 USES description.
Read-Only Variables for Ports That Use
PerlRead only variablesMeansPERLThe full path of the Perl 5 interpreter,
either in the system or installed from a port, but
without the version number. Use this when the software
needs the path to the Perl
interpreter. To replace
#!lines in scripts,
use USES=shebangfix.PERL_VERSIONThe full version of Perl installed (for example,
5.8.9).PERL_LEVELThe installed Perl version as
an integer of the form MNNNPP
(for example, 500809).PERL_ARCHWhere Perl stores architecture
dependent libraries. Defaults to
${ARCH}-freebsd.PERL_PORTName of the Perl port that is installed (for
example, perl5).SITE_PERLDirectory name where site specific
Perl packages go. This value is
added to PLIST_SUB.
Ports of Perl modules which do not have an official
website must link to cpan.org in
the WWW line of pkg-descr. The
preferred URL form is
http://search.cpan.org/dist/Module-Name/
(including the trailing slash).Do not use ${SITE_PERL} in dependency
declarations. Doing so assumes that
perl5.mk has been included, which is
not always true. Ports depending on this port will have
incorrect dependencies if this port's files move later in an
upgrade. The right way to declare Perl module dependencies
is shown in the example below.Perl Dependency Examplep5-IO-Tee>=0.64:devel/p5-IO-TeeFor Perl ports that install manual pages, the macro
PERL5_MAN3 and PERL5_MAN1
can be used
inside pkg-plist. For example,lib/perl5/5.14/man/man1/event.1.gz
lib/perl5/5.14/man/man3/AnyEvent::I3.3.gzcan be replaced with%%PERL5_MAN1%%/event.1.gz
%%PERL5_MAN3%%/AnyEvent::I3.3.gzThere are no
PERL5_MANx
macros for the
other sections (x in
2 and
4 to 9) because those
get installed in the regular directories.A Port Which Only Requires Perl to BuildAs the default USE_PERL5 value is build and run, set it
to:USES= perl5
USE_PERL5= buildA Port Which Also Requires Perl to PatchFrom time to time, using &man.sed.1; for patching is not
enough. When using &man.perl.1; is easier, use:USES= perl5
USE_PERL5= patch build runA Perl Module Which Needs
ExtUtils::MakeMaker to BuildMost Perl modules come with a
Makefile.PL configure script. In this
case, set:USES= perl5
USE_PERL5= configureA Perl Module Which Needs
Module::Build to BuildWhen a Perl module comes with a
Build.PL configure script, it can require
Module::Build, in which case,
setUSES= perl5
USE_PERL5= modbuildIf it instead requires
Module::Build::Tiny, setUSES= perl5
USE_PERL5= modbuildtinyUsing X11X.Org ComponentsThe X11 implementation available in The Ports Collection
is X.Org. If the application depends on X components, set
USE_XORG to the list of required
components. Available components, at the time of writing,
are:bigreqsproto compositeproto damageproto dmx
dmxproto dri2proto dri3proto evieproto fixesproto
fontcacheproto fontenc fontsproto fontutil glproto ice
inputproto kbproto libfs oldx pciaccess pixman presentproto
printproto randrproto recordproto renderproto resourceproto
scrnsaverproto sm trapproto videoproto x11 xau xaw xaw6 xaw7
xbitmaps xcb xcmiscproto xcomposite xcursor xdamage xdmcp
xevie xext xextproto xf86bigfontproto xf86dgaproto
xf86driproto xf86miscproto xf86rushproto xf86vidmodeproto
xfixes xfont xfontcache xft xi xinerama xineramaproto
xkbfile xkbui xmu xmuu xorg-macros xorg-server xp xpm
xprintapputil xprintutil xproto xproxymngproto xrandr
xrender xres xscrnsaver xshmfence xt xtrans xtrap xtst xv
xvmc xxf86dga xxf86misc xxf86vm.Always up-to-date list can be found in
/usr/ports/Mk/bsd.xorg.mk.The Mesa Project is an effort to provide free OpenGL
implementation. To specify a dependency on various
components of this project, use USE_GL.
Valid options are:
egl, gl, glesv2, glew, glu, glut, glw and
linux. For backwards compatibility, the
value of yes maps to
glu.USE_XORG ExampleUSE_XORG= xrender xft xkbfile xt xaw
USE_GL= glu
Variables for Ports That Use XUSES= imakeThe port uses imake.XMKMFSet to the path of xmkmf if
not in the PATH. Defaults to
xmkmf -a.
Using X11-Related Variables# Use some X11 libraries
USE_XORG= x11 xpmPorts That Require MotifIf the port requires a Motif library, define
USES= motif in the
Makefile. Default Motif implementation
is
x11-toolkits/open-motif.
Users can choose
x11-toolkits/lesstif
instead by setting WANT_LESSTIF
in their make.conf.MOTIFLIB will be set by
motif.mk to reference the
appropriate Motif library. Please patch the source of the
port to use ${MOTIFLIB} wherever
the Motif library is referenced in the original
Makefile or
Imakefile.There are two common cases:If the port refers to the Motif library as
-lXm in its
Makefile or
Imakefile, substitute
${MOTIFLIB} for it.If the port uses XmClientLibs in
its Imakefile, change it to
${MOTIFLIB} ${XTOOLLIB}
${XLIB}.Note that MOTIFLIB (usually) expands
to -L/usr/local/lib -lXm -lXp or
/usr/local/lib/libXm.a, so there is no
need to add -L or -l
in front.X11 FontsIf the port installs fonts for the X Window System, put
them in
LOCALBASE/lib/X11/fonts/local.Getting a Fake DISPLAY with XvfbSome applications require a working X11 display for
compilation to succeed. This poses a problem for machines
that operate headless. When this variable is used,
the build infrastructure will start the virtual framebuffer
X server. The working DISPLAY is then passed
to the build. See USES=display
for the possible arguments.USES= displayDesktop EntriesDesktop entries (a
Freedesktop standard) provide a way to
automatically adjust desktop features when a new program is
installed, without requiring user intervention. For
example, newly-installed programs automatically appear in
the application menus of compatible desktop environments.
Desktop entries originated in the
GNOME desktop environment, but
are now a standard and also work with
KDE and
Xfce. This bit of automation
provides a real benefit to the user, and desktop entries are
encouraged for applications which can be used in a desktop
environment.Using Predefined .desktop
FilesPorts that include predefined
*.desktop
must include those files in pkg-plist
and install them in the
$LOCALBASE/share/applications
directory. The INSTALL_DATA
macro is useful for installing these
files.Updating Desktop DatabaseIf a port has a MimeType entry in its
portname.desktop,
the desktop database must be updated after install and
deinstall. To do this, define USES=
desktop-file-utils.Creating Desktop Entries with
DESKTOP_ENTRIESDesktop entries can be easily created for applications
by using DESKTOP_ENTRIES. A
file named
name.desktop
will be created, installed, and added to
pkg-plist automatically. Syntax
is:DESKTOP_ENTRIES= "NAME" "COMMENT" "ICON" "COMMAND" "CATEGORY" StartupNotifyThe list of possible categories is available on the
Freedesktop
website. StartupNotify
indicates whether the application is compatible with
startup notifications. These are
typically a graphic indicator like a clock that appear at
the mouse pointer, menu, or panel to give the user an
indication when a program is starting. A program that is
compatible with startup notifications clears the indicator
after it has started. Programs that are not compatible
with startup notifications would never clear the indicator
(potentially confusing and infuriating the user), and
must have StartupNotify set to
false so the indicator is not shown at
all.Example:DESKTOP_ENTRIES= "ToME" "Roguelike game based on JRR Tolkien's work" \
"${DATADIR}/xtra/graf/tome-128.png" \
"tome -v -g" "Application;Game;RolePlaying;" \
falseUsing GNOMEIntroductionThis chapter explains the GNOME
framework as used by ports. The framework can be loosely
divided into the base components, GNOME
desktop components, and a few special macros that simplify the
work of port maintainers.While developing a port or changing one, please setDEVELOPER=yesin the environment or in
/etc/make.conf. This causes the ports
framework to enable additional checks.Using USE_GNOMEAdding this variable to the port allows the use of
the macros and components defined in
bsd.gnome.mk. The code in
bsd.gnome.mk adds the needed
build-time, run-time or library dependencies
or the handling of special files.
GNOME applications under &os; use the
USE_GNOME infrastructure. Include all the
needed components as a space-separated list. The
USE_GNOME components are divided into
these virtual lists: basic components, GNOME 3 components
and legacy components. If the port needs only GTK3 libraries,
this is the shortest way to define it:USE_GNOME= gtk30USE_GNOME components automatically
add the dependencies they need. Please see
for an exhaustive
list of all USE_GNOME components and which
other components they imply and their dependencies.Here is an example Makefile for a
GNOME port that uses many of the techniques outlined in this
document. Please use it as a guide for creating new
ports.# $FreeBSD$
PORTNAME= regexxer
DISTVERSION= 0.10
CATEGORIES= devel textproc gnome
MASTER_SITES= GNOME
MAINTAINER= kwm@FreeBSD.org
COMMENT= Interactive tool for performing search and replace operations
USES= gettext gmake pathfix pkgconfig tar:xz
GNU_CONFIGURE= yes
USE_GNOME= gnomeprefix intlhack gtksourceviewmm3
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALLS_ICONS= yes
GLIB_SCHEMAS= org.regexxer.gschema.xml
.include <bsd.port.mk>The USE_GNOME macro without any
arguments does not add any dependencies to the port.
USE_GNOME cannot be set after
bsd.port.pre.mk.VariablesThis section explains which macros are available and how
they are used. Like they are used in the above example. The
has a more in-depth
explanation. USE_GNOME has to be set for
these macros to be of use.INSTALLS_ICONSGTK+ ports which install
Freedesktop-style icons to
${LOCALBASE}/share/icons should use
this macro to ensure that the icons are cached and will
display correctly. The cache file is named
icon-theme.cache. Do not include
that file in pkg-plist. This macro
handles that automatically. This macro is not needed
for Qt, which use a
internal method.GLIB_SCHEMASList of all the glib schema files the port installs.
The macro will add the files to the port plist and
handle the registration of these files on install and
deinstall.The glib schema files are written in
XML and end with the
gschema.xml extension. They are
installed in the
share/glib-2.0/schemas/ directory.
These schema files contain all application config values
with there default settings. The actual database used
by the applications is built by
glib-compile-schema, which is
run by the GLIB_SCHEMAS macro.GLIB_SCHEMAS=foo.gschema.xmlDo not add glib schemas to the
pkg-plist. If they are listed in
pkg-plist, they will not be
registered and the applications might not work
properly.GCONF_SCHEMASList all the gconf schema files. The macro will add
the schema files to the port plist and will handle their
registration on install and deinstall.GConf is the XML-based database
that virtually all GNOME applications use for storing
their settings. These files are installed into the
etc/gconf/schemas directory. This
database is defined by installed schema files that are
used to generate %gconf.xml key
files. For each schema file installed by the port,
there be an entry in the
Makefile:GCONF_SCHEMAS=my_app.schemas my_app2.schemas my_app3.schemasGconf schemas are listed in the
GCONF_SCHEMAS macro rather than
pkg-plist. If they are listed in
pkg-plist, they will not be
registered and the applications might not work
properly.INSTALLS_OMFOpen Source Metadata Framework
(OMF) files are commonly used by
GNOME 2 applications. These files contain the
application help file information, and require special
processing by ScrollKeeper/rarian. To properly register
OMF files when installing GNOME
applications from packages, make sure that
omf files are listed in
pkg-plist and that the port
Makefile has
INSTALLS_OMF defined:INSTALLS_OMF=yesWhen set, bsd.gnome.mk
automatically scans pkg-plist and
adds appropriate @exec and
@unexec directives for each
.omf to track in the
OMF registration database.GNOME ComponentsFor further help with a GNOME port, look at some of the
existing
ports for examples. The
&os; GNOME
page has contact information if more help is
needed. The components are divided into GNOME components
that are currently in use and legacy components. If the
component supports argument, they are listed between
parenthesis in the description. The first is the default.
"Both" is shown if the component defaults to adding to both
build and run dependencies.
GNOME ComponentsComponentAssociated programDescriptionatkaccessibility/atkAccessibility toolkit (ATK)atkmmaccessibility/atkmmc++ bindings for atkcairographics/cairoVector graphics library with cross-device output
supportcairommgraphics/cairommc++ bindings for cairodconfdevel/dconfConfiguration database system
(both, build, run)evolutiondataserver3databases/evolution-data-serverData backends for the Evolution integrated
mail/PIM suitegdkpixbuf2graphics/gdk-pixbuf2Graphics library for GTK+glib20devel/glib20GNOME core library
glib20glibmmdevel/glibmmc++ bindings for glib20gnomecontrolcenter3sysutils/gnome-control-centerGNOME 3 Control Centergnomedesktop3x11/gnome-desktopGNOME 3 desktop UI librarygsoundaudio/gsoundGObject library for playing system sounds
(both, build, run)gtk-update-icon-cachegraphics/gtk-update-icon-cacheGtk-update-icon-cache utility from the Gtk+
toolkitgtk20x11-toolkits/gtk20Gtk+ 2 toolkitgtk30x11-toolkits/gtk30Gtk+ 3 toolkitgtkmm20x11-toolkits/gtkmm20c++ bindings 2.0 for the gtk20 toolkitgtkmm24x11-toolkits/gtkmm24c++ bindings 2.4 for the gtk20 toolkitgtkmm30x11-toolkits/gtkmm30c++ bindings 3.0 for the gtk30 toolkitgtksourceview2x11-toolkits/gtksourceview2Widget that adds syntax highlighting to
GtkTextViewgtksourceview3x11-toolkits/gtksourceview3Text widget that adds syntax highlighting to
the GtkTextView widgetgtksourceviewmm3x11-toolkits/gtksourceviewmm3c++ bindings for the gtksourceview3 librarygvfsdevel/gvfsGNOME virtual file systemintltooltextproc/intltoolTool for internationalization (also see
intlhack)introspectiondevel/gobject-introspectionBasic introspection bindings and tools to
generate introspection bindings. Most of the time
:build is enough, :both/:run is only need for
applications that use introspection bindings.
(both, build, run)libgda5databases/libgda5Provides uniform access to different kinds of
data sourceslibgda5-uidatabases/libgda5-uiUI library from the libgda5 librarylibgdamm5databases/libgdamm5c++ bindings for the libgda5 librarylibgsfdevel/libgsfExtensible I/O abstraction for dealing with
structured file formatslibrsvg2graphics/librsvg2Library for parsing and rendering SVG
vector-graphic fileslibsigc++20devel/libsigc++20Callback Framework for C++libxml++26textproc/libxml++26c++ bindings for the libxml2 librarylibxml2textproc/libxml2XML parser library (both, build, run)libxslttextproc/libxsltXSLT C library (both, build, run)metacityx11-wm/metacityWindow manager from GNOMEnautilus3x11-fm/nautilusGNOME file managerpangox11-toolkits/pangoOpen-source framework for the layout and
rendering of i18n textpangommx11-toolkits/pangommc++ bindings for the pango librarypy3gobject3devel/py3-gobject3Python 3, GObject 3.0 bindingspygobject3devel/py-gobject3Python 2, GObject 3.0 bindingsvte3x11-toolkits/vte3Terminal widget with improved accessibility and
I18N support
GNOME Macro ComponentsComponentDescriptiongnomeprefixSupply configure with
some default locations.intlhackSame as intltool, but patches to make sure
share/locale/ is used. Please
only use when intltool alone is
not enough.referencehackThis macro is there to help splitting of the API or
reference documentation into its own port.
GNOME Legacy ComponentsComponentAssociated programDescriptionatspiaccessibility/at-spiAssistive Technology Service Provider
Interfaceesoundaudio/esoundEnlightenment sound packagegal2x11-toolkits/gal2Collection of widgets taken from GNOME 2
gnumericgconf2devel/gconf2Configuration database system for GNOME 2gconfmm26devel/gconfmm26c++ bindings for gconf2gdkpixbufgraphics/gdk-pixbufGraphics library for GTK+glib12devel/glib12glib 1.2 core librarygnomedocutilstextproc/gnome-doc-utilsGNOME doc utilsgnomemimedatamisc/gnome-mime-dataMIME and Application database for GNOME 2gnomesharp20x11-toolkits/gnome-sharp20GNOME 2 interfaces for the .NET runtimegnomespeechaccessibility/gnome-speechGNOME 2 text-to-speech APIgnomevfs2devel/gnome-vfsGNOME 2 Virtual File Systemgtk12x11-toolkits/gtk12Gtk+ 1.2 toolkitgtkhtml3www/gtkhtml3Lightweight HTML rendering/printing/editing
enginegtkhtml4www/gtkhtml4Lightweight HTML rendering/printing/editing
enginegtksharp20x11-toolkits/gtk-sharp20GTK+ and GNOME 2 interfaces for the .NET
runtimegtksourceviewx11-toolkits/gtksourceviewWidget that adds syntax highlighting to
GtkTextViewlibartgpl2graphics/libart_lgplLibrary for high-performance 2D graphicslibbonobodevel/libbonoboComponent and compound document system for
GNOME 2libbonobouix11-toolkits/libbonobouiGUI frontend to the libbonobo component of
GNOME 2libgda4databases/libgda4Provides uniform access to different kinds of
data sourceslibglade2devel/libglade2GNOME 2 glade librarylibgnomex11/libgnomeLibraries for GNOME 2, a GNU desktop
environmentlibgnomecanvasgraphics/libgnomecanvasGraphics library for GNOME 2libgnomekbdx11/libgnomekbdGNOME 2 keyboard shared librarylibgnomeprintprint/libgnomeprintGnome 2 print support librarylibgnomeprintuix11-toolkits/libgnomeprintuiGnome 2 print support librarylibgnomeuix11-toolkits/libgnomeuiLibraries for the GNOME 2 GUI, a GNU desktop
environmentlibgtkhtmlwww/libgtkhtmlLightweight HTML rendering/printing/editing
enginelibgtksourceviewmmx11-toolkits/libgtksourceviewmmc++ binding of GtkSourceViewlibidldevel/libIDLLibrary for creating trees of CORBA IDL
filelibsigc++12devel/libsigc++12Callback Framework for C++libwnckx11-toolkits/libwnckLibrary used for writing pagers and
taskslistslibwnck3x11-toolkits/libwnck3Library used for writing pagers and
taskslistsorbit2devel/ORBit2High-performance CORBA ORB with support for the
C languagepygnome2x11-toolkits/py-gnome2Python bindings for GNOME 2pygobjectdevel/py-gobjectPython 2, GObject 2.0 bindingspygtk2x11-toolkits/py-gtk2Set of Python bindings for GTK+pygtksourceviewx11-toolkits/py-gtksourceviewPython bindings for GtkSourceView 2vtex11-toolkits/vteTerminal widget with improved accessibility and
I18N support
Deprecated Components: Do Not UseComponentDescriptionpangox-compatpangox-compat has been
deprecated and split off from the
pango package.
Using QtPorts That Require QtThe Ports Collection provides support for Qt 4 and Qt 5
frameworks with
USE_QTx,
where x is
4 or 5.
Set USE_QTx
to the list of required Qt components (libraries,
tools, plugins). The Qt 4 and Qt 5 frameworks are quite
similar. The main difference is the set of supported
components.The Qt framework exports a number of variables which can
be used by ports, some of them listed below:
Variables Provided to Ports That Use QtQT_PREFIXSet to the path where Qt was installed
(${LOCALBASE}).QMAKEFull path to qmake
binary.LRELEASEFull path to lrelease
utility.MOCFull path to moc.RCCFull path to rcc.UICFull path to uic.QT_INCDIRQt include directory.QT_LIBDIRQt libraries path.QT_PLUGINDIRQt plugins path.
When using the Qt framework, these
settings are deployed:CONFIGURE_ARGS+= --with-qt-includes=${QT_INCDIR} \
--with-qt-libraries=${QT_LIBDIR} \
--with-extra-libs=${LOCALBASE}/lib \
--with-extra-includes=${LOCALBASE}/include
CONFIGURE_ENV+= QTDIR="${QT_PREFIX}" QMAKE="${QMAKE}" \
MOC="${MOC}" RCC="${RCC}" UIC="${UIC}" \
QMAKESPEC="${QMAKESPEC}"
PLIST_SUB+= QT_INCDIR=${QT_INCDIR_REL} \
QT_LIBDIR=${QT_LIBDIR_REL} \
QT_PLUGINDIR=${QT_PLUGINDIR_REL}Some configure scripts do not support the arguments above.
To suppress modification ofCONFIGURE_ENV
and CONFIGURE_ARGS, set
QT_NONSTANDARD.Component SelectionIndividual Qt tool and library dependencies must be
specified in
USE_QTx.
Every component can be suffixed with
_build or _run, the
suffix indicating whether the dependency on the component is
at buildtime or runtime. If unsuffixed, the component will be
depended on at both build- and runtime. Usually, library
components are specified unsuffixed, tool components
are mostly specified with the _build suffix
and plugin components are specified with the
_run suffix. The most commonly used
components are listed below (all available components are
listed in _USE_QT_ALL,
_USE_QT4_ONLY, and
_USE_QT5_ONLY in
/usr/ports/Mk/bsd.qt.mk):
Available Qt Library ComponentsNameDescriptioncorecore library (Qt 5 only)corelibcore library (Qt 4 only)dbusQt DBus libraryguigraphical user interface librarynetworknetwork libraryopenglQt OpenGL libraryscriptscript librarysqlSQL librarytestlibunit testing librarywebkitQt WebKit libraryxmlQt XML library
To determine the libraries an application
depends on, run ldd on the main
executable after a successful compilation.
Available Qt Tool ComponentsNameDescriptionqmakeMakefile generator/build utilitybuildtoolsbuild tools (moc,
rcc), needed for almost
every Qt application (Qt 5 only)linguisttoolslocalization tools: lrelease,
lupdate (Qt 5 only)linguistlocalization tools: lrelease,
lupdate (Qt 4 only)mocmeta object compiler, needed for almost
every Qt application at buildtime (Qt 4 only)rccresource compiler, needed if the application
comes with *.rc or
*.qrc files (Qt 4 only)uicuser interface compiler, needed if the
application comes with *.ui
files, in practice, every Qt
application with a GUI (Qt 4 only)
Available Qt Plugin ComponentsNameDescriptioniconenginesSVG icon engine plugin, needed if the application
ships SVG icons (Qt 4 only)imageformatsplugins for TGA, TIFF, and MNG
image formats
Selecting Qt 4 ComponentsIn this example, the ported application uses the Qt 4
graphical user interface library, the Qt 4 core library,
all of the Qt 4 code generation tools and Qt 4's Makefile
generator. Since the gui library
implies a dependency on the core library,
corelib does not need to be specified.
The Qt 4 code generation tools moc,
uic and rcc, as well
as the Makefile generator qmake are
only needed at buildtime, thus they are specified with the
_build suffix:USE_QT4= gui moc_build qmake_build rcc_build uic_buildUsing qmakeIf the application provides a
qmake project file
(*.pro), define
USES= qmake along with
USE_QTx. Note
that USES= qmake already implies a build
dependency on qmake, therefore the qmake component can be
omitted from
USE_QTx.
Similar to CMake,
qmake supports out-of-source
builds, which can be enabled by specifying the
outsource argument (see USES= qmake
example).
Variables for Ports That Use
qmakeVariableMeansQMAKE_ARGSPort specific qmake
flags to be passed to the qmake
binary.QMAKE_ENVEnvironment variables to be set for the
qmake binary. The default is
${CONFIGURE_ENV}.QMAKE_SOURCE_PATHPath to qmake project files
(.pro). The default is
${WRKSRC} if an
out-of-source build is requested, empty
otherwise.
USES= qmake ExampleThis snippet demonstrates the use of
qmake for a Qt 4 port:USES= qmake:outsource
USE_QT4= moc_buildFor a Qt 5 port:USES= qmake:outsource
USE_QT5= buildtools_buildQt applications are often written to be cross-platform
and often X11/Unix is not the platform they are developed
on, which in turn leads to certain loose ends,
like:Missing additional include
paths. Many applications come with
system tray icon support, but neglect to look for
includes and/or libraries in the X11 directories. To add
directories to qmake's
include and library search paths via the command
line, use:QMAKE_ARGS+= INCLUDEPATH+=${LOCALBASE}/include \
LIBS+=-L${LOCALBASE}/libBogus installation paths.
Sometimes data such as icons or .desktop files are by
default installed into directories which are not scanned
by XDG-compatible applications.
editors/texmaker is
an example for this - look at
patch-texmaker.pro in the
files directory of that port for a
template on how to remedy this directly in the
qmake project file.Using KDEKDE 4 Variable DefinitionsIf the application depends on KDE 4, set
USES+=kde:4 and
USE_KDE to the list of required
components. _build and
_run suffixes can be used to force
components dependency type (for example,
baseapps_run). If no suffix is set, a
default dependency type will be used. To force both types,
add the component twice with both suffixes (for example,
automoc4_build automoc4_run). The most
commonly used components are listed below (up-to-date
components are documented at the top of
/usr/ports/Mk/bsd.kde4.mk):
Available KDE 4 ComponentsNameDescriptionkdehierHierarchy of common KDE directorieskdelibsKDE core librarieskdeprefixIf set, port will be installed into
${KDE_PREFIX}automoc4Build tool to automatically generate moc
filesakonadiStorage server for KDE PIM datasopranoLibrary for Resource Description Framework
(RDF)strigiStrigi desktop search librarylibkcddbKDE CDDB (compact disc database) librarylibkcompactdiscKDE library for interfacing with audio
CDslibkdeeduLibraries used by educational
applicationslibkdcrawKDE LibRaw librarylibkexiv2KDE Exiv2 librarylibkipiKDE Image Plugin InterfacelibkonqKonqueror core librarylibksaneKDE SANE ("Scanner Access Now Easy")
librarypimlibsPersonal information management librarieskateAdvanced text editor frameworkmarbleVirtual globe and world atlasokularUniversal document viewerkorundumKDE Ruby bindingsperlkdeKDE Perl bindingspykde4KDE Python bindingspykdeuic4PyKDE user interface compilersmokekdeKDE SMOKE libraries
KDE 4 ports are installed into
KDE_PREFIX. This is
achieved by specifying the kdeprefix
component, which overrides the default
PREFIX. The ports, however, respect any
PREFIX set via the MAKEFLAGS
environment variable and/or make
arguments. Currently KDE_PREFIX
is identical to the default PREFIX,
${LOCALBASE}.USE_KDE ExampleThis is a simple example for a KDE 4 port.
USES= cmake:outsource instructs the
port to utilize CMake, a
configuration tool widely used by KDE 4 projects (see
for detailed usage).
USE_KDE brings dependency on KDE
libraries and makes port using
automoc4 at build stage.
Required KDE components and other dependencies can be
determined through configure log.
USE_KDE does not imply
USE_QT4. If a port requires some
Qt 4 components, specify them in
USE_QT4.USES= cmake:outsource kde:4
USE_KDE= kdelibs kdeprefix automoc4
USE_QT4= moc_build qmake_build rcc_build uic_buildUsing LXQtApplications depending on LXQt should set
USES+= lxqt and set
USE_LXQT
to the list of required components from the table below
Available LXQt ComponentsNameDescriptionbuildtoolsHelpers for additional CMake moduleslibfmqtLibfm Qt bindingslxqtLXQt core libraryqtxdgQt implementation of freedesktop.org
XDG specifications
USE_LXQT ExampleThis is a simple example,
USE_LXQT adds a dependency on
LXQt libraries. Required LXQt components and
other dependencies can be determined from the
configure log.USES= cmake:outsource lxqt tar:xz
USE_QT5= buildtools_build qmake_build core dbus widgets
USE_LXQT= buildtools libfmqtUsing JavaVariable DefinitionsIf the port needs a Java™ Development Kit
(JDK™) to either build, run or even
extract the distfile, then define
USE_JAVA.There are several JDKs in the ports
collection, from various vendors, and in several versions. If
the port must use a particular version, specify it using the
JAVA_VERSION variable.
The most current version is
java/openjdk8, with
java/openjdk6 and
java/openjdk7 also
available.
Variables Which May be Set by Ports That Use
JavaVariableMeansUSE_JAVADefine for the remaining variables
to have any effect.JAVA_VERSIONList of space-separated suitable Java versions
for the port. An optional "+"
allows specifying a range of versions (allowed
values:
1.5[+] 1.6[+] 1.7[+]).JAVA_OSList of space-separated suitable
JDK port operating systems for the
port (allowed values:
native linux).JAVA_VENDORList of space-separated suitable
JDK port vendors for the port
(allowed values:
freebsd bsdjava sun
openjdk).JAVA_BUILDWhen set, add the selected JDK
port to the build dependencies.JAVA_RUNWhen set, add the selected JDK
port to the run dependencies.JAVA_EXTRACTWhen set, add the selected JDK
port to the extract dependencies.
Below is the list of all settings a port will receive
after setting USE_JAVA:
Variables Provided to Ports That Use JavaVariableValueJAVA_PORTThe name of the JDK port (for
example, java/openjdk6).JAVA_PORT_VERSIONThe full version of the JDK
port (for example, 1.6.0). Only
the first two digits of this version number are
needed, use
${JAVA_PORT_VERSION:C/^([0-9])\.([0-9])(.*)$/\1.\2/}.JAVA_PORT_OSThe operating system used by the
JDK port (for example,
'native').JAVA_PORT_VENDORThe vendor of the JDK port
(for example, 'openjdk').JAVA_PORT_OS_DESCRIPTIONDescription of the operating system used by the
JDK port (for example,
'Native').JAVA_PORT_VENDOR_DESCRIPTIONDescription of the vendor of the
JDK port (for example,
'OpenJDK BSD Porting
Team').JAVA_HOMEPath to the installation directory of the
JDK (for example,
'/usr/local/openjdk6').JAVACPath to the Java compiler to use (for example,
'/usr/local/openjdk6/bin/javac').JARPath to the jar tool to use
(for example,
'/usr/local/openjdk6/bin/jar'
or
'/usr/local/bin/fastjar').APPLETVIEWERPath to the appletviewer
utility (for example,
'/usr/local/openjdk6/bin/appletviewer').JAVAPath to the java executable.
Use this for executing Java programs (for example,
'/usr/local/openjdk6/bin/java').JAVADOCPath to the javadoc utility
program.JAVAHPath to the javah
program.JAVAPPath to the javap
program.JAVA_KEYTOOLPath to the keytool utility
program.JAVA_N2APath to the native2ascii
tool.JAVA_POLICYTOOLPath to the policytool
program.JAVA_SERIALVERPath to the serialver
utility program.RMICPath to the RMI stub/skeleton generator,
rmic.RMIREGISTRYPath to the RMI registry program,
rmiregistry.RMIDPath to the RMI daemon program
rmid.JAVA_CLASSESPath to the archive that contains the
JDK class files,
${JAVA_HOME}/jre/lib/rt.jar.
Use the java-debug make
target to get information for debugging the port. It will
display the value of many of the previously listed
variables.Additionally, these constants are defined so all
Java ports may be installed in a consistent way:
Constants Defined for Ports That Use JavaConstantValueJAVASHAREDIRThe base directory for everything related to
Java. Default:
${PREFIX}/share/java.JAVAJARDIRThe directory where JAR files is
installed. Default:
${JAVASHAREDIR}/classes.JAVALIBDIRThe directory where JAR files installed by
other ports are located. Default:
${LOCALBASE}/share/java/classes.
The related entries are defined in both
PLIST_SUB (documented in
) and
SUB_LIST.Building with AntWhen the port is to be built using Apache Ant, it has to
define USE_ANT. Ant is thus considered to
be the sub-make command. When no
do-build target is defined by the
port, a default one will be set that runs Ant according to
MAKE_ENV, MAKE_ARGS and
ALL_TARGET. This is similar to the
USES= gmake mechanism, which is documented
in .Best PracticesWhen porting a Java library, the port has to install
the JAR file(s) in ${JAVAJARDIR}, and
everything else under
${JAVASHAREDIR}/${PORTNAME} (except for
the documentation, see below). To reduce the packing file
size, reference the JAR file(s) directly in the
Makefile. Use this statement (where
myport.jar is
the name of the JAR file installed as part of the
port):PLIST_FILES+= ${JAVAJARDIR}/myport.jarWhen porting a Java application, the port usually
installs everything under a single directory (including its
JAR dependencies). The use of
${JAVASHAREDIR}/${PORTNAME} is strongly
encouraged in this regard. It is up the porter to decide
whether the port installs the additional JAR
dependencies under this directory or uses the
already installed ones (from
${JAVAJARDIR}).When porting a &java; application that requires an
application server such as
www/tomcat7 to run the
service, it is quite common for a vendor to distribute a
.war. A .war
is a Web application ARchive and is extracted when
called by the application. Avoid adding a
.war
to pkg-plist.
It is not considered best practice. An application server
will expand war archive, but not
clean it up properly if the port is removed. A more
desirable way of working with this file is to extract the
archive, then install the files, and lastly add these files
to pkg-plist.TOMCATDIR= ${LOCALBASE}/apache-tomcat-7.0
WEBAPPDIR= myapplication
post-extract:
@${MKDIR} ${WRKDIR}/${PORTDIRNAME}
@${TAR} xf ${WRKDIR}/myapplication.war -C ${WRKDIR}/${PORTDIRNAME}
do-install:
cd ${WRKDIR} && \
${INSTALL} -d -o ${WWWOWN} -g ${WWWGRP} ${TOMCATDIR}/webapps/${PORTDIRNAME}
cd ${WRKDIR}/${PORTDIRNAME} && ${COPYTREE_SHARE} \* ${WEBAPPDIR}/${PORTDIRNAME}Regardless of the type of port (library or
application), the additional documentation is installed in the
same location as
for any other port. The Javadoc tool is known to produce a
different set of files depending on the version of the
JDK that is used. For ports that do not
enforce the use of a particular JDK, it is
therefore a complex task to specify the packing list
(pkg-plist). This is one reason why
porters are strongly encouraged to use
PORTDOCS. Moreover, even if the set of
files that will be generated by javadoc can
be predicted, the size of the resulting
pkg-plist advocates for the use of
PORTDOCS.The default value for DATADIR is
${PREFIX}/share/${PORTNAME}. It is a
good idea to override DATADIR to
${JAVASHAREDIR}/${PORTNAME} for Java
ports. Indeed, DATADIR is automatically
added to PLIST_SUB (documented in
) so use
%%DATADIR%% directly in
pkg-plist.As for the choice of building Java ports from source or
directly installing them from a binary distribution, there
is no defined policy at the time of writing. However,
people from the
&os; Java
Project encourage porters to have their ports
built from source whenever it is a trivial task.All the features that have been presented in this
section are implemented in bsd.java.mk.
If the port needs more sophisticated
Java support, please first have a look at the bsd.java.mk
Subversion log as it
usually takes some time to document the latest features.
Then, if the needed support that is lacking would be
beneficial to many other Java ports, feel free to discuss it
on the &a.java;.Although there is a java category for
PRs, it refers to the JDK porting effort
from the &os; Java project. Therefore, submit the Java port
in the ports category as for any other
port, unless the issue is related to either a
JDK implementation or
bsd.java.mk.Similarly, there is a defined policy regarding the
CATEGORIES of a Java port, which is
detailed in .Web Applications, Apache and PHPApache
Variables for Ports That Use ApacheUSE_APACHEThe port requires Apache. Possible values:
yes (gets any version),
22, 24,
22-24, 22+,
etc. The default APACHE version is
22. More details are available
in ports/Mk/bsd.apache.mk and
at wiki.freebsd.org/Apache/.APXSFull path to the apxs
binary. Can be overridden in the port.HTTPDFull path to the httpd
binary. Can be overridden in the port.APACHE_VERSIONThe version of present Apache installation
(read-only variable). This variable is only
available after inclusion of
bsd.port.pre.mk. Possible
values: 22,
24.APACHEMODDIRDirectory for Apache modules. This variable is
automatically expanded in
pkg-plist.APACHEINCLUDEDIRDirectory for Apache headers. This variable is
automatically expanded in
pkg-plist.APACHEETCDIRDirectory for Apache configuration files. This
variable is automatically expanded in
pkg-plist.
Useful Variables for Porting Apache ModulesMODULENAMEName of the module. Default value is
PORTNAME. Example:
mod_helloSHORTMODNAMEShort name of the module. Automatically
derived from MODULENAME, but can
be overridden. Example:
helloAP_FAST_BUILDUse apxs to compile and
install the module.AP_GENPLISTAlso automatically creates a
pkg-plist.AP_INCAdds a directory to a header search path during
compilation.AP_LIBAdds a directory to a library search path
during compilation.AP_EXTRASAdditional flags to pass to
apxs.
Web ApplicationsWeb applications must be installed into
PREFIX/www/appname.
This path is available both in
Makefile and in
pkg-plist as WWWDIR,
and the path relative to PREFIX is
available in Makefile as
WWWDIR_REL.The user and group of web server process are available
as WWWOWN and WWWGRP,
in case the ownership of some files needs to be changed. The
default values of both are www. Use
WWWOWN?= myuser and WWWGRP?=
mygroup if the port needs different values. This
allows the user to override them easily.Use WWWOWN and
WWWGRP sparingly. Remember that every
file the web server can write to is a security risk waiting
to happen.Do not depend on Apache unless the web app explicitly
needs Apache. Respect that users may wish to run a web
application on a web server other than
Apache.PHPPHP web applications declare
their dependency on it with USES=php. See
for more information.PEAR ModulesPorting PEAR modules is a very simple process.Add USES=pear to the port's
Makefile. The framework will install the
relevant files in the right places and automatically generate
the plist at install time.Example Makefile for PEAR ClassPORTNAME= Date
DISTVERSION= 1.4.3
CATEGORIES= devel www pear
MAINTAINER= example@domain.com
COMMENT= PEAR Date and Time Zone Classes
USES= pear
.include <bsd.port.mk>PEAR modules will
automatically be flavorized using PHP
flavors.If a non default PEAR_CHANNEL is
used, the build and run-time dependencies will automatically
be added.PEAR modules do not need to defined
PKGNAMESUFFIX it is automatically filled
in using PEAR_PKGNAMEPREFIX. If a port
needs to add to PKGNAMEPREFIX, it must
also use PEAR_PKGNAMEPREFIX to
differentiate between different flavors.Horde ModulesIn the same way, porting
Horde modules is a simple
process.Add USES=horde to the port's
Makefile. The framework will install
the relevant files in the right places and automatically
generate the plist at install time.The USE_HORDE_BUILD and
USE_HORDE_RUN variables can be used to
add buildtime and runtime dependencies on other
Horde modules. See
Mk/Uses/horde.mk for a complete list of
available modules.Example Makefile for Horde
ModulePORTNAME= Horde_Core
DISTVERSION= 2.14.0
CATEGORIES= devel www pear
MAINTAINER= horde@FreeBSD.org
COMMENT= Horde Core Framework libraries
OPTIONS_DEFINE= KOLAB SOCKETS
KOLAB_DESC= Enable Kolab server support
SOCKETS_DESC= Depend on sockets PHP extension
USES= horde
USE_PHP= session
USE_HORDE_BUILD= Horde_Role
USE_HORDE_RUN= Horde_Role Horde_History Horde_Pack \
Horde_Text_Filter Horde_View
KOLAB_USE= HORDE_RUN=Horde_Kolab_Server,Horde_Kolab_Session
SOCKETS_USE= PHP=sockets
.include <bsd.port.mk>As Horde modules are also
PEAR modules they will also
automatically be flavorized using PHP
flavors.Using PythonThe Ports Collection supports parallel installation of
multiple Python versions. Ports must use a
correct python interpreter, according to
the user-settable PYTHON_VERSION.
Most prominently, this means replacing the path to
python executable in scripts with the value
of PYTHON_CMD.Ports that install files under
PYTHON_SITELIBDIR must use the
pyXY- package name prefix, so their package
name embeds the version of Python they are installed
into.PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Most Useful Variables for Ports That Use PythonUSES=pythonThe port needs Python. The minimal required
version can be specified with values such as
2.7+. Version ranges can also be
specified by separating two version numbers with a dash:
USES=python:3.2-3.3USE_PYTHON=distutilsUse Python distutils for configuring, compiling,
and installing. This is required when the port comes
with setup.py. This overrides
the do-build and
do-install targets and may
also override do-configure
if GNU_CONFIGURE is not
defined. Additionally, it implies
USE_PYTHON=flavors.USE_PYTHON=autoplistCreate the packaging list automatically. This also
requires USE_PYTHON=distutils to be
set.USE_PYTHON=concurrentThe port will use an unique prefix, typically
PYTHON_PKGNAMEPREFIX for certain
directories, such as EXAMPLESDIR and
DOCSDIR and also will append a
suffix, the python version from
PYTHON_VER, to binaries and scripts
to be installed. This allows ports to be installed for
different Python versions at the same time, which
otherwise would install conflicting files.USE_PYTHON=flavorsThe port does not use distutils but still supports
multiple Python versions. FLAVORS
will be set to the supported Python versions. See for more
information.USE_PYTHON=optsuffixIf the current Python version is not the default
version, the port will gain
PKGNAMESUFFIX=${PYTHON_PKGNAMESUFFIX}.
Only useful with flavors.PYTHON_PKGNAMEPREFIXUsed as a PKGNAMEPREFIX to
distinguish packages for different Python versions.
Example: py27-PYTHON_SITELIBDIRLocation of the site-packages tree, that contains
installation path of Python (usually
LOCALBASE).
PYTHON_SITELIBDIR can be
very useful when installing Python modules.PYTHONPREFIX_SITELIBDIRThe PREFIX-clean variant of PYTHON_SITELIBDIR.
Always use %%PYTHON_SITELIBDIR%% in
pkg-plist when possible. The
default value of
%%PYTHON_SITELIBDIR%% is
lib/python%%PYTHON_VERSION%%/site-packagesPYTHON_CMDPython interpreter command line, including
version number.
Python Module Dependency HelpersPYNUMERICDependency line for numeric extension.PYNUMPYDependency line for the new numeric extension,
numpy. (PYNUMERIC is deprecated by upstream
vendor).PYXMLDependency line for XML extension (not needed for
Python 2.0 and higher as it is also in base
distribution).PY_ENUM34Conditionnal dependency on
devel/py-enum34 depending on the
Python version.PY_ENUM_COMPATConditionnal dependency on
devel/py-enum-compat depending on the
Python version.PY_PATHLIBConditionnal dependency on
devel/py-pathlib depending on the
Python version.PY_IPADDRESSConditionnal dependency on
net/py-ipaddress depending on the
Python version.PY_FUTURESConditionnal dependency on
devel/py-futures depending on the
Python version.
A complete list of available variables can be found in
/usr/ports/Mk/Uses/python.mk.All dependencies to Python
ports using Python
flavors (either with
USE_PYTHON=distutils or
USE_PYTHON=flavors) must have the Python
flavor appended to their origin using
@${PY_FLAVOR}. See .Makefile for a Simple Python
ModulePORTNAME= sample
DISTVERSION= 1.2.3
CATEGORIES= devel
MAINTAINER= john@doe.tld
COMMENT= Python sample module
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>Some Python applications claim to have
DESTDIR support (which would be required
for staging) but it is broken (Mailman up to 2.1.16, for
instance). This can be worked around by recompiling the
scripts. This can be done, for example, in the
post-build target. Assuming the
Python scripts are supposed to reside in
PYTHONPREFIX_SITELIBDIR after installation,
this solution can be applied:(cd ${STAGEDIR}${PREFIX} \
&& ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \
-d ${PREFIX} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;})This recompiles the sources with a path relative to the
stage directory, and prepends the value of
PREFIX to the file name recorded in the
byte-compiled output file by -d.
-f is required to force recompilation, and
the :S;${PREFIX}/;; strips prefixes from
the value of PYTHONPREFIX_SITELIBDIR
to make it relative to
PREFIX.Using Tcl/TkThe Ports Collection supports parallel installation of
multiple Tcl/Tk versions. Ports
should try to support at least the default
Tcl/Tk version and higher with
USES=tcl. It is possible to specify the
desired version of tcl by appending
:xx, for example,
USES=tcl:85.
The Most Useful Read-Only Variables for Ports That Use
Tcl/TkTCL_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
files
See the USES=tcl and
USES=tk of
for a full description of those
variables. A complete list of those variables is available in
/usr/ports/Mk/Uses/tcl.mk.Using Ruby
Useful Variables for Ports That Use RubyVariableDescriptionUSE_RUBYAdds build and run dependencies on Ruby.USE_RUBY_EXTCONFThe port uses extconf.rb to
configure.USE_RUBY_SETUPThe port uses setup.rb to
configure.RUBY_SETUPOverride the name of the setup script from
setup.rb. Another common value is
install.rb.
This table shows the selected variables available
to port authors via the ports infrastructure. These variables
are used to install files into their proper locations.
Use them in pkg-plist as much as
possible. Do not redefine these variables in the port.
Selected Read-Only Variables for Ports That Use
RubyVariableDescriptionExample valueRUBY_PKGNAMEPREFIXUsed as a PKGNAMEPREFIX to
distinguish packages for different Ruby
versions.ruby19-RUBY_VERSIONFull version of Ruby in the form of
x.y.z[.p].1.9.3.484RUBY_SITELIBDIRArchitecture independent libraries installation
path./usr/local/lib/ruby/site_ruby/1.9RUBY_SITEARCHLIBDIRArchitecture dependent libraries installation
path./usr/local/lib/ruby/site_ruby/1.9/amd64-freebsd10RUBY_MODDOCDIRModule documentation installation path./usr/local/share/doc/ruby19/patsyRUBY_MODEXAMPLESDIRModule examples installation path./usr/local/share/examples/ruby19/patsy
A complete list of available variables can be found in
/usr/ports/Mk/bsd.ruby.mk.Using SDLUSE_SDL is used to
autoconfigure the dependencies for ports which use an SDL
based library like devel/sdl12
and graphics/sdl_image.These SDL libraries for version 1.2 are recognized:sdl: devel/sdl12console: devel/sdl_consolegfx: graphics/sdl_gfximage: graphics/sdl_imagemixer: audio/sdl_mixermm: devel/sdlmmnet: net/sdl_netpango: x11-toolkits/sdl_pangosound: audio/sdl_soundttf: graphics/sdl_ttfThese SDL libraries for version 2.0 are recognized:sdl: devel/sdl20gfx: graphics/sdl2_gfximage: graphics/sdl2_imagemixer: audio/sdl2_mixernet: net/sdl2_netttf: graphics/sdl2_ttfTherefore, if a port has a dependency on
net/sdl_net and
audio/sdl_mixer,
the syntax will be:USE_SDL= net mixerThe dependency
devel/sdl12, which is
required by net/sdl_net
and audio/sdl_mixer, is
automatically added as well.Using USE_SDL with entries for
SDL 1.2, it will automatically:Add a dependency on
sdl12-config to
BUILD_DEPENDSAdd the variable SDL_CONFIG to
CONFIGURE_ENVAdd the dependencies of the selected libraries to
LIB_DEPENDSUsing USE_SDL with entries for
SDL 2.0, it will automatically:Add a dependency on
sdl2-config to
BUILD_DEPENDSAdd the variable SDL2_CONFIG to
CONFIGURE_ENVAdd the dependencies of the selected libraries to
LIB_DEPENDSUsing wxWidgetsThis section describes the status of the
wxWidgets libraries in the ports
tree and its integration with the ports system.IntroductionThere are many versions of the
wxWidgets libraries which
conflict between them (install files under the same name).
In the ports tree this problem has been solved by installing
each version under a different name using version number
suffixes.The obvious disadvantage of this is that each
application has to be modified to find the expected version.
Fortunately, most of the applications call the
wx-config script to determine the
necessary compiler and linker flags. The script is named
differently for every available version. Majority of
applications respect an environment variable, or accept a
configure argument, to specify which
wx-config script to call. Otherwise they
have to be patched.Version SelectionTo make the port use a specific version of
wxWidgets there are two variables
available for defining (if only one is defined the other
will be set to a default value):
Variables to Select
wxWidgets VersionsVariableDescriptionDefault valueUSE_WXList of versions the port can useAll available versionsUSE_WX_NOTList of versions the port cannot useNone
The available
wxWidgets versions and the
corresponding ports in the tree are:
Available wxWidgets
VersionsVersionPort2.8x11-toolkits/wxgtk283.0x11-toolkits/wxgtk30
The variables in can
be set to one or more of these combinations
separated by spaces:
wxWidgets Version
SpecificationsDescriptionExampleSingle version2.8Ascending range2.8+Descending range3.0-Full range (must be ascending)2.8-3.0
There are also some variables to select the preferred
versions from the available ones. They can be set to a list
of versions, the first ones will have higher
priority.
Variables to Select Preferred
wxWidgets VersionsNameDesigned forWANT_WX_VERthe portWITH_WX_VERthe user
Component SelectionThere are other applications that, while not being
wxWidgets libraries, are related
to them. These applications can be specified in
WX_COMPS. These
components are available:
Available wxWidgets
ComponentsNameDescriptionVersion restrictionwxmain librarynonecontribcontributed librariesnonepythonwxPython
(Python bindings)2.8-3.0
The dependency type can be selected for each component
by adding a suffix separated by a semicolon. If not present
then a default type will be used (see
). These types
are available:
Available wxWidgets
Dependency TypesNameDescriptionbuildComponent is required for building, equivalent
to BUILD_DEPENDSrunComponent is required for running, equivalent
to RUN_DEPENDSlibComponent is required for building and running,
equivalent to LIB_DEPENDS
The default values for the components are detailed in
this table:
Selecting wxWidgets
ComponentsThis fragment corresponds to a port which
uses wxWidgets version
2.4 and its contributed
libraries.USE_WX= 2.8
WX_COMPS= wx contribDetecting Installed VersionsTo detect an installed version, define
WANT_WX. If it is not set to a
specific version then the components will have a version
suffix. HAVE_WX will be
filled after detection.Detecting Installed
wxWidgets Versions and
ComponentsThis fragment can be used in a port that uses
wxWidgets if it is installed,
or an option is selected.WANT_WX= yes
.include <bsd.port.pre.mk>
.if defined(WITH_WX) || !empty(PORT_OPTIONS:MWX) || !empty(HAVE_WX:Mwx-2.8)
USE_WX= 2.8
CONFIGURE_ARGS+= --enable-wx
.endifThis fragment can be used in a port that
enables wxPython support if it
is installed or if an option is selected, in addition to
wxWidgets, both version
2.8.USE_WX= 2.8
WX_COMPS= wx
WANT_WX= 2.8
.include <bsd.port.pre.mk>
.if defined(WITH_WXPYTHON) || !empty(PORT_OPTIONS:MWXPYTHON) || !empty(HAVE_WX:Mpython)
WX_COMPS+= python
CONFIGURE_ARGS+= --enable-wxpython
.endifDefined VariablesThese variables are available in the port (after
defining one from
).
Variables Defined for Ports That Use
wxWidgetsNameDescriptionWX_CONFIGThe path to the
wxWidgetswx-config script (with different
name)WXRC_CMDThe path to the
wxWidgetswxrc program (with different
name)WX_VERSIONThe wxWidgets
version that is going to be used (for example,
2.6)
Processing in
bsd.port.pre.mkDefine WX_PREMK to be able to use the
variables right after including
bsd.port.pre.mk.When defining WX_PREMK, then the
version, dependencies, components and defined variables
will not change if modifying the
wxWidgets port variables
after including
bsd.port.pre.mk.Using wxWidgets Variables
in CommandsThis fragment illustrates the use of
WX_PREMK by running the
wx-config script to obtain the full
version string, assign it to a variable and pass it to the
program.USE_WX= 2.8
WX_PREMK= yes
.include <bsd.port.pre.mk>
.if exists(${WX_CONFIG})
VER_STR!= ${WX_CONFIG} --release
PLIST_SUB+= VERSION="${VER_STR}"
.endifThe wxWidgets variables can
be safely used in commands when they are inside targets
without the need of WX_PREMK.Additional configure
ArgumentsSome GNU configure scripts cannot
find wxWidgets with just the
WX_CONFIG environment variable set,
requiring additional arguments.
WX_CONF_ARGS can be used for
provide them.
Legal Values for
WX_CONF_ARGSPossible valueResulting argumentabsolute--with-wx-config=${WX_CONFIG}relative--with-wx=${LOCALBASE}
--with-wx-config=${WX_CONFIG:T}
Using LuaThis section describes the status of the
Lua libraries in the ports tree and
its integration with the ports system.IntroductionThere are many versions of the
Lua libraries and corresponding
interpreters, which conflict between them (install files
under the same name). In the ports tree this problem has
been solved by installing each version under a different
name using version number suffixes.The obvious disadvantage of this is that each
application has to be modified to find the expected version.
But it can be solved by adding some additional flags to the
compiler and linker.Version SelectionA port using Lua only needs to
have this line:USES= luaIf a specific version of Lua is needed, instructions on
how to select it are given in the USES=lua part
of .Defined VariablesThese variables are available in the port.
Variables Defined for Ports That Use
LuaNameDescriptionLUA_VERThe Lua version that
is going to be used (for example,
5.1)LUA_VER_STRThe Lua version
without the dots (for example,
51)LUA_PREFIXThe prefix where Lua
(and components) is installedLUA_SUBDIRThe directory under
${PREFIX}/bin,
${PREFIX}/share and
${PREFIX}/lib where
Lua is installedLUA_INCDIRThe directory where
Lua and
tolua header files are
installedLUA_LIBDIRThe directory where
Lua and
tolua libraries are
installedLUA_MODLIBDIRThe directory where
Lua module libraries
(.so) are installedLUA_MODSHAREDIRThe directory where
Lua modules
(.lua) are installedLUA_PKGNAMEPREFIXThe package name prefix used by
Lua modulesLUA_CMDThe path to the Lua
interpreterLUAC_CMDThe path to the Lua
compiler
Using iconvAfter 2013-10-08 (254273),
&os; 10-CURRENT and newer versions have a native
iconv in the operating system. On earlier
versions, converters/libiconv
was used as a dependency.For software that needs iconv, define
USES=iconv. &os; versions before
10-CURRENT on 2013-08-13 (254273) do
not have a native iconv. On these earlier
versions, a dependency on
converters/libiconv will be
added automatically.When a port defines USES=iconv, these
variables will be available:Variable namePurposeValue before &os; 10-CURRENT
254273 (2013-08-13)Value after &os; 10-CURRENT
254273 (2013-08-13)ICONV_CMDDirectory where the iconv
binary resides${LOCALBASE}/bin/iconv/usr/bin/iconvICONV_LIBld argument to link to
libiconv (if needed)-liconv(empty)ICONV_PREFIXDirectory where the iconv
implementation resides (useful for configure
scripts)${LOCALBASE}/usrICONV_CONFIGURE_ARGPreconstructed configure argument for
configure scripts--with-libiconv-prefix=${LOCALBASE}(empty)ICONV_CONFIGURE_BASEPreconstructed configure argument for
configure scripts--with-libiconv=${LOCALBASE}(empty)These two examples automatically populate the variables
with the correct value for systems using
converters/libiconv or the
native iconv respectively:Simple iconv UsageUSES= iconv
LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB}iconv Usage with
configureUSES= iconv
CONFIGURE_ARGS+=${ICONV_CONFIGURE_ARG}As shown above, ICONV_LIB is empty when
a native iconv is present. This can be
used to detect the native iconv and respond
appropriately.Sometimes a program has an ld argument
or search path hardcoded in a Makefile or
configure script. This approach can be used to solve that
problem:Fixing Hardcoded -liconvUSES= iconv
post-patch:
@${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/MakefileIn some cases it is necessary to set alternate values or
perform operations depending on whether there is a native
iconv.
bsd.port.pre.mk must be included before
testing the value of ICONV_LIB:Checking for Native iconv
AvailabilityUSES= iconv
.include <bsd.port.pre.mk>
post-patch:
.if empty(ICONV_LIB)
# native iconv detected
@${REINPLACE_CMD} -e 's|iconv||' ${WRKSRC}/Config.sh
.endif
.include <bsd.port.post.mk>Using XfcePorts that need Xfce libraries or
applications set USES=xfce.Specific Xfce library and
application dependencies are set with values assigned to
USE_XFCE. They are defined in
/usr/ports/Mk/Uses/xfce.mk. The possible
values are:Values of USE_XFCEgarconsysutils/garconlibexox11/libexolibguix11-toolkits/libxfce4guilibmenux11/libxfce4menulibutilx11/libxfce4utilpanelx11-wm/xfce4-panelthunarx11-fm/thunarxfconfx11/xfce4-confUSES=xfce ExampleUSES= xfce
USE_XFCE= libmenuUsing Xfce's Own GTK3 WidgetsIn this example, the ported application uses the
GTK3-specific widgets x11/libxfce4menu and x11/xfce4-conf.USES= xfce:gtk3
USE_XFCE= libmenu xfconfXfce components included this
way will automatically include any dependencies they need. It
is no longer necessary to specify the entire list. If the
port only needs x11-wm/xfce4-panel, use:USES= xfce
USE_XFCE= panelThere is no need to list the components x11-wm/xfce4-panel needs itself like
this:USES= xfce
USE_XFCE= libexo libmenu libutil panelHowever, Xfce components and
non-Xfce dependencies of the port
must be included explicitly. Do not count on an
Xfce component to provide a
sub-dependency other than itself for the main port.Using DatabasesUse one of the USES macros from
to add a dependency
on a database.
Using Berkeley DB 6USES= bdb:6See for more
information.Using MySQLWhen a port needs the MySQL
client library addUSES= mysqlSee for more
information.Using PostgreSQLWhen a port needs the
PostgreSQL server version 9.6
or later addUSES= pgsql:9.6+
WANT_PGSQL= serverSee for more
information.Using SQLite 3USES= sqlite:3See for more
information.Starting and Stopping Services (rc
Scripts)rc.d scripts are used to start
services on system startup, and to give administrators a
standard way of stopping, starting and restarting the service.
Ports integrate into the system rc.d
framework. Details on its usage can be found in the
rc.d Handbook chapter. Detailed explanation of
the available commands is provided in &man.rc.8; and
&man.rc.subr.8;. Finally, there is
an
article on practical aspects of
rc.d scripting.With a mythical port called
doorman, which needs to start a
doormand daemon. Add the following
to the Makefile:USE_RC_SUBR= doormandMultiple scripts may be listed and will be installed.
Scripts must be placed in the files
subdirectory and a .in suffix must be added
to their filename. Standard SUB_LIST
expansions will be ran against this file. Use of the
%%PREFIX%% and
%%LOCALBASE%% expansions is strongly
encouraged as well. More on SUB_LIST in
the relevant
section.As of &os; 6.1-RELEASE, local
rc.d scripts (including those installed
by ports) are included in the overall &man.rcorder.8; of the
base system.An example simple rc.d script to start
the doormand daemon:#!/bin/sh
# $FreeBSD$
#
# PROVIDE: doormand
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# doormand_enable (bool): Set to NO by default.
# Set it to YES to enable doormand.
# doormand_config (path): Set to %%PREFIX%%/etc/doormand/doormand.cf
# by default.
. /etc/rc.subr
name=doormand
rcvar=doormand_enable
load_rc_config $name
: ${doormand_enable:="NO"}
: ${doormand_config="%%PREFIX%%/etc/doormand/doormand.cf"}
command=%%PREFIX%%/sbin/${name}
pidfile=/var/run/${name}.pid
command_args="-p $pidfile -f $doormand_config"
run_rc_command "$1"Unless there is a very good reason to start the service
earlier, or it runs as a particular user (other than root), all
ports scripts must use:REQUIRE: LOGINIf the startup script launches a daemon that must be
shutdown, the following will trigger a stop of the service on
system shutdown:KEYWORD: shutdownIf the script is not starting a persistent service this is
not necessary.For optional configuration elements the "="
style of default variable assignment is preferable to the
":=" style here, since the former sets a default
value only if the variable is unset, and the latter sets one
if the variable is unset or null. A user
might very well include something like:doormand_flags=""in their rc.conf.local, and a
variable substitution using ":=" would
inappropriately override the user's intention. The
_enable variable is not optional,
and must use the ":" for the default.
+
+ Ports must not start and stop
+ themselves when installing and deinstalling. Do not abuse the
+ plist keywords described in to run commands
+ starting services, stopping services, or any other commands
+ that will modify the currenly running system.
+
+
Pre-Commit ChecklistBefore contributing a port with an
rc.d script, and more importantly,
before committing one, please consult this
checklist to be sure that it is ready.The devel/rclint
port can check for most of these, but it is not a
substitute for proper review.If this is a new file, does it have a
.sh extension? If so, that must be
changed to just
file.in
since rc.d files may not end with
that extension.Does the file have a
$FreeBSD$ tag?Do the name of the file (minus
.in), the
PROVIDE line, and
$name
all match? The file name matching
PROVIDE makes debugging easier,
especially for &man.rcorder.8; issues. Matching the
file name and
$name
makes it easier to figure out which variables are
relevant in rc.conf[.local]. It is
also a policy
for all new scripts, including those in the base
system.Is the REQUIRE line set to
LOGIN? This is mandatory for scripts
that run as a non-root user. If it runs as root, is
there a good reason for it to run prior to
LOGIN? If not, it must run after
so that local scrips can be loosely grouped to a point in
&man.rcorder.8; after most everything in the base is
already running.Does the script start a persistent service? If so,
it must have KEYWORD:
shutdown.Make sure there is no
KEYWORD: &os; present. This has
not been necessary nor desirable for years. It is also
an indication that the new script was copy/pasted from
an old script, so extra caution must be given to the
review.If the script uses an interpreted language like
perl, python, or
ruby, make certain that
command_interpreter is set
appropriately, for example, for
Perl, by adding
PERL=${PERL} to
SUB_LIST and using
%%PERL%%. Otherwise,&prompt.root; service name stopwill probably not work properly. See
&man.service.8; for more information.Have all occurrences of
/usr/local been replaced with
%%PREFIX%%?Do the default variable assignments come after
load_rc_config?Are there default assignments to empty strings?
They should be removed, but double-check that the option
is documented in the comments at the top of the
file.Are things that are set in variables actually used
in the script?Are options listed in the default
name_flags
things that are actually mandatory? If so, they must
be in command_args.
is a red flag (pardon the
pun) here, since it is usually the option to
“daemonize” the process, and therefore is
actually mandatory.name_flags
must never be included in
command_args (and vice versa,
although that error is less common).Does the script execute any code unconditionally?
This is frowned on. Usually these things must be
dealt with through a
start_precmd.All boolean tests must use the
checkyesno function. No
hand-rolled tests for [Yy][Ee][Ss],
etc.If there is a loop (for example, waiting for
something to start) does it have a counter to terminate
the loop? We do not want the boot to be stuck forever
if there is an error.Does the script create files or directories that
need specific permissions, for example, a
pid that needs to be owned by
the user that runs the process? Rather than the
traditional &man.touch.1;/&man.chown.8;/&man.chmod.1;
routine, consider using &man.install.1; with the proper
command line arguments to do the whole procedure with
one step.Adding Users and GroupsSome ports require a particular user account to be present,
usually for daemons that run as that user. For these ports,
choose a unique UID from 50 to 999 and
register it in ports/UIDs (for users) and
ports/GIDs (for groups). The unique
identification should be the same for users and groups.Please include a patch against these two files when
requiring a new user or group to be created for the
port.Then use USERS and
GROUPS in
Makefile, and the user will be
automatically created when installing the port.USERS= pulse
GROUPS= pulse pulse-access pulse-rtThe current list of reserved UIDs and GIDs can be found
in ports/UIDs and
ports/GIDs.Ports That Rely on Kernel SourcesSome ports (such as kernel loadable modules) need the
kernel source files so that the port can compile. Here is the
correct way to determine if the user has them
installed:USES= kmodApart from this check, the kmod feature
takes care of most items that these ports need to take into
account.Go LibrariesPorts must not package or install Go libs or source code.
Only lang/go* should install into
GO_SRCDIR and GO_LIBDIR.
Go ports must fetch the required deps at the normal fetch time
and should only install the programs and things users need, not
the things Go developers would need.Ports should (in order of preference):Use vendored dependencies included with the package
source.Fetch the versions of deps specified by upstream (in the
case of vendor.json or similar).As a last resort (deps are not included nor versions
specified exactly) fetch versions of dependencies available
at the time of upstream development/release.Shell Completion FilesMany modern shells (including bash, tcsh, and zsh) support
parameter and/or option tab-completion. This support usually
comes from completion files, which contain the definitions for
how tab completion will work for a certain command. Ports
sometimes ship with their own completion files, or porters may
have created them themselves.When available, completion files should always be
installed. It is not necessary to make an option for it.
If an option is used, though, always enable it in
OPTIONS_DEFAULT.