# This Makefile.am is in the public domain theme=hicolor themedir="$(datadir)/icons/$(theme)" theme_icons = \ status,gnunet-fs-gtk-ns-association.svg \ status,gnunet-fs-gtk-ns-association-16.png \ apps,gnunet-fs-gtk.svg \ apps,gnunet-fs-gtk-16.png \ apps,gnunet-fs-gtk-22.png \ apps,gnunet-fs-gtk-24.png \ apps,gnunet-fs-gtk-32.png # Theme icons needed (#3419) # gnunet-conversation-gtk-tray-call-incoming -- our phone is ringing # gnunet-conversation-gtk-tray-available -- online, waiting for calls # gnunet-conversation-offline -- phone is offline (no ego, error) # gnunet-conversation-call-active -- we are on the phone # gnunet-conversation-call-on-hold -- we are on hold # gnunet-conversation-gtk-tray-call-pending -- resolving target # gnunet-conversation-gtk-tray-call-ringing -- target phone is ringing pkgpixdir= $(pkgdatadir) install_icon_exec=${top_srcdir}/pixmaps/icon-theme-installer -d "x${DESTDIR}" -t ${theme} -s ${srcdir} -b ${themedir} -m "${mkinstalldirs}" -x "${INSTALL_DATA}" install-data-local: $(mkinstalldirs) $(DESTDIR)$(pkgpixdir) @$(NORMAL_INSTALL) for pixmap in $(srcdir)/pixmaps/*.{png,svg}; do \ if test -f $$pixmap; then \ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgpixdir); \ fi \ done $(install_icon_exec) -i "${theme_icons}" dist-hook: mkdir $(distdir)/pixmaps; \ for pixmap in $(srcdir)/pixmaps/*.{png,svg}; do \ if test -f $$pixmap; then \ cp -p $$pixmap $(distdir)/pixmaps; \ fi \ done uninstall-hook: $(install_icon_exec) -u "${theme_icons}" pkgdata_DATA = \ gnunet_logo.png MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = $(pkgdata_DATA) \ gnunet-fs-gtk-ns-association.svg \ gnunet-fs-gtk-ns-association-16.png \ gnunet-fs-gtk.svg \ gnunet-fs-gtk-16.png gnunet-fs-gtk-22.png gnunet-fs-gtk-24.png gnunet-fs-gtk-32.png\ icon-theme-installer