OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gtk2?expand=0&rev=35beada6281afd8fa48c314799c4e0b7
36 lines
1.6 KiB
Plaintext
36 lines
1.6 KiB
Plaintext
# RPM macros for packages installing a GTK+ IM module
|
|
#
|
|
###
|
|
#
|
|
# When a package installs a GTK+ IM module, it should use all
|
|
# three macros:
|
|
#
|
|
# - %gtk2_immodule_requires in the preamble
|
|
# - %gtk2_immodule_post in %post
|
|
# - %gtk2_immodule_postun in %postun
|
|
#
|
|
###
|
|
|
|
%gtk2_immodule_requires \
|
|
Requires(post): gtk2 \
|
|
Requires(postun): gtk2
|
|
|
|
# On install, update the cache
|
|
%gtk2_immodule_post \
|
|
%if "%_lib" == "lib64" \
|
|
%{_bindir}/gtk-query-immodules-2.0-64 > %{_sysconfdir}/gtk-2.0/gtk64.immodules \
|
|
%else \
|
|
%{_bindir}/gtk-query-immodules-2.0 > %{_sysconfdir}/gtk-2.0/gtk.immodules \
|
|
%endif
|
|
|
|
# On uninstall, update the cache. Note: we ignore upgrades (already
|
|
# handled in %post of the new package).
|
|
%gtk2_immodule_postun \
|
|
if [ $1 -eq 0 ]; then \
|
|
%if "%_lib" == "lib64" \
|
|
%{_bindir}/gtk-query-immodules-2.0-64 > %{_sysconfdir}/gtk-2.0/gtk64.immodules \
|
|
%else \
|
|
%{_bindir}/gtk-query-immodules-2.0 > %{_sysconfdir}/gtk-2.0/gtk.immodules \
|
|
%endif \
|
|
fi
|