1## Introduction
2
3# This file is not installed by default because it must only be used
4# by advanced users and mostly when they are compiling everything from
5# source.
6
7# To use this file, manually copy it into the same directory where the
8# GNUstep.conf file is installed (by default, /etc/GNUstep/), then
9# edit it to suit your installation tastes.
10
11# This file can be used to change the default installation domains for
12# GNUstep software.  By default, everything is installed into the
13# Local domain; this file allows you to customize the default
14# installation domains and specify that some packages are to be
15# installed by default into System (or Network, or User).
16
17# The System domain is normally reserved for prebuilt packages, that
18# is the components shipped with your GNUstep system.  So if you're
19# building everything from source yourself, the System domain would
20# never be used.  In that case, you can use this file to change the
21# default installation domain for some GNUstep software, installing
22# them into System (instead of Local) by default.
23
24# This file only specifies the default; you can always install a
25# specific piece of software into whatever domain you want by using
26# GNUSTEP_INSTALLATION_DOMAIN as in 'make install
27# GNUSTEP_INSTALLATION_DOMAIN=LOCAL'.
28
29# This file is very dangerous for end-users since they might be
30# overwriting their System installation if they compile and install
31# source code downloaded from the internet (eg, if they're trying a
32# new version of Gorm).  Only advanced users should be using it.
33# Please never ship this file to end-users.  Packagers (people
34# building ready-to-use GNUstep distributions to be distributed to
35# end-users) must never distribute this file.
36
37# If you are an end-user and have found this file shipped with your
38# GNUstep distribution or gnustep-make binary package, this is a bug
39# in your GNUstep distribution or package.  Please complain to your
40# packager and put <bug-gnustep@gnu.org> in Cc:.
41
42## The actual file
43
44# To be activated, an entry in this list must match the PACKAGE_NAME
45# as defined in the GNUmakefile of the project.  For example, Gorm's
46# top-level GNUmakefile has the lines
47#
48#   PACKAGE_NAME = gorm
49#   export PACKAGE_NAME
50#
51# so you can have it be installed into System by adding 'gorm'
52# to the list.
53#
54# Please note that any project not explicitly listed here will be
55# installed into Local by default.
56
57GNUSTEP_PACKAGES_TO_INSTALL_INTO_SYSTEM_BY_DEFAULT = \
58  gnustep-objc \
59  gnustep-objc2 \
60  libobjc2 \
61  toydispatch \
62  gnustep-base \
63  gnustep-gui \
64  gnustep-back \
65  gorm \
66  ProjectCenter \
67  gworkspace \
68  SystemPreferences
69
70GNUSTEP_PACKAGES_TO_INSTALL_INTO_LOCAL_BY_DEFAULT = \
71
72GNUSTEP_PACKAGES_TO_INSTALL_INTO_NETWORK_BY_DEFAULT = \
73
74GNUSTEP_PACKAGES_TO_INSTALL_INTO_USER_BY_DEFAULT = \
75