blob: 780ac5162e8ba34500b7cee377d153f926b78e0a (
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
|
STAGE1_USE="uclibc"
GRP_STAGE23_USE="ncurses readline zlib uclibc"
USE="ncurses readline zlib uclibc -fortran"
CFLAGS="-Os"
CXXFLAGS="${CFLAGS}"
PORTAGE_LIBC="uClibc"
ELIBC=uclibc
#
# FEATURES are settings that affect the functionality of portage. Most of
# these settings are for developer use, but some are available to non-
# developers as well.
#
# 'nodoc' remove 'doc' in the preinstall phase.
# functionality equivalent to rm -rf usr/share/doc/
#
# 'noinfo' remove 'info' pages in the preinstall phase.
# functionality equivalent to rm -rf usr/share/info/
#
# 'noman' remove 'man' pages in the preinstall phase.
# functionality equivalent to rm -rf usr/share/man/
#
# 'sandbox' enable sandbox-ing when running emerge and ebuild
#
# 'sfperms' feature for security minded people that causes portage to
# remove group+other readable bits on setuid files and
# remove the other readable bits on setgid files.
#
# 'strict' causes portage to react strongly to conditions that
# have the potential to be dangerous -- like missing or
# incorrect Manifest files.
#
# 'userpriv' allows portage to drop root privleges while it is compiling
# as a security measure, and as a side effect this can remove
# sandbox access violations for users.
#
# 'usersandbox' enables sandboxing while portage is running under userpriv.
# unpack -- for debugging purposes only.
FEATURES="sandbox sfperms strict nodoc noinfo noman autoconfig"
# These are here because I am adding this to default-linux and removing it from
# the leaf profiles. If you would like these as defaults, feel free to remove
# the following line.
USE="${USE} -pppd -isdnlog"
|