Gentoo Logo
Gentoo Logo Side

[ << ] [ < ] [ Home ] [ > ] [ >> ]


1. Ebuild HOWTO

Content:

1.a. The Portage tree

Introduction

The Portage tree is typically found at /usr/portage and is organized in a hierarchical structure consisting of category directories, followed by specific package directories. Here's an example; you can find the util-linux-2.11y.ebuild file in the /usr/portage/sys-apps/util-linux directory. There may be several other versions of util-linux ebuilds alongside util-linux-2.11y.ebuild. This is because all ebuilds for a particular package (regardless of version), share the same mycat/mypkg directory in /usr/portage.

Checking Out the Portage Tree from CVS

If you are unfamiliar with the CVS system, please read the CVS Tutorial for more information.

The Portage tree can be found in the gentoo-x86 module of the Gentoo Linux tree. To check out the module (about 350 megabytes) you would first set up CVS via the above guide, then check out the gentoo-x86 module.

What (not) to put in the Portage tree

Before writing any ebuild, check bugs.gentoo.org for an ebuild corresponding to the ebuild you want to write, but that has not yet been put into the Portage tree. Go to bugs.gentoo.org, choose query; as product select Gentoo Linux, as component select ebuilds. In the search field put the name of the ebuild and as status select NEW, ASSIGNED, REOPENED and RESOLVED (RESOLVED is important), then submit the query. For you lazy people, click here.

In general, the Portage tree should only be used for storing .ebuild files, as well as any relatively small companion files, such as patches or sample configuration files. These types of files should be placed in the /usr/portage/mycat/mypkg/files directory to keep the main mycat/mypkg directory uncluttered. Exceptions to this rule are for larger patch files which should be put onto the Gentoo mirrors so that people do not waste excessive amounts of bandwidth and hard drive space. Also, in general, it's not a good idea for developers to add binary (non-ASCII) files to CVS. However, if this is necessary (for example, if you need to add a small PNG graphic for whatever reason, be sure to add it to CVS by using the -kb option, like so:

Code Listing 1: Adding binary files to CVS

# cvs add -kb myphoto.png

The -kb option tells CVS that myphoto.png is a binary file and should be treated specially. For example, merging the differences between two different versions of this file should not be allowed to happen, for obvious reasons. Also, speaking of merging changes, any patches you add to Portage should generally not be compressed. This will allow CVS to merge changes and correctly inform developers of conflicts.

Remember, the packages that you commit must be ready out of the box for end users when committed as stable. Make sure that you have a good set of default settings that will satisfy the majority of systems and users that will use your package. If your package is broken, and you are not sure how to get it to work, check some other distributions that have done their own versions of the package. You can check Mandrake or Debian for some examples.

Double-check the ebuild and cross it with the Common Gentoo ebuild Mistakes section.

When committing to CVS, all developers should use repoman commit instead of cvs commit to submit their ebuilds. Before committing, please run repoman full to make sure you didn't forget something.

CVS Commit Policy

  • Always run repoman scan before you commit.
  • Please run repoman full before you commit.
  • Always test that package.mask is okay by doing emerge --pretend mypkg before you commit and check that it doesn't contain any conflicts.
  • Always update the ChangeLog before you commit.
  • Always commit the updated package.mask before the updated package, in case conflicts occur while you commit package.mask.
  • Always do atomic commits; if you commit a package with a new license, or that is masked, then first commit the revised package.mask, then commit the ebuild, ChangeLog and license all in _one_ go, unless you want to break the users' installations.

The files Directory

As noted earlier, under each package subdirectory is a files/ directory. Any patches, configuration files, or other ancillary files your package might require should be added to this directory. You may want to consider naming patches you create yourself just to get your package to build with a version-specific name, such as mypkg-1.0-gentoo.diff, or more simply, 1.0-gentoo.diff. Also note that the gentoo extension informs people that this patch was created by us, the Gentoo Linux developers, rather than having been grabbed from a mailing list or somewhere else. Again, you should not compress these diffs because CVS does not play well with binary files.

Consider prefixing or suffixing (such as mypkg-1.0) every file you put into the files/ directory, so that the files used for each individual version on an ebuild are distinguishable from one another, and so that the changes between different revisions are visible. This is generally a really good idea :). You may want to use a different suffix if you wish to convey more meaning with the patch name.

If you have many files that should go into the files/ directory, consider creating subdirectories such as files/1.0/ and putting the relevant files in the appropriate subdirectory. If you use this method, you do not need to add version information to the names of the files, which is often more convenient.

1.b. Ebuild scripts

Introduction

Ebuild scripts are the basis for the entire portage system. They contain all the information required to download, unpack, compile and install a set of sources, as well as how to perform any optional pre/post install/removal or configuration steps. While most of Portage is written in Python, the ebuild scripts themselves are written in bash, since using bash allows us to call commands as we would from the command-line. One of the important design principles behind ebuild scripts is to have the commands therein be analogs of those one would type on the command-line if installing the package manually. For this purpose, using bash syntax is a very good thing.

Ebuild scripts are interpreted by the ebuild and emerge commands. Think of the ebuild command as a low-level building tool. It can build and install a single ebuild, but no more. It will check to see if dependencies are satisfied, but it will not attempt to auto-resolve them. On the other hand emerge is a high level engine for ebuild, and has the ability to auto-merge dependencies if needed, perform pretend merges so that user can see what ebuilds would be merged, and more. Generally, emerge blows ebuild out of the water except in one area. With ebuild, you can incrementally step through the various parts of a package emerge (fetching, unpacking, compiling, installing and merging) one at a time. For developers, this is an invaluable debugging tool, because it allows you to isolate ebuild problems to a specific portion of the ebuild.

Naming ebuild files

Ebuild file names consist of four logical sections:

The first section is the package name, which should only contain lowercase letters, the digits 0-9, and any number of single hyphen ('-'), underscore ('_') or plus ('+') characters. Some examples are util-linux, sysklogd, mod_php, and gtk+.

The second section is the version of the package, which should normally be same as the version on the main source tarball. The version is normally made up of two or three numbers separated by periods, such as 1.2 or 4.5.2 (although very long period-separated number sequences are supported), and may have a single letter immediately following the last digit; e.g., 1.4b or 2.6h. The package version is joined to the package name with a hyphen; for example: foo-1.0, bar-2.4.6, etc.

Important: If you're thinking of using a trailing letter in your version string, note that the trailing letter should not be used to signify alpha or beta status for the package, since alphas and betas are prereleases and letter revisions are newer versions. This is an important distinction because Portage uses an ebuild's version number to determine if it is newer or older than other packages with the same category and name. It's very important that version numbers faithfully represent the version of the package so that Portage properly performs its dependency checking duties.

The third (optional) section contains a special suffix; either _alpha, _beta, _pre (pre-release), _rc (release candidate), or _p (patch). Any of these suffixes may be immediately followed my a number; e.g., linux-2.4.0_pre10; Assuming identical version parts, an _alpha package is older than _beta, _beta older than _pre, _pre older than _rc, and _rc older than no suffix, no suffix older than any _p. This section is meant to reflect upstream versions only.

Note: An _rc package is older than a package without an underscore suffix (i.e. linux-2.4.0), and linux-2.4.0 is older than a package with a single letter suffix, i.e. linux-2.4.0b. As you would expect, the linux-2.4.0b package is considered older than linux-2.4.0c. Again this version information is important, as Portage uses it internally to determine whether one package or ebuild is newer than another with the same category and name.

The fourth (optional) section of the package name is the Gentoo Linux-specific revision number, which is specified by -r#, where # is an integer, e.g. package-4.5.3-r3. This revision number is independent of the version of the source tarball and is used to inform people that a new and improved Gentoo Linux rev of a particular package is available.

If you make non-trivial improvements to an existing ebuild file, you should copy the ebuild file to a new file with the revision number incremented by 1. Initial releases normally have no revision number, e.g. package-4.5.3, and are considered by Portage to have a a revision number of zero. This means that counting goes as follows: 1.0 (initial version), 1.0-r1, 1.0-r2, etc. Remember to always make mentions of your changes in the ChangeLog. You are in serious trouble if you do not do this, your CVS access may be revoked.

... and I suppose that we actually have a fifth section of the ebuild name -- the .ebuild extension itself.

Contents of an ebuild file

Note: This section is an introduction to ebuilds. For the full listing of everything possible in an ebuild, there is a manpage which talks about the internal format, variables, and functions in an ebuild script: man 5 ebuild.

Variables

The first part of every ebuild file is made up of a number of variables. They fall under 3 categories (and are marked below with these numbers):

  • READ: variables you can utilize but never set
  • MUST: variables you must always set
  • OPT: variables that you should set
Variable Usage Description
P READ The name and version of the package.
PN READ The name of the package.
PV READ The version of the package.
PR READ Contains the revision number or r0 if no revision number exists.
PVR READ Contains the version number with the revision.
PF READ Contains the full package name ${PN}-${PVR}.
A READ Space delimited list of the filenames in SRC_URI. This does not contain the URL paths, just the filename.
DISTDIR READ Contains the path to the distfiles directory where all the files fetched for a package are stored. Typically, this is /usr/portage/distfiles.
FILESDIR READ Contains the path to the files sub folder in the package specific location in the portage tree. Do not modify this variable.
WORKDIR READ Base of the build root for the ebuild. Nothing should be built outside of this directory.
S OPT The source directory for your package; commonly ${WORKDIR}/${P}. Portage will default to this value so you may not have to set it!
T READ The temporary directory for your package. It is used as a virtual /tmp directory while processing the ebuild.
D READ The root directory that the package is installed to, treat it as the virtual /.
SLOT MUST Portage handles different versions of the same installed programs. If you would want, say GCC 2.95 and GCC 3.2 installed at the same time, you would specify the SLOT in each ebuild. Here we would set the SLOT of GCC 2.95 to 2 while we would set the SLOT of GCC 3.2 to 3.
Note: Using 0 as the SLOT value signifies that this package only has 1 SLOT setting (in other words, this package is not SLOTable).
LICENSE MUST This variable specifies what license the program is covered under, i.e. GPL-2, BSD, etc... This field must be set to a valid license (which is any license found in /usr/portage/license/). If the license does not already exist there, it must be added before the ebuild can be added to the portage tree.
KEYWORDS MUST This variable now supports a couple of different functions. First of all, this variable specifies what architecture the ebuild is meant for. These keywords include: x86, ppc, sparc, mips, alpha, arm, hppa, amd64, ia64. Obviously, you would set this to reflect the architecture of the target machine. Portage will not allow an x86 machine to build anything but x86, as specified by the KEYWORDS variable. Packages that do no support the native architecture are automatically masked by Portage. If the KEYWORDS flag has a preceding ~, then that indicates that the particular ebuild works, but needs to be tested in several environments before being moved to the stable profile with the given keyword. If the KEYWORDS flag has a preceding -, then the package does not work with the given keyword. If there is nothing leading KEYWORDS, then the package is considered stable. You can allow installation of these different types of packages through the ACCEPT_KEYWORDS variable in make.conf.
DESCRIPTION MUST A short, one line description of your package.
SRC_URI MUST The URLs for every source file in your package, separated by whitespace. Normally the first one is something like "ftp://ftp.company.com/pub/somepackage/${P}.tar.bz2"
HOMEPAGE MUST The homepage of the package. If you are unable to locate an official one, try to provide a link from freshmeat.net or a similar package tracking site.
IUSE MUST This is set to whatever USE variables your package utilizes. Remember that KEYWORDS should not be listed in here!
DEPEND OPT The package's build dependencies are listed here. See the section Package Dependencies for more details on proper syntax.
RDEPEND OPT The package's runtime dependencies are listed here. Once again, see Package Dependencies for more details.

Functions

There are a number of different functions that you can define in ebuild files that control the building and installation process of your package.

Function Purpose
pkg_setup Use this function to perform any miscellaneous prerequisite tasks. This might include checking for an existing configuration file. If it is necessary to add users here, you must also do this check in pkg_preinst() before the package gets installed.
pkg_nofetch Inform the user about required actions if for some reason (such as licensing issues) the sources may not be downloaded by Portage automatically. Use this in conjunction with RESTRICT="fetch". You only should display messages in this function, never call die.
src_unpack Use this function to unpack your sources, apply patches, and run auxiliary programs such as the autotools. By default, this function unpacks the packages listed in A. The initial working directory is defined by WORKDIR.
src_compile Use this function to configure and build the package. The initial working directory is S.
src_install Use this function install the package to an image in D. If your package uses automake, you can do this simply with make DESTDIR=${D} install. Make sure your package installs all its files using D as the root! The initial working directory is S.
src_test Executed only when FEATURES="maketest" is set and RESTRICT="maketest" is unset, the default of this function executes an available testing function from any Makefiles in the ${S} directory, running either "make test" or "make check" depending on what is provided. It can be overriden to create a custom test setup.
pkg_preinst The commands in this function are run just prior to merging a package image into the file system.
pkg_postinst The commands in this function are run just following merging a package image into the file system.
pkg_prerm The commands in this function are run just prior to unmerging a package image from the file system.
pkg_postrm The commands in this function are run just following unmerging a package image from the file system.
pkg_config You use this function to setup an initial configuration for the package after it's installed. All paths in this function should be prefixed with ROOT. This function is only executed if and when the user runs: ebuild /var/db/pkg/${CATEGORY}/${PF}/${PF}.ebuild config.

Helper Functions

You can also use the following helper functions in your ebuilds.

Function Purpose
use Check if one or more given USE-flags are defined. If so, the function will echo the flags that exist in USE. This behaviour will soon change, with use not creating output, but usev would still create output. To check the existence of a USE-flag, you can use use foobar.
has_version Returns 1 if the system has the requested version of a certain package. For instance has_version >=sys-libs/glibc-2.3.0.
best_version Returns category/package-version of the requested category/package. For instance best_version x11-libs/gtk+extra.
use_with This function checks if a use-flag has been defined and returns "--with-foobar" or "--without-foobar" accordingly. If you only use one argument, that argument is both use-flag and with(out)-string. Otherwise the first argument is the use-flag and the second argument the with(out)-string. For instance use_with truetype freetype will echo "--with-freetype" if truetype is in USE.
use_enable The same as use_with, but returns "--enable-foobar" or "--disable-foobar" accordingly.
check_KV Checks if Portage knows kernel version. If not, display an error and die. If you need the kernel version in your script, use the KV variable which is automatically defined by Portage. On a system running gentoo-sources-2.4.20-r6, KV would have the value "2.4.20".
keepdir Creates (if necessary) a .keep file in the given directory so that it isn't auto-cleaned. Never create a .keep file yourself. If portage changes how keepdir works, then creating the file yourself will break the package.
econf Issues ./configure with the necessary path-changes (prefix, host, mandir, infodir, datadir, sysconfdir, localstatedir). You can optionally pass extra arguments to ./configure by specifying them when you call econf, and users can set the the environment variable EXTRA_ECONF if they need to. Options passed to configure take precedence in the reverse order that they were given. In other words, the first argument passed will always be overridden by the last.
einstall Issues make install with the necessary path-changes (prefix, datadir, mandir, infodir, datadir, sysconfdir, localstatedir). Again, you can pass extra arguments to the make command by specifying them when you call einstall. Please note that the preferred way to install a package is via the make install DESTDIR=${D} command and not via einstall. This command is only a fall back to override broken make files.
die Causes the current process to be aborted. It will notify the user using the given arguments as a reason. Do not neglect to pass a message to die if you have more than one call to it in a single function. It is harder to track down a failure if you're not sure where the package failed.
einfo Inform the user about something important. The argument given to einfo is the message that the user will see. Do not use einfo to display banners such as "*************************************". The fact that you're using einfo is enough to get the user's attention.

Helper Functions provided by eutils.eclass

You can use the following helper functions that are provided by the "eutils" eclass in your ebuilds. You must make sure that inherit eutils is present for these functions to work.

Function Purpose
draw_line This function draws a line consisting of a string of '=' characters the same length as the input to the function.
epatch This function acts as a friendlier replacement to the patch command and epatch works with .bz2, .gz, .zip and plain text patches. You do not need to specify a "-p" option, any options that do need to be explicitly specified should be set in EPATCH_OPTS. The function expects either a file or a directory as an argument - if you specify a directory, all patches in the form of "??_${ARCH}_..." will be applied: for a patch to be applied, it needs to match the running architecture, have "_all_" in the name, or EPATCH_FORCE must be set to "yes".
gen_usr_ldscript This function generates linker scripts in /usr/lib for dynamic libraries in /lib. This fixes linking problems when a .so is in /lib while a .a is in /usr/lib.
have_NPTL Returns 0 if the system is using the NPTL PThreads implementation.
get_number_of_jobs This function checks how many CPUs are present and then sets the correct -jX option in MAKEOPTS.
mymktemp This function acts as a wrapper to mktemp when it exists, or acts as a replacement when it does not.
edos2unix This function performs the same action as the dos2unix binary.
egetent egetent acts as a wrapper for getent for Linux or nidump for Mac OS X (R).
enewuser Creates a new user. This function expects a mandatory argument with the username, and several optional arguments can be specified: $2 contains a UID, pass -1 for the next available ID; $3 contains a shell with /bin/false being the default; $4 contains a home directory with /dev/null being the default, $5 contains any groups to which the user should be added, empty by default and $6 contains a comment - the default is "added by portage for ${PN}".
enewgroup Adds a new group. This function expects a mandatory argument with the group name - an optional second argument makes the group have a specific GID.
make_desktop_entry Makes a desktop entry: the first argument contains the path to the binary. Optionally, the second contains a name for the icon - the default is ${PN}; the third can contain a path to the icon relative to /usr/share/pixmaps or a full path - the default is ${PN}.png; the fourth can contain an application category, and the fifth argument contains an optional application startup path.
check_license Displays a license for the user to accept, if the an argument is not specified then the license specified by ${LICENSE} is used.
unpack_pdv Unpacks a pdv generated archive, the first argument must contain the file to unpack and the second should contain "off_t" which has to be manually generated: strace -elseek ${file} and for something like "lseek(3, -4, SEEK_END)" you would pass the value "4".
unpack_makeself Unpacks a makeself generated archive, requires a file to unpack as the argument.
cdrom_get_cds Attempts to get a CD, present with files specified by the arguments present on the system and mounted at ${CDROM_ROOT}.
cdrom_load_next_cd Loads the next CD once you are done with the first CD. If the function returns, ${CDROM_ROOT} would point to the next CD.
strip-linguas This function makes sure that LINGUAS contains only the languages that a package can support specified by the arguments to the function. If the first argument is -i, then a list of .po files in the specified directories is built and the intersection of the lists is used. If the first argument is -u, then a list of .po files in the specified directories is built and the union of the lists is used.

Helper Functions provided by flag-o-matic.eclass

You can use the following helper functions that are provided by the "flag-o-matic" eclass in your ebuilds. You must make sure that inherit flag-o-matic is present for these functions to work. You should never modify any compiler settings directly, instead please use flag-o-matic to perform any actions such as filtering flags that cause trouble.

Function Purpose
filter-flags This function removes particular flags from C[XX]FLAGS - only complete flags are matched.
append-flags This function adds extra flags to the existing C[XX]FLAGS variables.
replace-flags This replaces the flag specified by the first argument with the one in the second argument in the current C[XX]FLAGS.
replace-cpu-flags This replaces any -march=... or -mcpu=... flags that contain the second argument with the first.
replace-sparc64-flags This sets -mcpu=... to a v8 SPARC and uses the original value as -mtune if one is not already specified.
strip-flags Strips all flags, except those specified in ALLOWED_FLAGS.
strip-unsupported-flags Strips C[XX]FLAGS of any flags not supported by the running version of GCC.
get-flag Finds a flag and outputs its value.
is-flag This returns true if the flag is set in the current C[XX]FLAGS; only complete matches are performed.
append-ldflags This function adds extra flags to the existing LDFLAGS variable.
filter-ldflags Removes the specified flags from LDFLAGS, only complete flags are matched.
fstack-flags Appends -fno-stack-protector which suppresses -fstack-protector and -fstack-protector-all.

Rules for writing an ebuild file

Since ebuild files are really just shell scripts, you should use your editor's shell-script mode for editing them. You should use proper indentation, using only tab characters -- no spaces. Make sure you set up your editor to put tab stops at 4 spaces. Always make sure you use braces around your environment variables; e.g. ${P} instead of just $P.

Long lines are wrapped with ' \', thus:

Code Listing 2: Wrapping lines in ebuilds

./configure \
--prefix=/usr || die "configure failed"

For further details, refer to skel.ebuild (usually residing in /usr/portage).

If you use Vim for ebuild/eclass editing, the default Gentoo vimrc file, /etc/vim/vimrc, already ensures that correct indentation and filetype settings are used for ebuild and eclass files. For better results, including special syntax highlighting for ebuild keywords, emerge app-vim/gentoo-syntax.

On non-Gentoo systems, you can obtain similar results by using the following lines in your vimrc, or better yet by installing the gentoo-syntax scripts.

Code Listing 3: Configuring vimrc for ebuild-editing

au BufRead,BufNewFile *.e{build,class} let is_bash=1|setfiletype sh
au BufRead,BufNewFile *.e{build,class} set ts=4 sw=4 noexpandtab

If you're using Emacs, you can put the following snippet at the bottom of .emacsrc file (for GNU Emacs) or init.el (for XEmacs) to make sure your using the correct settings when editing anything Gentoo-related.

Code Listing 4: Configuring emacsrc for ebuild-editing

(defun ebuild-mode ()
  (shell-script-mode)
  (sh-set-shell "bash")
  (make-local-variable 'tab-width)
  (setq tab-width 4))
(setq auto-mode-alist (cons '("\\.ebuild$" . ebuild-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.eclass$" . ebuild-mode) auto-mode-alist))

If you're using nano, then you're in luck! Just edit /etc/nanorc and uncomment the section referring to ebuild's.

USE Variables

The purpose of USE variables is to allow you to configure Portage to globally and automatically enable or disable certain optional build-time features. Here's an example. Let's say you're a GNOME fan, and you'd like any ebuild that has the option of compiling-in optional GNOME support to do so. In this case, you'd add gnome to the USE variable in /etc/make.conf, and then Portage will automatically add optional GNOME functionality to packages if it is available. Likewise, if you don't want optional GNOME features to be added to your ebuilds if they are available, simply edit /etc/make.conf and make sure that gnome is not set in the USE variable. Gentoo Linux has an almost overwhelming number of USE options, allowing you to have your system configured exactly the way you want it.

Note: If you unset a USE variable (for example, removing gnome from USE), this will only instruct Portage to disable optional build-time support for GNOME. However, if you emerge an ebuild that requires GNOME, the package will obviously have GNOME support enabled, as you would expect. This also means that GNOME will be automatically installed (as a dependency) if it hasn't been already. That's why it's always a good idea to do an emerge --pretend before doing the "real" emerge; that way, you'll always know exactly what you're going to get!

In your own ebuilds, you can check whether a USE variable is set by using the use <variable> command. The use command prints out <variable> if it is present in the user's USE. You would normally use this command as follows:

Code Listing 5: Finding out if a USE-flag is set

if use X; then
  # Commands specific to X...
fi

USE variables can also be used to set dependencies. For example, you may only want to require a package if a certain USE variable is set. This is done by using the syntax flag? ( mycat/mypackage ) in the DEPEND variable for your ebuild. In this example, mycat/mypackage will only be required if flag is present in USE. It is also possible to specify what dependency should be used if some USE flag is set, and what dependency to use if it is not set: flag? ( mycat/mypackage) and !flag? ( othercat/otherpackage ). In this case, if flag is not set, othercat/otherpackage is used instead of mycat/mypackage. Make sure that your ebuilds use this syntax and not Bash IFS. Bash conditionals interfere with Portage's dependency caching, and the use of them will break your ebuild.

Here's an important tip about how to use USE. Most of the time, a package will have a ./configure script used to perform configuration steps. Generally, if your ebuild uses ./configure, any optional build-time functionality will be enabled or disabled by passing the appropriate arguments to the ./configure command. Here's the best way to handle this:

Code Listing 6: Conditionals based on USE-settings

DEPEND="X? ( >=x11-base/xfree-4.3 )
mysql? ( >=dev-db/mysql-3.23.49 )
apache2? ( >=net-www/apache-2 )
!apache2? ( =net-www/apache-1* )"

src_compile() {
  econf \
    `use_enable X x11` \
    `use_enable mysql` \
    || die "Error: econf failed!"
  emake || die "Error: emake failed!"
}

This approach has a very nice result. We don't have to worry about what the default setting is for mysql or X (enable/disabled), we explicitly tell econf what we want it to do based upon the USE variable. Not to mention it's quite clean in terms of readability :).

To view a continuously updated table of USE variables, please go here.

1.c. File system Locations

Introduction to the FHS

The file system layout standards used in Gentoo Linux closely follow the FHS, short for File system Hierarchy Standard. A simplified description of the standard is given here; for a complete specification go to http://www.pathname.com/fhs/.

Note: The /opt hierarchy is addressed in section 3.12 of the FHS. Section 4.4 deals with the /usr/X11R6 directory. KDE and GNOME are not specifically addressed, and are in fact not even mentioned in the current version of the FHS.

How to fit your packages into the file system

Usually, if the package uses autoconf and automake, the default installation destinations are mostly correct, with a few exceptions:

  • If you're installing a program into /bin, /sbin, /usr/bin, or /usr/sbin, then the program's corresponding man page should be installed into the /usr/share/man tree. This can often be accomplished by specifying a ./configure --mandir=/usr/share/man in the ebuild.
  • GNU info files should always be installed to /usr/share/info, even if the info files are about X11, GNOME or KDE-specific programs or tools. Make a note: /usr/share/info is the only official location for GNU info files. Since many ./configure scripts default to installing GNU info files in /usr/info, it's often necessary to call ./configure with the --infodir=/usr/share/info argument.
  • Documentation files are installed in /usr/share/doc, into a subdirectory reflecting the name, version, and revision of the particular program. This applies to all programs: GNOME, KDE, X11 and console alike. However, some programs may install additional documentation and support files into a /usr/share hierarchy for their own purposes.
  • X11-specific programs and libraries should always be installed into /usr, not directly into /usr/X11R6. We reserve the /usr/X11R6 hierarchy for the X Window System, Version 11 Release 6 itself. This is perhaps a more to-the-letter interpretation of the FHS than some other distributions have made.
  • GNOME and KDE programs, similarly, should always be installed into /usr.

Important: Some distributions choose to install GNOME and KDE into /opt. There exists no standard for these desktop environments in terms of where to actually install their files. In the interests of simplicity and consistency, we elect to install all KDE and GNOME packages into the /usr hierarchy.

In general, you should have ebuilds install their files into the /usr tree. Some programs can be compiled and linked with or without GNOME, KDE, and X11 libraries, which can cause confusion. Our solution is to install everything into /usr which avoids ambiguity and needless complexity for ebuild authors. The location in which to install a program's files should not depend on the presence or absence of specific USE variables. Therefore, the ebuilds in the portage tree almost always install into the /usr hierarchy exclusively.

Note: The /opt directory is reserved in Gentoo Linux for binary-only packages. Examples include mozilla-bin, acroread, netscape and realplayer. Packages that get installed here will usually require a /etc/env.d/foo stub file. This is so that paths and additional variables can be included into the environment. For more information on /etc/env.d, please visit this document.

1.d. The Portage scripts and utilities

Public scripts

These are scripts used by the system-administrator to install and remove packages, and maintain the package database.

ebuild is the main engine of the Portage system; it performs all major tasks such as unpacking, compiling, installing, merging, and unmerging packages. It is called using the command: ebuild path/to/package.ebuild command. The commands available are:

Command Description Related ebuild Function
setup* Performs any miscellaneous commands required before the ebuild can proceed pkg_setup
depend Displays the dependencies required to build the package N/A
merge* Unpacks, compiles, installs, and merges the package into your file system N/A
qmerge* Merges the package into your file system, assuming that the the unpack, compile, and install stages have already been executed N/A
unpack* Unpacks the source tarballs into the work directory src_unpack
compile* Compiles the package src_compile
rpm Creates an RPM from the package N/A
package Creates a Gentoo tbz2 package N/A
prerm* Executes the pre-removal stage of the package pkg_prerm
postrm* Executes the post-removal stage of the package pkg_postrm
preinst* Executes the pre-installation stage of the package pkg_preinst
postinst* Executes the post-installation stage of the package pkg_postinst
config Sets up a default configuration once the package is merged pkg_config
touch* Updates the mtimes for each source archive in the package N/A
clean* Cleans the work directory for the package N/A
fetch* Fetches the package source tarballs N/A
digest* Creates a digest file for the package N/A
install* Installs the package into the image directory src_install
unmerge Unmerges the package from your file system N/A

Note: Commands with an asterisk (*) are normally only used by the developer.

emerge recursively merges a package and all of its dependencies into your file system. This command has many options, try emerge --help for a list of them.

env-update updates the configuration files (including, but not limited to /etc/ld.so.conf and /etc/profile.env) to include changes made by installed packages.

Private Scripts and Commands

These are scripts you can use in your ebuild files to perform common tasks.

For you down and dirty people, look at the scripts themselves in /usr/lib/portage/bin.

Command Default Value Description Example
diropts -m0755 Sets the options used when running dodir diropts -m0750
dobin N/A Installs the specified binaries into DESTTREE/bin dobin wmacpi
docinto "" Sets the relative subdir (DOCDESTTREE) used by dodoc docinto examples
dodir N/A Creates a directory, handling ${D} transparently dodir /usr/lib/newpackage
dodoc N/A Installs the specified files into the package's documentation directory (/usr/share/doc/${PF}/DOCDESTTREE) (see docinto) dodoc README *.txt
doexe N/A Installs the specified files with mode EXEOPTIONS (see exeopts) into EXEDESTTREE (see exeinto) doexe ${FILESDIR}/quake3
dohard N/A Creates a hard link, handling ${D} transparently dohard ls /bin/dir
dohtml N/A Installs the specified files and directories into /usr/share/doc/${PF}/html dohtml -r doc/html/*
doinfo N/A Installs the specified files into /usr/share/info, then compresses them with gzip doinfo doc/*.info
doins N/A Installs the specified files with mode INSOPTIONS (see insopts) into INSDESTTREE (see insinto) doins *.png icon.xpm
dolib N/A Installs the specified libraries into DESTTREE/lib with mode 0644 dolib *.a *.so
dolib.a N/A Installs the specified libraries into DESTTREE/lib with mode 0644 dolib.a *.a
dolib.so N/A Installs the specified libraries into DESTTREE/lib with mode 0755 dolib.so *.so
doman N/A Installs the specified files into /usr/share/man/manX, according to the suffix of the file (file.1 will go into man1) doman *.1 *.5
dosbin N/A Installs the files into DESTTREE/sbin, making sure they are executable dosbin ksymoops
dosym N/A Creates a symlink, handles ${D} transparently dosym gzip /bin/zcat
emake N/A Runs make with MAKEOPTS. Some packages cannot be made in parallel; use emake -j1 instead. If you need to pass any extra arguments to make, simply append them onto the emake command. Users can set the EXTRA_EMAKE environment variable to pass extra flags to emake. emake
exeinto / Sets the root (EXEDESTTREE) for the doexe command exeinto /usr/lib/${PN}
exeopts -m0755 Sets the options used when running doexe exeopts -m1770
fowners N/A Applies the specified ownership to the specified file via the chown command, handles ${D} transparently fowners root:root /sbin/functions.sh
fperms N/A Applies the specified permissions to the specified file via the chmod command, handles ${D} transparently fperms 700 /var/consoles
insinto /usr Sets the root (INSDESTTREE) for the doins command insinto /usr/include
insopts -m0644 Sets the options used when running doins insopts -m0444
into /usr Sets the target prefix (DESTTREE) for all the 'do' commands (like dobin, dolib, dolib.a, dolib.so, domo, dosbin) into /
libopts -m0644 Sets the options used when running dolib libopts -m0555
newbin N/A Wrapper around dobin which installs the specified binary transparently renaming to the second argument newbin ${FILESDIR}/vmware.sh vmware
newdoc N/A Wrapper around dodoc which installs the specified file transparently renaming to the second argument newdoc README README.opengl
newexe N/A Wrapper around doexe which installs the specified file transparently renaming to the second argument newexe ${FILESDIR}/xinetd.rc xinetd
newins N/A Wrapper around doins which installs the specified file transparently renaming to the second argument newins ntp.conf.example ntp.conf
newman N/A Wrapper around doman which installs the specified file transparently renaming to the second argument newman xboing.man xboing.6
newsbin N/A Wrapper around dosbin which installs the specified file transparently renaming to the second argument newsbin strings strings-static
prepall N/A Runs prepallman, prepallinfo and prepallstrip. Also ensures all libraries in /opt/*/lib, /lib, /usr/lib and /usr/X11R6/lib are executable. also moves any stray aclocal macros into /usr/share/aclocal prepall
prepalldocs N/A Recursively gzips all doc files in /usr/share/doc, transparently fixing up any symlink paths prepalldocs
prepallinfo N/A Recursively gzips all info files in /usr/share/info prepallinfo
prepallman N/A Recursively gzips all man pages in /opt/*/man/*, /usr/share/man/*, /usr/local/man/*, /usr/X11R6/share/man/* and transparently fixes up any symlink paths prepallman

1.e. Package Dependencies

Why dependencies are important

Portage is more than just a convenience script that gives you a unified way to build any one project (program, library) from source. It will also fetch and install any necessary dependencies if you take care to specify these in your ebuild.

In the official ebuilds, all dependencies have already been specified, so when you issue emerge net-www/mozilla/mozilla-1.0, Portage will insure that all libraries necessary for Mozilla to build and run are properly installed before Mozilla itself is built.

Portage even distinguishes between build-time dependencies and run-time dependencies. (Caveat: Currently, Portage installs all build-time and run-time dependencies and leaves it at that. At a later stage, it will be possible to trim your installation so that only the run-time dependencies are left installed).

How to Specify Dependencies in Your ebuild Files (a.k.a. DEPEND Atoms)

The DEPEND variable inside your foo-x.y.z.ebuild tells Portage about which packages are needed to build foo. The RDEPEND variable specifies which packages are needed for foo to run.

Code Listing 7: Depend example

DEPEND="virtual/glibc
        sys-libs/zlib"
RDEPEND="virtual/glibc"

This tells Portage that to build foo-x.y.z, the packages virtual/glibc (more on virtuals in a bit) and sys-libs/zlib are needed. It does not say anything about which version of glibc or zlib that are needed, which means "anything goes".

The "anything goes" is of course a bit scary, and will not work in the general case. But for central libraries like glibc, which strives very hard to be 100% binary compatible all the time, it actually works. For other libraries, we can of course specify version dependencies.

Code Listing 8: Version example

>=sys-apps/bar-1.2
=sys-apps/baz-1.0

>= and = do what you would expect; sys-apps/bar version 1.2 or newer is okay (this means that sys-apps/bar-2.0 is okay), while sys-apps/baz version 1.0 is the only version that is accepted. For more information on the version schema of packages, see the section above on Naming ebuild Files.

Other methods of specifying version dependencies are as follows:

Code Listing 9: Specifying version dependencies

~sys-apps/qux-1.0
=sys-apps/foo-1.2*
!sys-libs/gdbm

~sys-apps/qux-1.0 will select the newest portage revision of qux-1.0.

=sys-apps/foo-1.2* will select the newest member of the 1.2 series, but will ignore 1.3 and later/earlier series. That is, foo-1.2.3 and foo-1.2.0 are both valid, while foo-1.3.3, foo-1.3.0, and foo-1.1.0 are not.

!sys-libs/gdbm will prevent this package from being emerged while gdbm is already emerged.

Note: For all the latest details about these DEPEND Atoms, please see the section 5 manpage on ebuilds: man 5 ebuild.

1.f. Testing and deploying

ChangeLog

Whenever you update a (or write a new) ebuild, you must also update its (or create a new) ChangeLog. The skel.ChangeLog contains a sample ChangeLog that you can use as a basis.

The purpose of the ChangeLog is to document what is being done, why it is being done, and by whom. This allows both developers and users to trace the changes made in an easy way.

The ChangeLog is primarily targeted at users, so be sure to keep your writing short, to the point, and avoid getting verbose about the internal technical details.

Storing your own ebuilds locally

In order to be able to test your ebuilds and let Portage know about them, you must place those in a known directory. Portage will use the PORTDIR_OVERLAY variable which you can define in /etc/make.conf. You should set this variable to your directory (e.g. /usr/local/portage).

In that directory, you must use the same structure (and categories) as in /usr/portage.

Using this PORTDIR_OVERLAY, your ebuilds remain on your system, even after an emerge sync, and they are still known to Portage.

Useful testing tools

We have a few useful tools to help you with writing and maintaining your ebuilds.

Warning: lintool is broken. Use repoman instead.

Tool Package Description
repoman sys-apps/portage Developer-only tool to assist with the CVS checkin procedure. It does a lot of common QA and tries to make sure that files added to cvs will not break the portage tree.
ccache dev-util/ccache Tool that keeps pre-processed files so that recompilation gets done much faster. Be sure to add ccache to the FEATURES variable in /etc/make.conf!
sandboxshell app-shells/sandboxshell Launch a shell that creates a sandbox environment. Useful for entering the same environment that portage builds packages inside of and debugging things by hand.
echangelog app-portage/gentoolkit-dev Can create a new ChangeLog or add an entry to an existing one.
qpkg app-portage/gentoolkit A tool to gather misc information about installed packages.

[ << ] [ < ] [ Home ] [ > ] [ >> ]



The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.
Print
line
Updated­ September 09, 2004
line
Donny Davies
Ebuild HOWTO - Author

Peter Gavin
Author

Karl Trygve Kalleberg
Author

Mike Frysinger
Author

Daniel Robbins
Author/Editor

John P. Davis
Author/Editor

Jorge Paulo
Editor

Sven Vermeulen
Editor

Zack Gilburd
Editor

Benny Chuang
Editor

Erwin
Editor

Dan Armak
Eclass HOWTO - Author

Alastair Tse
Common Ebuild Mistakes - Author

Paul De Vrieze
Metadata Document - Author

Owen Stampflee
Ebuild Policy - Original Author

Seemant Kulleen
Editor

Jon Portnoy
Editor

Carl Anderson
Editor

Ciaran McCreesh
Contributor

Nicholas D. Wolfwood
Contributor

Marius Mauch
Contributor

Tim Yamin
Author/Editor

Gentoo Developer Relations Team
Editors

line
Summary:  This section describes the Gentoo Linux Portage system, how to create new packages for Gentoo, and is also meant to be somewhat of a standard for the Gentoo Developers. It is a work in progress, and is constantly being updated and changed. It is by no means complete. You should always use this in conjunction with the manpages provided by portage (especially ebuild(5)) and the Gentoo Linux Development Policy.
line
$99/mo dedicated servers

No BS Dedicated Gentoo Linux Servers from vr.org.

line
Tek Alchemy

Tek Alchemy offers dedicated servers and other hosting solutions running Gentoo Linux.

line
php|architect

php|architect is the monthly magazine for PHP professionals, available worldwide in print and electronic format. A percentage of all the sales will be donated back into the Gentoo project.

line
SevenL.net

Seven L Networks provides customizable Dedicated Servers for your customized Gentoo install. Colocation and other hosting services are also provided.

line
The Gentoo Linux Store
line
Copyright 2001-2004 Gentoo Foundation, Inc. Questions, Comments, Corrections? Email www@gentoo.org.