Difference between pages "Package:Layman" and "Requested Documents"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m (add masking information)
 
m
 
Line 1: Line 1:
{{Ebuild
* {{Package|x11-wm/wmfs}}
|Summary=Tool to manage Gentoo overlays
* reverse dependency resolution... not once emerge pkg --tree is said or equery depends pkg on the entire wiki?
|CatPkg=app-portage/layman
* [[troubleshooting]]
|Homepage=http://layman.sourceforge.net/
* bind
}}
* dnsmasq
Layman is an "overlay" external repository management tool.
* more email stuff....
 
* dkim/spf dns configurations probably under bind, not sure if dnsmasq supports that stuff.....
=== Installation ===
* dovecot http://www.dovecot.org/documentation.html
<console>###i## emerge layman</console>
* rtorrent && rutorrent
make.conf must source laymans overlays for emerge to pull in packages from external sources.
* auto logins (for startx, lxdm, and others if they're possible)
<console>###i## echo "source /var/lib/layman/make.conf" >> /etc/portage/make.conf</console>
 
=== Using Layman ===
Fetch, and display a list of overlays:
<console>###i## layman -L</console>
 
Add an overlay to your system:
<console>###i## layman -a <overlay name></console>
 
Delete an overlay from your system:
<console>###i## layman -d <overlay name></console>
 
==== Masking Overlay Packages ====
Overlays have the power to override distro packages.  To avoid conflicts, mask everything in the overlay, and unmask the packages that are necessary to your system.
 
{{file|name=/etc/portage/package.mask|lang=|desc=mask all packages in an overlay|body=
*/*::overlay-name
}}
 
{{file|name=/etc/portage/package.unmask|lang=|desc=unmask packages to be used|body=
cat-egory/pack-age1
cat-egory/pack-age2
}}
 
==== Sync ====
 
Sync a specific overlays ebuilds:
<console>###i## layman -s <overlay name></console>
 
Sync all overlays:
<console>###i## layman -S</console>
 
Sync all overlays via eix:
<console>###i## eix-sync</console>
 
{{EbuildFooter}}

Revision as of 14:50, January 31, 2015

  • No results
  • reverse dependency resolution... not once emerge pkg --tree is said or equery depends pkg on the entire wiki?
  • troubleshooting
  • bind
  • dnsmasq
  • more email stuff....
  • dkim/spf dns configurations probably under bind, not sure if dnsmasq supports that stuff.....
  • dovecot http://www.dovecot.org/documentation.html
  • rtorrent && rutorrent
  • auto logins (for startx, lxdm, and others if they're possible)