blob: cb532f162228ad671b31c4c29dc708f60756e8e0 (
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
|
# R-overlay.conf
# This is the default config file for roverlay installations
# --- Required Configuration ---
# DISTFILES has to be set
# this is the directory where per-repo package directories will be created
#DISTFILES="~/roverlay/distfiles"
# OVERLAY_DIR has to be set
# this is the directory of the overlay to be created/maintained
#OVERLAY_DIR="~/roverlay/overlay"
# LOG_FILE should be set
#LOG_FILE="~/roverlay/log/roverlay.log"
# ---
# Not required but ebuilds won't be functional without the eclass
OVERLAY_ECLASS = /etc/roverlay/eclass/R-packages.eclass
#LOG_LEVEL = WARNING
#LOG_LEVEL_CONSOLE = INFO
#LOG_LEVEL_FILE = ERROR
# this enables per-run log files
#LOG_FILE_ROTATE = yes
# number of backup log files to keep
#LOG_FILE_ROTATE_COUNT = 5
# using the default field definition file
FIELD_DEFINITION = /etc/roverlay/description_fields.conf
# using the default repo list
REPO_CONFIG = /etc/roverlay/repo.list
# using the default dependency rule files
# Can be extended by appending other directories/files
SIMPLE_RULES_FILE = "/etc/roverlay/simple-deprules.d"
#SIMPLE_RULES_FILE = "/etc/roverlay/simple-deprules.d ~/roverlay/config/deprules.d"
|