aboutsummaryrefslogtreecommitdiff
blob: a433a52e9b4559400d7d20927221d1d210e1ff5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
option('system-wide', type : 'boolean', value : true,
    description : 'Install system-wide rather than isolated inside a Python environment'
)

option('code-only', type : 'boolean', value : false,
    description : 'Do not install additional files such as configuration or documentation'
)

option('eprefix', type : 'string',
    description : 'Prefix directory for Portage to operate under'
)

option('portage-base', type : 'string',
    description : 'Portage installation base directory'
)

option('portage-bindir', type : 'string',
    description : 'Internal Portage executables directory'
)

option('portage-datadir', type : 'string',
    description : 'Data files directory'
)

option('docdir', type : 'string',
    description : 'Documentation directory'
)

option('doc', type : 'boolean', value : false,
    description : 'Build and install documentation'
)

option('doc-formats', type : 'array', choices : ['xhtml', 'xhtml-nochunks'],
    description : 'Documentation formats to build'
)

option('apidoc', type : 'boolean', value : false,
    description : 'Build and install API documentation'
)

option('native-extensions', type : 'boolean', value : true,
    description : 'Build and install the native extensions for better performance'
)

option('gentoo-dev', type : 'boolean', value : false,
    description : 'Enable features required for Gentoo ebuild development'
)

option('ipc', type : 'boolean', value : true,
    description : 'Use inter-process communication between Portage and running ebuilds'
)

option('rsync-verify', type : 'boolean', value : true,
    description : 'Enable full-tree cryptographic verification of Gentoo repository rsync checkouts'
)

option('xattr', type : 'boolean', value : false,
    description : 'Preserve extended attributes when installing files'
)