diff --git a/NEWS b/NEWS index 2848276f..b469a9ca 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,17 @@ NEWS for veteran Window Maker users ----------------------------------- +-- 0.95.9 + +New user configuration directory environment variable +----------------------------------------------------- + +In previous versions, the GNUstep directory used to store a user's Window Maker +configuration files was specified by the GNUSTEP_USER_ROOT environment variable, +which defaulted to ~/GNUstep. However, this environment variable was deprecated +in gnustep-make v2. Therefore, it has been replaced by the WMAKER_USER_ROOT +environment variable. + -- 0.95.8 Move pointer with maximized windows diff --git a/WINGs/po/fy.po b/WINGs/po/fy.po index 262120aa..9d19c68b 100644 --- a/WINGs/po/fy.po +++ b/WINGs/po/fy.po @@ -388,8 +388,8 @@ msgid "Could not create component %s" msgstr "Koe komponint %s net oanmeitsje" #: ../../WINGs/userdefaults.c:72 -msgid "variable GNUSTEP_USER_ROOT defined with invalid path, not used" -msgstr "fariabele GNUSTEP_USER_ROOT, definiearre mei ûnjildich paad, net brûkt" +msgid "variable WMAKER_USER_ROOT defined with invalid path, not used" +msgstr "fariabele WMAKER_USER_ROOT, definiearre mei ûnjildich paad, net brûkt" #. something happened with the file. just overwrite it #: ../../WINGs/userdefaults.c:210 ../../WINGs/userdefaults.c:225 diff --git a/WINGs/po/hu.po b/WINGs/po/hu.po index 1c4bbca7..e0760e8e 100644 --- a/WINGs/po/hu.po +++ b/WINGs/po/hu.po @@ -197,8 +197,8 @@ msgid "Could not create component %s" msgstr "Nem sikerült létrehozni a %s elemet" #: ../../../wmaker-crm/WINGs/userdefaults.c:65 -msgid "variable GNUSTEP_USER_ROOT defined with invalid path, not used" -msgstr "A GNUSTEP_USER_ROOT változó be van állítva, de rossz értékre. Nem használom" +msgid "variable WMAKER_USER_ROOT defined with invalid path, not used" +msgstr "A WMAKER_USER_ROOT változó be van állítva, de rossz értékre. Nem használom" #. something happened with the file. just overwrite it #: ../../../wmaker-crm/WINGs/userdefaults.c:196 diff --git a/WINGs/po/nl.po b/WINGs/po/nl.po index 65a771db..9bab4757 100644 --- a/WINGs/po/nl.po +++ b/WINGs/po/nl.po @@ -389,9 +389,9 @@ msgid "Could not create component %s" msgstr "Kon component %s niet aanmaken" #: ../../WINGs/userdefaults.c:72 -msgid "variable GNUSTEP_USER_ROOT defined with invalid path, not used" +msgid "variable WMAKER_USER_ROOT defined with invalid path, not used" msgstr "" -"variabele GNUSTEP_USER_ROOT, gedefinieerd met ongeldig pad, niet gebruikt" +"variabele WMAKER_USER_ROOT, gedefinieerd met ongeldig pad, niet gebruikt" #. something happened with the file. just overwrite it #: ../../WINGs/userdefaults.c:210 ../../WINGs/userdefaults.c:225 diff --git a/WINGs/proplist.c b/WINGs/proplist.c index 55188964..3203303d 100644 --- a/WINGs/proplist.c +++ b/WINGs/proplist.c @@ -1731,7 +1731,7 @@ Bool WMWritePropListToFile(WMPropList * plist, const char *path) * file, and the last component is stripped off. the rest is the * the hierarchy to be created. * - * refuses to create anything outside $GNUSTEP_USER_ROOT + * refuses to create anything outside $WMAKER_USER_ROOT * * returns 1 on success, 0 on failure */ @@ -1742,7 +1742,7 @@ int wmkdirhier(const char *path) size_t p, plen; struct stat st; - /* Only create directories under $GNUSTEP_USER_ROOT */ + /* Only create directories under $WMAKER_USER_ROOT */ if ((t = wusergnusteppath()) == NULL) return 0; if (strncmp(path, t, strlen(t)) != 0) @@ -1823,7 +1823,7 @@ static int wrmdirhier_fn(const char *path, const struct stat *st, /* * remove a directory hierarchy * - * refuses to remove anything outside $GNUSTEP_USER_ROOT + * refuses to remove anything outside $WMAKER_USER_ROOT * * returns 1 on success, 0 on failure * @@ -1837,7 +1837,7 @@ int wrmdirhier(const char *path) int error; const char *t; - /* Only remove directories under $GNUSTEP_USER_ROOT */ + /* Only remove directories under $WMAKER_USER_ROOT */ if ((t = wusergnusteppath()) == NULL) return EPERM; if (strncmp(path, t, strlen(t)) != 0) diff --git a/WINGs/userdefaults.c b/WINGs/userdefaults.c index 3ec776c6..80feef98 100644 --- a/WINGs/userdefaults.c +++ b/WINGs/userdefaults.c @@ -59,9 +59,9 @@ const char *wusergnusteppath() return path; #ifdef HAVE_SECURE_GETENV - gspath = secure_getenv("GNUSTEP_USER_ROOT"); + gspath = secure_getenv("WMAKER_USER_ROOT"); #else - gspath = getenv("GNUSTEP_USER_ROOT"); + gspath = getenv("WMAKER_USER_ROOT"); #endif if (gspath) { gspath = wexpandpath(gspath); @@ -69,7 +69,7 @@ const char *wusergnusteppath() path = gspath; return path; } - wwarning(_("variable GNUSTEP_USER_ROOT defined with invalid path, not used")); + wwarning(_("variable WMAKER_USER_ROOT defined with invalid path, not used")); } h = wgethomedir(); diff --git a/WINGs/wapplication.c b/WINGs/wapplication.c index 39b37d96..a4a7c16c 100644 --- a/WINGs/wapplication.c +++ b/WINGs/wapplication.c @@ -140,7 +140,7 @@ char *WMPathForResourceOfType(const char *resource, const char *ext) * Paths are searched in this order: * - resourcePath/ext * - dirname(argv[0])/ext - * - GNUSTEP_USER_ROOT/Applications/ApplicationName.app/ext + * - WMAKER_USER_ROOT/Applications/ApplicationName.app/ext * - ~/GNUstep/Applications/ApplicationName.app/ext * - GNUSTEP_LOCAL_ROOT/Applications/ApplicationName.app/ext * - /usr/local/GNUstep/Applications/ApplicationName.app/ext @@ -175,7 +175,7 @@ char *WMPathForResourceOfType(const char *resource, const char *ext) if (snprintf(appdir, slen, "Applications/%s.app", WMApplication.applicationName) >= slen) goto out; - path = checkFile(getenv("GNUSTEP_USER_ROOT"), appdir, ext, resource); + path = checkFile(getenv("WMAKER_USER_ROOT"), appdir, ext, resource); if (path) goto out; diff --git a/WindowMaker/menu.fy.in b/WindowMaker/menu.fy.in index 46a12aec..1ebe5542 100644 --- a/WindowMaker/menu.fy.in +++ b/WindowMaker/menu.fy.in @@ -76,7 +76,7 @@ * * // Brûk #usergnusteppath# as tydlike oantsjutting foar it paad nei de * // brûkers-GNUstep-map. Window Maker sil dy ferfange mei de wearde - * // fan GNUSTEP_USER_ROOT, at dizze omjouwingsfariabele ynsteld is, of + * // fan WMAKER_USER_ROOT, at dizze omjouwingsfariabele ynsteld is, of * // oars "~/GNUstep" * * is it út te fieren programma. diff --git a/WindowMaker/menu.in b/WindowMaker/menu.in index f8a209c8..f9698d91 100644 --- a/WindowMaker/menu.in +++ b/WindowMaker/menu.in @@ -76,7 +76,7 @@ * * // Use #usergnusteppath# as a placeholder for the path to the user * // GNUstep directory. Window Maker will replace this with the value - * // of GNUSTEP_USER_ROOT, if this environment variable is set, or + * // of WMAKER_USER_ROOT, if this environment variable is set, or * // "~/GNUstep" otherwise * * is the program to execute. diff --git a/WindowMaker/menu.nl.in b/WindowMaker/menu.nl.in index d66010c9..10ed9510 100644 --- a/WindowMaker/menu.nl.in +++ b/WindowMaker/menu.nl.in @@ -76,7 +76,7 @@ * * // Gebruik #usergnusteppath# als tijdelijke aanduiding voor het pad naar de * // gebruikers-GNUstep-map. Window Maker zal die vervangen met de waarde - * // van GNUSTEP_USER_ROOT, als deze omgevingsvariabele is ingesteld, of + * // van WMAKER_USER_ROOT, als deze omgevingsvariabele is ingesteld, of * // anders "~/GNUstep" * * is het uit te voeren programma. diff --git a/debian/debianfiles/wmaker b/debian/debianfiles/wmaker index eccc6424..a121128b 100644 --- a/debian/debianfiles/wmaker +++ b/debian/debianfiles/wmaker @@ -2,8 +2,8 @@ set -e -[ -n "$GNUSTEP_USER_ROOT" ] || export GNUSTEP_USER_ROOT="$HOME/GNUstep" -gs_base="$GNUSTEP_USER_ROOT" +[ -n "$WMAKER_USER_ROOT" ] || export WMAKER_USER_ROOT="$HOME/GNUstep" +gs_base="$WMAKER_USER_ROOT" gs_defaults="$gs_base/Defaults" gs_system_defaults=/etc/GNUstep/Defaults wm_base="$gs_base/Library/WindowMaker" diff --git a/doc/cs/geticonset.1 b/doc/cs/geticonset.1 index 34c8397c..49a93891 100644 --- a/doc/cs/geticonset.1 +++ b/doc/cs/geticonset.1 @@ -18,12 +18,12 @@ vyp .B \-\-version vype slo verze .SH PROMNN PROSTED -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifikuje cestu k adresi Defaults. etzec "Defaults/" je pidn k tto promnn, m se ur umstn databz. Jakmile promnn nen nastaven, tak jej implicitn hodnota je "~/GNUstep" .SH SOUBORY -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes Toto je soubor, kter se zape. .SH PODVEJTE SE TAK .BR seticons (1), diff --git a/doc/cs/getstyle.1 b/doc/cs/getstyle.1 index 93ae9656..706c184e 100644 --- a/doc/cs/getstyle.1 +++ b/doc/cs/getstyle.1 @@ -50,12 +50,12 @@ Tato volba je v¾dy nastavená, jakmile je pou¾itá volba \-p. vytvoøí balík s tématem v adresáøi nazvaným podla jména tématu s pøíponou .themed. .SH PROMÌNNÉ PROSTØEDÍ -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifikuje cestu k adresáøi Defaults. Øetìzec "Defaults/" je pøidán k této promìnné, èím¾ se urèí umístìní databází. Jakmile promìnná není nastavená, tak její implicitní hodnota je "~/GNUstep" .SH SOUBORY -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker Toto je soubor, který se zapí¹e. .SH PODÍVEJTE SE TAKÉ .BR setstyle (1), diff --git a/doc/cs/seticons.1 b/doc/cs/seticons.1 index c9782e76..228fd3fb 100644 --- a/doc/cs/seticons.1 +++ b/doc/cs/seticons.1 @@ -20,12 +20,12 @@ vyp .B \-\-version vype slo verze .SH PROMNN PROSTED -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifikuje cestu k adresi Defaults. etzec "Defaults/" je pidn k tto promnn, m se ur umstn databz. Jakmile promnn nen nastaven, tak jej implicitn hodnota je "~/GNUstep" .SH SOUBORY -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes Toto je soubor, kter se zape. .SH PODVEJTE SE TAK .BR geticonset (1), diff --git a/doc/cs/setstyle.1 b/doc/cs/setstyle.1 index 35b76c2c..f423f5d6 100644 --- a/doc/cs/setstyle.1 +++ b/doc/cs/setstyle.1 @@ -38,12 +38,12 @@ vypí¹e nápovìdu .B \-\-version vypí¹e èíslo verze .SH PROMìNNÉ PROSTØEDÍ -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifikuje cestu k adresáøi Defaults. Øetìzec "Defaults/" je pøidán k této promìnné, èím¾ se urèí umístìní databází. Jakmile promìnná není nastavená, tak její implicitní hodnota je "~/GNUstep" .SH SOUBORY -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker Toto je soubor, který se zapí¹e. .SH PODÍVEJTE SE TAKÉ .BR getstyle (1), diff --git a/doc/cs/wdwrite.1 b/doc/cs/wdwrite.1 index 10d6408b..281eaf4f 100644 --- a/doc/cs/wdwrite.1 +++ b/doc/cs/wdwrite.1 @@ -23,12 +23,12 @@ vyp .B \-\-version vype slo verze .SH PROMNN PROSTED -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifikuje cestu k adresi Defaults. etzec "Defaults/" je pidn k tto promnn, m se ur umstn databz. Jakmile promnn nen nastaven, tak jej implicitn hodnota je "~/GNUstep" .SH SOUBORY -Domny se nachzej v GNUSTEP_USER_ROOT/Defaults/ +Domny se nachzej v WMAKER_USER_ROOT/Defaults/ .SH PODVEJTE SE TAK .BR wmaker (1) .SH AUTOR diff --git a/doc/cs/wmaker.1 b/doc/cs/wmaker.1 index 81bc6417..d041fe5b 100644 --- a/doc/cs/wmaker.1 +++ b/doc/cs/wmaker.1 @@ -110,7 +110,7 @@ Styly spolo .B /usr/share/WindowMaker/Themes/ A te to zkuste sami... ;-) .SH PROMNN PROSED -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifikuje cestu k adresi Defaults. "Defaults/" je pidn k tto promnn, m se ur umstn databz. Pokud promnn nen nastaven, ta jej implicitn hodnota je "~/GNUstep" diff --git a/doc/geticonset.1 b/doc/geticonset.1 index 61e2cb78..a4134e63 100644 --- a/doc/geticonset.1 +++ b/doc/geticonset.1 @@ -20,12 +20,12 @@ print a help message with the list of options .B \-\-version print the version of Window Maker from which the program comes .SH ENVIRONMENT -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifies the initial path for the Defaults directory. "Defaults/" is appended to this variable to determine the actual location of the databases. If the variable is not set, it defaults to "~/GNUstep" .SH FILES -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes is the actual file that's read. .SH SEE ALSO .BR seticons (1), diff --git a/doc/getstyle.1 b/doc/getstyle.1 index 3048bebd..58ed1318 100644 --- a/doc/getstyle.1 +++ b/doc/getstyle.1 @@ -55,12 +55,12 @@ along with any user-definable mouse cursor settings that are present. .SH ENVIRONMENT -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifies the initial path for the Defaults directory. "Defaults/" is appended to this variable to determine the actual location of the databases. If the variable is not set, it defaults to "~/GNUstep" .SH FILES -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker This is the actual file that gets written. .SH SEE ALSO .BR setstyle (1), diff --git a/doc/ru/geticonset.1 b/doc/ru/geticonset.1 index 1842b777..f5d3bd07 100644 --- a/doc/ru/geticonset.1 +++ b/doc/ru/geticonset.1 @@ -18,12 +18,12 @@ geticonset \- считывает данные о наборе иконок Windo .B \-\-version Выводит номер версии. .SH "ОКРУЖЕНИЕ" -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT Указывает начальный путь к папке Defaults. "Defaults/" приписывается к этой переменной, чтобы определить настоящее расположение данных. Если переменная не установлена, то её значение: "~/GNUstep". .SH "ФАЙЛЫ" -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes Файл, из которого читаются данные. .SH "СМОТРИ ТАКЖЕ" .BR seticons (1), diff --git a/doc/ru/getstyle.1 b/doc/ru/getstyle.1 index 72037a0d..c3ce78fc 100644 --- a/doc/ru/getstyle.1 +++ b/doc/ru/getstyle.1 @@ -50,12 +50,12 @@ getstyle \- делает дамп темы оформления Window Maker. суффикса .themed. .SH "ОКРУЖЕНИЕ" -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT Указывает начальный путь к папке Defaults. "Defaults/" приписывается к этой переменной, чтобы определить настоящее расположение данных. Если переменная не установлена, то её значение: "~/GNUstep". .SH "ФАЙЛЫ" -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker В указанный файл идёт запись данных. .SH "СМОТРИ ТАКЖЕ" .BR setstyle (1), diff --git a/doc/ru/seticons.1 b/doc/ru/seticons.1 index 81956b1b..d37bba0b 100644 --- a/doc/ru/seticons.1 +++ b/doc/ru/seticons.1 @@ -20,12 +20,12 @@ seticons \- устанавливает набор иконок Window Maker. .B \-\-version Выводит номер версии. .SH "ОКРУЖЕНИЕ" -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT Указывает начальный путь к папке Defaults. "Defaults/" приписывается к этой переменной, чтобы определить настоящее расположение данных. Если переменная не установлена, то её значение: "~/GNUstep". .SH "ОКРУЖЕНИЕ" -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes Это файл, в который идёт запись. .SH "СМОТРИ ТАКЖЕ" .BR geticonset (1), diff --git a/doc/ru/setstyle.1 b/doc/ru/setstyle.1 index 53548fe0..fa25c654 100644 --- a/doc/ru/setstyle.1 +++ b/doc/ru/setstyle.1 @@ -41,12 +41,12 @@ setstyle \- устанавливает опции связанные со сти .B \-\-version Вывести номер версии .SH "ОКРУЖЕНИЕ" -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT Указывает начальный путь к папке Defaults. "Defaults/" приписывается к этой переменной, чтобы определить настоящее расположение данных. Если переменная не установлена, то её значение: "~/GNUstep". .SH "ФАЙЛЫ" -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker Это файл с которым идёт взаимодействие. .SH "СМОТРИ ТАКЖЕ" .BR getstyle (1), diff --git a/doc/ru/wdwrite.1 b/doc/ru/wdwrite.1 index 39d786ee..fd819853 100644 --- a/doc/ru/wdwrite.1 +++ b/doc/ru/wdwrite.1 @@ -23,12 +23,12 @@ wdwrite \- записывает пары ключ/значение в домен .B \-\-version Вывести номер версии. .SH "ОКРУЖЕНИЕ" -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT Указывает начальный путь к папке Defaults. "Defaults/" приписывается к этой переменной, чтобы определить настоящее расположение данных. Если переменная не установлена, то её значение: "~/GNUstep". .SH "ФАЙЛЫ" -Домены находятся в директории GNUSTEP_USER_ROOT/Defaults/ . +Домены находятся в директории WMAKER_USER_ROOT/Defaults/ . .SH "СМОТРИ ТАКЖЕ" .BR wmaker (1) .SH "АВТОРЫ" diff --git a/doc/ru/wmaker.1 b/doc/ru/wmaker.1 index ab670823..1ff4e8fd 100644 --- a/doc/ru/wmaker.1 +++ b/doc/ru/wmaker.1 @@ -108,7 +108,7 @@ Window Maker это оконный менеджер для X11 эмулирую .B /usr/share/WindowMaker/Themes/ Угадайте… ;-) .SH "ОКРУЖЕНИЕ" -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT Указывает начальный путь к папке Defaults. "Defaults/" приписывается к этой переменной, чтобы определить настоящее расположение данных. Если переменная не установлена, то её значение: "~/GNUstep". diff --git a/doc/seticons.1 b/doc/seticons.1 index aa1d61b1..d08d4ee5 100644 --- a/doc/seticons.1 +++ b/doc/seticons.1 @@ -22,12 +22,12 @@ print a help message with the list of options .B \-\-version print the version of Window Maker from which the program comes .SH ENVIRONMENT -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifies the initial path for the Defaults directory. "Defaults/" is appended to this variable to determine the actual location of the databases. If the variable is not set, it defaults to "~/GNUstep" .SH FILES -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes This is the actual file that's written. .SH SEE ALSO .BR geticonset (1), diff --git a/doc/setstyle.1 b/doc/setstyle.1 index 8b3d5195..f46dd188 100644 --- a/doc/setstyle.1 +++ b/doc/setstyle.1 @@ -43,12 +43,12 @@ ignore font related options from the style file .B \-\-version print the version of Window Maker from which the program comes. .SH ENVIRONMENT -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifies the initial path for the Defaults directory. "Defaults/" is appended to this variable to determine the actual location of the databases. If the variable is not set, it defaults to "~/GNUstep" .SH FILES -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker This is the actual file that's written. .SH SEE ALSO .BR getstyle (1), diff --git a/doc/sk/geticonset.1 b/doc/sk/geticonset.1 index 0f50316d..e20b3858 100644 --- a/doc/sk/geticonset.1 +++ b/doc/sk/geticonset.1 @@ -18,12 +18,12 @@ vyp .B \-\-version vype slo verzie .SH PREMENN PROSTREDIA -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT pecifikuje cestu k adresru Defaults. "Defaults/" je pridan k tejto premennej, m sa ur umiestnenie databz. Ak premenn nie je nastaven, jej implicitn hodnota je "~/GNUstep" .SH SBORY -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes Toto je sbor, ktor sa zape. .SH POZRI TIE .BR seticons (1), diff --git a/doc/sk/getstyle.1 b/doc/sk/getstyle.1 index 54b8ee20..8542be23 100644 --- a/doc/sk/getstyle.1 +++ b/doc/sk/getstyle.1 @@ -50,12 +50,12 @@ Táto voµba je v¾dy nastavená, ak je pou¾itá voµba \-p. vytvorí balík s témou v adresári nazvanom podµa mena témy s príponou .themed. .SH PREMENNÉ PROSTREDIA -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT ¹pecifikuje cestu k adresáru Defaults. "Defaults/" je pridané k tejto premennej, èím sa urèí umiestnenie databáz. Ak premenná nie je nastavená, jej implicitná hodnota je "~/GNUstep" .SH SÚBORY -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker Toto je súbor, ktorý sa zapí¹e. .SH POZRI TIE® .BR setstyle (1), diff --git a/doc/sk/seticons.1 b/doc/sk/seticons.1 index 3276a54d..e55ba17e 100644 --- a/doc/sk/seticons.1 +++ b/doc/sk/seticons.1 @@ -20,12 +20,12 @@ vyp .B \-\-version vype slo verzie .SH PREMENN PROSTREDIA -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT pecifikuje cestu k adresru Defaults. "Defaults/" je pridan k tejto premennej, m sa ur umiestnenie databz. Ak premenn nie je nastaven, jej implicitn hodnota je "~/GNUstep" .SH SBORY -.IP GNUSTEP_USER_ROOT/Defaults/WMWindowAttributes +.IP WMAKER_USER_ROOT/Defaults/WMWindowAttributes Toto je sbor, ktor sa zape. .SH POZRI TIE .BR geticonset (1), diff --git a/doc/sk/setstyle.1 b/doc/sk/setstyle.1 index 2be89a4e..1fb9193e 100644 --- a/doc/sk/setstyle.1 +++ b/doc/sk/setstyle.1 @@ -39,12 +39,12 @@ vypí¹e pomocný text .B \-\-version vypí¹e èíslo verzie .SH PREMENNÉ PROSTREDIA -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT ¹pecifikuje cestu k adresáru Defaults. "Defaults/" je pridané k tejto premennej, èím sa urèí umiestnenie databáz. Ak premenná nie je nastavená, jej implicitná hodnota je "~/GNUstep" .SH SÚBORY -.IP GNUSTEP_USER_ROOT/Defaults/WindowMaker +.IP WMAKER_USER_ROOT/Defaults/WindowMaker Toto je súbor, ktorý sa zapí¹e. .SH POZRI TIE® .BR getstyle (1), diff --git a/doc/sk/wdwrite.1 b/doc/sk/wdwrite.1 index 6d84f9b4..4bc2ae72 100644 --- a/doc/sk/wdwrite.1 +++ b/doc/sk/wdwrite.1 @@ -23,12 +23,12 @@ vyp .B \-\-version vype slo verzie .SH PREMENN PROSTREDIA -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT pecifikuje cestu k adresru Defaults. "Defaults/" je pridan k tejto premennej, m sa ur umiestnenie databz. Ak premenn nie je nastaven, jej implicitn hodnota je "~/GNUstep" .SH SBORY -Domny sa nachdzaj v GNUSTEP_USER_ROOT/Defaults/ +Domny sa nachdzaj v WMAKER_USER_ROOT/Defaults/ .SH POZRI TIE .BR wmaker (1) .SH AUTOR diff --git a/doc/sk/wmaker.1 b/doc/sk/wmaker.1 index 9f1e9810..8852ccca 100644 --- a/doc/sk/wmaker.1 +++ b/doc/sk/wmaker.1 @@ -110,7 +110,7 @@ a tu. .B /usr/share/WindowMaker/Themes/ Teraz to sks sm... ;-) .SH PREMENN PROSTREDIA -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT pecifikuje cestu k adresru Defaults. "Defaults/" je pridan k tejto premennej, m sa ur umiestnenie databz. Ak premenn nie je nastaven, jej implicitn hodnota je "~/GNUstep" diff --git a/doc/wdwrite.1 b/doc/wdwrite.1 index fe33b472..2a9e07ce 100644 --- a/doc/wdwrite.1 +++ b/doc/wdwrite.1 @@ -23,12 +23,12 @@ print a help message with the list of options .B \-\-version print the version of Window Maker from which the program comes .SH ENVIRONMENT -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifies the initial path for the Defaults directory. "Defaults/" is appended to this variable to determine the actual location of the databases. If the variable is not set, it defaults to "~/GNUstep" .SH FILES -The domains reside in GNUSTEP_USER_ROOT/Defaults/ +The domains reside in WMAKER_USER_ROOT/Defaults/ .SH SEE ALSO .BR wdread (1), .BR wmaker (1) diff --git a/doc/wmaker.in b/doc/wmaker.in index 8fd01a2c..1016ef76 100644 --- a/doc/wmaker.in +++ b/doc/wmaker.in @@ -136,7 +136,7 @@ System wide styles are here .B @pkgdatadir@/Themes/ Guess... ;-) .SH ENVIRONMENT -.IP GNUSTEP_USER_ROOT +.IP WMAKER_USER_ROOT specifies the initial path for the Defaults directory. "Defaults/" is appended to this variable to determine the actual location of the databases. If the variable is not set, it defaults to "~/GNUstep" diff --git a/util/wmaker.inst.in b/util/wmaker.inst.in index 2e3f3ef7..0900dbe3 100644 --- a/util/wmaker.inst.in +++ b/util/wmaker.inst.in @@ -62,7 +62,7 @@ copy() { if [ "$file" = "WindowMaker" ]; then sed -e "s|~/GNUstep|$GSDIR|g" "$source" > "$target" else - if test "x$GNUSTEP_USER_ROOT" != "x"; then + if test "x$WMAKER_USER_ROOT" != "x"; then sed -e "s|\$HOME/GNUstep|$GSDIR|g" \ "$source" > "$target" fi @@ -97,7 +97,7 @@ if [ ! -d "$USERDIR" ]; then fi -if test "x$GNUSTEP_USER_ROOT" = "x"; then +if test "x$WMAKER_USER_ROOT" = "x"; then cd "$USERDIR" GSDIR="$USERDIR/GNUstep" if [ ! -d "$GSDIR" ]; then @@ -105,11 +105,11 @@ if test "x$GNUSTEP_USER_ROOT" = "x"; then make_dir "$GSDIR" fi else - GSDIR="$GNUSTEP_USER_ROOT" + GSDIR="$WMAKER_USER_ROOT" if [ ! -d "$GSDIR" ]; then # in this case, and in this case only, mkdir needs -p option mkdir -p $GSDIR || { - echo "Directory specified in GNUSTEP_USER_ROOT environment variable does not exist and could not be created" + echo "Directory specified in WMAKER_USER_ROOT environment variable does not exist and could not be created" exit 1 } chmod +rwx $GSDIR || exit 1