1 # These GNUSTEP_*_ROOT variables are obsolete, and will be removed.
2 #GNUSTEP_SYSTEM_ROOT=/nix/store/ky64z3j9l18wjcssb9pxnc792ihh3bvw-gnustep-make-2.6.6/System
3 #GNUSTEP_LOCAL_ROOT=/nix/store/ky64z3j9l18wjcssb9pxnc792ihh3bvw-gnustep-make-2.6.6/Local
4 #GNUSTEP_NETWORK_ROOT=/nix/store/ky64z3j9l18wjcssb9pxnc792ihh3bvw-gnustep-make-2.6.6/Network
6 # The name of the user config file. This file can override
7 # some settings in this file. Usually used by users that want
8 # to install things into their GNUstep user domain and/or have
10 GNUSTEP_USER_CONFIG_FILE=.GNUstep.conf
12 # The name of the user directory, if any. This is obsolete,
13 # and will be removed.
14 GNUSTEP_USER_DIR=GNUstep
16 # The name of the user directory where defaults (eg, preferences) are
17 # stored. If it does not start with a '/', it will be considered
18 # relative to the user home directory.
19 GNUSTEP_USER_DEFAULTS_DIR=GNUstep/Defaults
22 # This is where the gnustep-make Makefiles are installed.
23 # Traditionally, this is /usr/GNUstep/System/Library/Makefiles
24 GNUSTEP_MAKEFILES=@gnustepMakefiles@
26 # This is where the user home directories are. Only used to provide
27 # NSUserDirectory in gnustep-base. Never used anywhere else.
28 GNUSTEP_SYSTEM_USERS_DIR=/home
29 GNUSTEP_NETWORK_USERS_DIR=/home
30 GNUSTEP_LOCAL_USERS_DIR=/home
33 # This is where System GUI Applications get installed.
34 # Traditionally it is /usr/GNUstep/System/Applications.
35 GNUSTEP_SYSTEM_APPS=@systemApps@
37 # This is where System GUI Applications that only the
38 # Administrator can use get installed.
39 # Traditionally it is /usr/GNUstep/System/Applications/Admin.
40 GNUSTEP_SYSTEM_ADMIN_APPS=@systemAdminApps@
42 # This is where System Web Applications (GSWeb, SOPE) get
44 # Traditionally it is /usr/GNUstep/System/Library/WebApplications.
45 GNUSTEP_SYSTEM_WEB_APPS=@systemWebApps@
47 # This is where System Command-Line Tools get installed.
48 # Traditionally it is /usr/GNUstep/System/Tools.
49 GNUSTEP_SYSTEM_TOOLS=@systemTools@
51 # This is where System Command-Line Tools that only the
52 # Administrator can use get installed. Important: this
53 # should not be in the PATH of normal users.
54 # Traditionally it is /usr/GNUstep/System/Tools/Admin.
55 GNUSTEP_SYSTEM_ADMIN_TOOLS=@systemAdminTools@
57 # This is where System resources get installed. This directory will
58 # contain a lot of executable code since *step traditionally likes to
59 # bundle executables and resources together.
60 # Traditionally it is /usr/GNUstep/System/Library.
61 GNUSTEP_SYSTEM_LIBRARY=@systemLibrary@
63 # This is where System headers get installed. They are the
65 # Traditionally it is /usr/GNUstep/System/Library/Headers.
66 GNUSTEP_SYSTEM_HEADERS=@systemHeaders@
68 # This is where System libraries get installed. By libraries we mean
69 # the shared/static object files that you can link into programs.
70 # Traditionally it is /usr/GNUstep/System/Library/Libraries.
71 GNUSTEP_SYSTEM_LIBRARIES=@systemLibraries@
73 # This is where System documentation get installed. This is known
74 # not to contain any executable, so we keep it separate.
75 # Traditionally it is /usr/GNUstep/System/Library/Documentation.
76 GNUSTEP_SYSTEM_DOC=@systemDoc@
78 # This is where System man pages get installed.
79 # Traditionally it is /usr/GNUstep/System/Library/Documentation/man.
80 GNUSTEP_SYSTEM_DOC_MAN=@systemDocMan@
82 # This is where System info pages get installed.
83 # Traditionally it is /usr/GNUstep/System/Library/Documentation/info.
84 GNUSTEP_SYSTEM_DOC_INFO=@systemDocInfo@
87 GNUSTEP_NETWORK_APPS=@systemApps@
88 GNUSTEP_NETWORK_ADMIN_APPS=@systemAdminApps@
89 GNUSTEP_NETWORK_WEB_APPS=@systemWebApps@
90 GNUSTEP_NETWORK_TOOLS=@systemTools@
91 GNUSTEP_NETWORK_ADMIN_TOOLS=@systemAdminTools@
92 GNUSTEP_NETWORK_LIBRARY=@systemLibrary@
93 GNUSTEP_NETWORK_HEADERS=@systemHeaders@
94 GNUSTEP_NETWORK_LIBRARIES=@systemLibraries@
95 GNUSTEP_NETWORK_DOC=@systemDoc@
96 GNUSTEP_NETWORK_DOC_MAN=@systemDocMan@
97 GNUSTEP_NETWORK_DOC_INFO=@systemDocInfo@
99 GNUSTEP_LOCAL_APPS=@systemApps@
100 GNUSTEP_LOCAL_ADMIN_APPS=@systemAdminApps@
101 GNUSTEP_LOCAL_WEB_APPS=@systemWebApps@
102 GNUSTEP_LOCAL_TOOLS=@systemTools@
103 GNUSTEP_LOCAL_ADMIN_TOOLS=@systemAdminTools@
104 GNUSTEP_LOCAL_LIBRARY=@systemLibrary@
105 GNUSTEP_LOCAL_HEADERS=@systemHeaders@
106 GNUSTEP_LOCAL_LIBRARIES=@systemLibraries@
107 GNUSTEP_LOCAL_DOC=@systemDoc@
108 GNUSTEP_LOCAL_DOC_MAN=@systemDocMan@
109 GNUSTEP_LOCAL_DOC_INFO=@systemDocInfo@
111 # Important: settings in the User should normally be relative paths,
112 # and will be interpreted as relative to the user's directory. This
113 # allows each user to have their own domain to install things. You
114 # can set them to be absolute, mostly if you want to disable them
115 # by setting them equal to the ones in the Network domain.
116 GNUSTEP_USER_DIR_APPS=GNUstep/Applications
117 GNUSTEP_USER_DIR_ADMIN_APPS=GNUstep/Applications/Admin
118 GNUSTEP_USER_DIR_WEB_APPS=GNUstep/WebApplications
119 GNUSTEP_USER_DIR_TOOLS=GNUstep/Tools
120 GNUSTEP_USER_DIR_ADMIN_TOOLS=GNUstep/Tools/Admin
121 GNUSTEP_USER_DIR_LIBRARY=GNUstep/Library
122 GNUSTEP_USER_DIR_HEADERS=GNUstep/Library/Headers
123 GNUSTEP_USER_DIR_LIBRARIES=GNUstep/Library/Libraries
124 GNUSTEP_USER_DIR_DOC=GNUstep/Library/Documentation
125 GNUSTEP_USER_DIR_DOC_MAN=GNUstep/Library/Documentation/man
126 GNUSTEP_USER_DIR_DOC_INFO=GNUstep/Library/Documentation/info