#!/bin/sh
+# Copyright (C) 2002 Daiki Ueno
+#
+# This file is part of Liece.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with GNU Emacs; see the file COPYING. If not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+# Prepare user settings for GNU Emacs.
+# If you are using XEmacs, you don't need to run this script.
+
EMACS=${EMACS-emacs}
custom=`cat <<'EOF'
(custom-set-variables
- '(liece-intl-catalogue-directory "@pkgdatadir@/locale" nil (liece))
- '(liece-window-style-directory "@pkgdatadir@/styles" nil (liece))
- '(liece-icon-directory "@pkgdatadir@/icons" nil (liece)))
+ '(liece-intl-catalogue-directory "@pkgdatadir@/locale" nil (liece)
+ "Default location of Liece message catalogs.")
+ '(liece-window-style-directory "@pkgdatadir@/styles" nil (liece)
+ "Default location of Liece style files.")
+ '(liece-icon-directory "@pkgdatadir@/icons" nil (liece)
+ "Default location of Liece icon files."))
EOF`
$EMACS -eval "$custom" -l cus-edit -f Custom-save -f kill-emacs