gimp/user_install
Michael Natterer 737aa1a0de corrected a typo
1999-03-25  Michael Natterer  <mitschel@cs.tu-berlin.de>

	* unitrc: corrected a typo

	* app/commands.c
	* app/global_edit.c
	* app/gradient.c
	* app/interface.[ch]
	* app/palette.c
	* app/paths_dialog.c: the query_[string|..]_boxes connect their
	close callback to a user provided signal now.

	* libgimp/gimpimage.c: gimp_image_get_unit() doesn't need a
	g_return_if_fail()

	* libgimp/gimpunitmenu.c: memory leak & compiler warning

	* configure.in
	* gimprc.in
	* user_install
	* user_install.bat
	* plug-ins/Makefile.am
	* plug-ins/FractalExplorer/*: added the FractalExplorer plugin.

	* app/install.c: ditto and made the install help text more
	editable by moving it to an array.
1999-03-25 23:14:36 +00:00

50 lines
1.1 KiB
Bash
Executable file

#!/bin/sh
# Script to perform the default installation steps for the
# specified user home directory.
#
# 1) Create ~/.gimp if it doesn't exist
# 2) Copy system gimprc file to ~/.gimp
# 3) Create brushes, gradients, palettes, patterns, plug-ins subdirs
# 4) Create the tmp subdirectory for disk-swapping undo buffers
# 5) Copy the palette files in system palette directory
#
echo "mkdir $2"
mkdir $2
echo "cp $1/gimprc_user $2/gimprc"
cp $1/gimprc_user $2/gimprc
echo "cp $1/unitrc $2/unitrc"
cp $1/unitrc $2/unitrc
echo "cp $1/gtkrc $2/gtkrc"
cp $1/gtkrc $2/gtkrc
echo "mkdir $2/brushes"
mkdir $2/brushes
echo "mkdir $2/gradients"
mkdir $2/gradients
echo "mkdir $2/palettes"
mkdir $2/palettes
echo "mkdir $2/patterns"
mkdir $2/patterns
echo "mkdir $2/plug-ins"
mkdir $2/plug-ins
echo "mkdir $2/modules"
mkdir $2/modules
echo "mkdir $2/scripts"
mkdir $2/scripts
echo "mkdir $2/tmp"
mkdir $2/tmp
echo "mkdir $2/gfig"
mkdir $2/gfig
echo "mkdir $2/gflares"
mkdir $2/gflares
echo "mkdir $2/fractalexplorer"
mkdir $2/fractalexplorer
echo "cp $1/palettes/* $2/palettes"
cp $1/palettes/* $2/palettes