Portage Advanced Usage: Difference between revisions

From Elvanör's Technical Wiki
Jump to navigation Jump to search
No edit summary
Line 21: Line 21:
* --newuse will recompile packages that had their USE flags changed.
* --newuse will recompile packages that had their USE flags changed.
* --depclean will attempt to remove packages that are no longer needed as dependencies.
* --depclean will attempt to remove packages that are no longer needed as dependencies.
 
* -t will display a tree view. It can be very useful to know which package pulls in another one.
* To emerge a particular version of a package: emerge =mypackage-0.6.3-r2
* To emerge a particular version of a package: emerge =mypackage-0.6.3-r2



Revision as of 13:49, 23 July 2008

This article lists some neat things you can do with Portage/emerge.

/etc/portage directory

This directory contains important configuration files for Portage.

  • package.keywords lets you add keywords for individual packages.
  • package.use lets you add local USE flags for certain packages. To add/remove certain languages, you can use expanded USE flags:
USE="linguas_en -linguas_fr"
  • Note that on these two files, each line must contain only the package name and the options. Don't add any comment (comments must use a whole line) after the package name and options.

Portage world file

It is located in /var/lib/portage/world.

emerge options

  • --newuse will recompile packages that had their USE flags changed.
  • --depclean will attempt to remove packages that are no longer needed as dependencies.
  • -t will display a tree view. It can be very useful to know which package pulls in another one.
  • To emerge a particular version of a package: emerge =mypackage-0.6.3-r2

Gentoolkit

  • equery files ebuild_name will list all the files installed by the specified ebuild.

Useful Links