diff options
author | Perberos <[email protected]> | 2011-12-01 22:49:12 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 22:49:12 -0300 |
commit | 781b0ff3f74abd6f5353b6d08763bbba93f2f21c (patch) | |
tree | 20c130b413586219356ec360efb5918a498cee69 /data/Makefile.am | |
download | mate-notification-daemon-781b0ff3f74abd6f5353b6d08763bbba93f2f21c.tar.bz2 mate-notification-daemon-781b0ff3f74abd6f5353b6d08763bbba93f2f21c.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'data/Makefile.am')
-rw-r--r-- | data/Makefile.am | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..4a80715 --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,58 @@ +icon16dir = $(datadir)/icons/hicolor/16x16/apps +icon22dir = $(datadir)/icons/hicolor/22x22/apps +icon24dir = $(datadir)/icons/hicolor/24x24/apps +icon32dir = $(datadir)/icons/hicolor/32x32/apps +icon48dir = $(datadir)/icons/hicolor/48x48/apps +iconscalabledir = $(datadir)/icons/hicolor/scalable/apps + +icon16_DATA = icons/16x16/mate-notification-properties.png +icon22_DATA = icons/22x22/mate-notification-properties.png +icon24_DATA = icons/24x24/mate-notification-properties.png +icon32_DATA = icons/32x32/mate-notification-properties.png +icon48_DATA = icons/48x48/mate-notification-properties.png +iconscalable_DATA = icons/scalable/mate-notification-properties.svg + + +servicedir = $(DBUS_SERVICES_DIR) +service_DATA = org.freedesktop.mate.Notifications.service + +schemasdir = $(MATECONF_SCHEMA_FILE_DIR) +schemas_in_files = mate-notification-daemon.schemas.in +schemas_DATA = $(schemas_in_files:.schemas.in=.schemas) + +@INTLTOOL_SCHEMAS_RULE@ + +if MATECONF_SCHEMAS_INSTALL +install-data-local: + MATECONF_CONFIG_SOURCE=$(MATECONF_SCHEMA_CONFIG_SOURCE) $(MATECONFTOOL) --makefile-install-rule $(schemas_DATA) +else +install-data-local: +endif + +EXTRA_DIST = \ + $(schemas_in_files) \ + $(service_DATA) \ + $(icon16_DATA) \ + $(icon22_DATA) \ + $(icon24_DATA) \ + $(icon32_DATA) \ + $(icon48_DATA) \ + $(iconscalable_DATA) + +CLEANFILES = $(schemas_DATA) + + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +install-data-hook: update-icon-cache +uninstall-hook: update-icon-cache +update-icon-cache: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + +-include $(top_srcdir)/git.mk |