Difference between revisions of "Package:Layman"

From Funtoo
Jump to navigation Jump to search
(initial commit)
 
m (moar garbage)
Line 6: Line 6:
Layman is an "overlay" external repository management tool.
Layman is an "overlay" external repository management tool.
<console>###i## emerge layman</console>
<console>###i## emerge layman</console>
make.conf must source laymans overlays for emerge to pull in packages from external sources.
<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>
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}}
{{EbuildFooter}}

Revision as of 04:03, December 28, 2014

Layman

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Layman is an "overlay" external repository management tool.

root # emerge layman

make.conf must source laymans overlays for emerge to pull in packages from external sources.

root # echo "source /var/lib/layman/make.conf" >> /etc/portage/make.conf

Using Layman

Fetch, and display a list of overlays:

root # layman -L

Add an overlay to your system:

root # layman -a <overlay name>

Delete an overlay from your system:

root # layman -d <overlay name>

Sync a specific overlays ebuilds:

root # layman -s <overlay name>

Sync all overlays:

root # layman -S

Sync all overlays via eix:

root # eix-sync