summaryrefslogtreecommitdiffstats
path: root/main/libgnome/libgnome.post-install
blob: 89ba3aca5ed80db9f0def107aca131f2adbf9cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

for i in \
	desktop_gnome_accessibility_keyboard.schemas \
	desktop_gnome_accessibility_startup.schemas \
	desktop_gnome_applications_at_mobility.schemas \
	desktop_gnome_applications_at_visual.schemas \
	desktop_gnome_applications_browser.schemas \
	desktop_gnome_applications_office.schemas \
	desktop_gnome_applications_terminal.schemas \
	desktop_gnome_applications_window_manager.schemas \
	desktop_gnome_background.schemas \
	desktop_gnome_file_views.schemas \
	desktop_gnome_interface.schemas \
	desktop_gnome_lockdown.schemas \
	desktop_gnome_peripherals_keyboard.schemas \
	desktop_gnome_peripherals_mouse.schemas \
	desktop_gnome_sound.schemas \
	desktop_gnome_thumbnail_cache.schemas \
	desktop_gnome_thumbnailers.schemas \
	desktop_gnome_typing_break.schemas \
; do
	echo "Installing GConf2 schema $i."
	GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
		/usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i > /dev/null
done