Skip to content
Vasiliy Yeremeyev edited this page Jun 23, 2015 · 4 revisions

Overlay Installation

Lets assume that overlay is installed to the following location:

VAYERX_OVERLAY="/var/lib/layman/vayerx"

First of all, package keywords and [un]masks should be installed:

mkdir -p /etc/portage/package.{keywords,unmask,mask}
ln -s $VAYERX_OVERLAY/Documentation/package.keywords/{system,browser,games,office} /etc/portage/package.keywords/

You may want to install additional keywords/masks/unmasks according to your needs -- have a look at $VAYERX_OVERLAY/Documentation/package.{keywords,unmask,mask}/.

Overlay contains following user-defined package sets:

  • devel - development tools
  • fonts, games, office - obviously, sets of fonts, games, office
  • photo - photo processing tools
  • systaff - system installation and maintenance utils

Installation is simple:

mkdir -p /etc/portage/sets/
ln -s $VAYERX_OVERLAY/Documentation/sets/{systaff,office,fonts} /etc/portage/sets/
emerge -avq @{systaff,office,fonts}

Localization (Russification)

/etc/make.conf

USE="nls unicode"
LINGUAS="en ru"

/etc/conf.d/consolefont

consolefont="cyr-sun16"
consoletranslation="cp1251_to_uni"

/etc/conf.d/keymaps

keymap="-u ru"
windowkeys="YES"
extended_keymaps=""
dumpkeys_charset="koi8-r"
fix_euro="NO"

/etc/env.d/02locale

LC_CTYPE="ru_RU.utf8"
LC_COLLATE="ru_RU.utf8"
Clone this wiki locally