]> git.xonotic.org Git - xonotic/gmqcc.git/blob - distro/gentoo/INSTALL
oops
[xonotic/gmqcc.git] / distro / gentoo / INSTALL
1 To use the ebuilds provided in this gentoo directory you first must
2 create a directory in your overlay tree.
3
4 If you don't already have your own directory for custom ebuilds, you can
5 create one. If you already have one, and that directory is set in your
6 /etc/make.conf for PORTDIR_OVERLAY, this step can be skiped. Otherwise
7 if you don't already, you can create one as such.
8
9 # mkdir -p /usr/local/portage
10 # vim /etc/make.conf
11         Set PORTDIR_OVERLAY=/usr/local/portage
12         Then save and exit
13
14 Once that is completed, or you skiped that step, you need to create a
15 directory in your overlay tree for gmqcc, this can be done as such:
16 (subsitute [[PORTDIR_OVERLAY]] with the one set in /etc/make.conf)
17
18 # mkdir -p [[PORTDIR_OVERLAY]]/gmqcc
19
20 After the directory is created you need to move the correct version ebuild
21 into that directory depending on which version of GMQCC you want. For
22 instance, if you want gmqcc 0.3.0, you move gmqcc-0.3.0.ebuild into that
23 directory.
24
25 # mv gmqcc-{version}.ebuild [[PORTDIR_OVERLAY]]/gmqcc/
26
27 After the file is moved into your newly created portage overlay tree, you'll
28 need to build a digest for it with ebuild. A digest is simply a Manifest and
29 digital signature for the source files used.
30
31 # ebuild gmqcc-0.3.0.ebuild digest
32
33 After the digest is built, you can emerge gmqcc as usual.
34
35 # emerge gmqcc