Creating Your Own Overlay

From Funtoo
Jump to navigation Jump to search

This page intends to get your local overlay going.

Using overlay with Funtoo's kits system

For the overlays we will use a minor change for the main meta-repo described in Funtoo kits: https://github.com/funtoo/meta-repo/blob/master/README.rst

root # install -d /var/git
root # cd /var/git
root # git clone https://github.com/funtoo/meta-repo.git
root # cd meta-repo
root # git submodule init
root # git submodule update
root # rm /usr/share/portage/config/repos.conf
root # ln -s /var/git/meta-repo/repos.conf/ /etc/portage/repos.conf/funtoo
root # chown -R portage:portage /var/git/meta-repo

In above shown commands we created the "funtoo" symlink to the regular portage tree. This allows to add any configuration files of any names you prefer for any custom repositories you like, such as overlays, and will not interfere with the meta-repo.

Creating the overlay

We will use /var/git/overlay as primary location directory for the overlay. The location can be anywhere on your system, below is an example location tied with /var/git/, is where regular tree located too.

root # mkdir /var/git/overlay

Clone the skeleton overlay from github. Change the repository's name from skeleton to a name as it will appear when emerging. Here we use myoverlayname as an example, choose your name accordingly.

root # cd /var/git/overlay
root # git clone  http://github.com/funtoo/skeleton-overlay.git
root # mv skeleton-overlay myoverlayname

Configure the overlay

We will enable portage settings required for the overlay to be functional.

root # echo "myoverlayname" > /var/git/overlay/myoverlayname/profiles/repo_name
root # echo "masters = core-kit" >> /var/git/overlay/myoverlayname/metadata/layout.conf
   /etc/portage/repos.conf/myoverlayname.conf - Add your overlay to portage
[myoverlayname]
location = /var/git/overlay/myoverlayname
masters = core-kit
auto-sync = no
priority = 10
   Tip

The priority key is needed to ensure, that your overlay has higher priority to the kit's overlays, which are default priority 1

This would be starting point for your own overlay. You're ready to add new ebuilds that are not present in portage tree or fix the ebuilds from portage tree you are no satisfied with, updating of old versions or removing of new ebuild versions.