diff --git a/color.go b/color.go index 97b623e..f4180a9 100644 --- a/color.go +++ b/color.go @@ -50,16 +50,16 @@ func ShowBeads(mw *MyMainWindow, serie string) { bead.InfoTooltip.SetText(bead.info, "Approx. "+fmt.Sprint(s.onHand)+" left on hand") bead.WarningTooltip.SetText(bead.warning, "Only "+fmt.Sprint(s.onHand)+" left on hand") bead.ErrorTooltip.SetText(bead.error, "Out of stock") - if s.onHand <= 200 { + if s.onHand <= 200 && s.inStock { bead.warning.SetVisible(true) bead.info.SetVisible(false) bead.error.SetVisible(false) - } else { + } else if s.onHand > 200 && s.inStock { bead.warning.SetVisible(false) bead.info.SetVisible(true) bead.error.SetVisible(false) } - if s.onHand <= 0 { + if s.onHand <= 0 || !s.inStock { bead.warning.SetVisible(false) bead.info.SetVisible(false) bead.error.SetVisible(true) diff --git a/images/16x16/actions/address-book-new.png b/images/16x16/actions/address-book-new.png new file mode 100644 index 0000000..2098cfd Binary files /dev/null and b/images/16x16/actions/address-book-new.png differ diff --git a/images/16x16/actions/appointment-new.png b/images/16x16/actions/appointment-new.png new file mode 100644 index 0000000..18b7c67 Binary files /dev/null and b/images/16x16/actions/appointment-new.png differ diff --git a/images/16x16/actions/bookmark-new.png b/images/16x16/actions/bookmark-new.png new file mode 100644 index 0000000..6cf6443 Binary files /dev/null and b/images/16x16/actions/bookmark-new.png differ diff --git a/images/16x16/actions/contact-new.png b/images/16x16/actions/contact-new.png new file mode 100644 index 0000000..46573ff Binary files /dev/null and b/images/16x16/actions/contact-new.png differ diff --git a/images/16x16/actions/document-new.png b/images/16x16/actions/document-new.png new file mode 100644 index 0000000..4c3efdd Binary files /dev/null and b/images/16x16/actions/document-new.png differ diff --git a/images/16x16/actions/document-open.png b/images/16x16/actions/document-open.png new file mode 100644 index 0000000..ab94046 Binary files /dev/null and b/images/16x16/actions/document-open.png differ diff --git a/images/16x16/actions/document-print-preview.png b/images/16x16/actions/document-print-preview.png new file mode 100644 index 0000000..ab92a30 Binary files /dev/null and b/images/16x16/actions/document-print-preview.png differ diff --git a/images/16x16/actions/document-print.png b/images/16x16/actions/document-print.png new file mode 100644 index 0000000..35c37bd Binary files /dev/null and b/images/16x16/actions/document-print.png differ diff --git a/images/16x16/actions/document-properties.png b/images/16x16/actions/document-properties.png new file mode 100644 index 0000000..ab0e8ea Binary files /dev/null and b/images/16x16/actions/document-properties.png differ diff --git a/images/16x16/actions/document-save-as.png b/images/16x16/actions/document-save-as.png new file mode 100644 index 0000000..9bed143 Binary files /dev/null and b/images/16x16/actions/document-save-as.png differ diff --git a/images/16x16/actions/document-save.png b/images/16x16/actions/document-save.png new file mode 100644 index 0000000..22ff495 Binary files /dev/null and b/images/16x16/actions/document-save.png differ diff --git a/images/16x16/actions/edit-clear.png b/images/16x16/actions/edit-clear.png new file mode 100644 index 0000000..e6c8e8b Binary files /dev/null and b/images/16x16/actions/edit-clear.png differ diff --git a/images/16x16/actions/edit-copy.png b/images/16x16/actions/edit-copy.png new file mode 100644 index 0000000..8dd48c4 Binary files /dev/null and b/images/16x16/actions/edit-copy.png differ diff --git a/images/16x16/actions/edit-cut.png b/images/16x16/actions/edit-cut.png new file mode 100644 index 0000000..dc9eb9a Binary files /dev/null and b/images/16x16/actions/edit-cut.png differ diff --git a/images/16x16/actions/edit-delete.png b/images/16x16/actions/edit-delete.png new file mode 100644 index 0000000..ea03150 Binary files /dev/null and b/images/16x16/actions/edit-delete.png differ diff --git a/images/16x16/actions/edit-find-replace.png b/images/16x16/actions/edit-find-replace.png new file mode 100644 index 0000000..6edbef6 Binary files /dev/null and b/images/16x16/actions/edit-find-replace.png differ diff --git a/images/16x16/actions/edit-find.png b/images/16x16/actions/edit-find.png new file mode 100644 index 0000000..d072d3c Binary files /dev/null and b/images/16x16/actions/edit-find.png differ diff --git a/images/16x16/actions/edit-paste.png b/images/16x16/actions/edit-paste.png new file mode 100644 index 0000000..24588a3 Binary files /dev/null and b/images/16x16/actions/edit-paste.png differ diff --git a/images/16x16/actions/edit-redo.png b/images/16x16/actions/edit-redo.png new file mode 100644 index 0000000..c3b0df0 Binary files /dev/null and b/images/16x16/actions/edit-redo.png differ diff --git a/images/16x16/actions/edit-select-all.png b/images/16x16/actions/edit-select-all.png new file mode 100644 index 0000000..f4b0b19 Binary files /dev/null and b/images/16x16/actions/edit-select-all.png differ diff --git a/images/16x16/actions/edit-undo.png b/images/16x16/actions/edit-undo.png new file mode 100644 index 0000000..8b0fef9 Binary files /dev/null and b/images/16x16/actions/edit-undo.png differ diff --git a/images/16x16/actions/folder-new.png b/images/16x16/actions/folder-new.png new file mode 100644 index 0000000..628f4d5 Binary files /dev/null and b/images/16x16/actions/folder-new.png differ diff --git a/images/16x16/actions/format-indent-less.png b/images/16x16/actions/format-indent-less.png new file mode 100644 index 0000000..1787a7f Binary files /dev/null and b/images/16x16/actions/format-indent-less.png differ diff --git a/images/16x16/actions/format-indent-more.png b/images/16x16/actions/format-indent-more.png new file mode 100644 index 0000000..6bad6bb Binary files /dev/null and b/images/16x16/actions/format-indent-more.png differ diff --git a/images/16x16/actions/format-justify-center.png b/images/16x16/actions/format-justify-center.png new file mode 100644 index 0000000..207dc4c Binary files /dev/null and b/images/16x16/actions/format-justify-center.png differ diff --git a/images/16x16/actions/format-justify-fill.png b/images/16x16/actions/format-justify-fill.png new file mode 100644 index 0000000..663cbad Binary files /dev/null and b/images/16x16/actions/format-justify-fill.png differ diff --git a/images/16x16/actions/format-justify-left.png b/images/16x16/actions/format-justify-left.png new file mode 100644 index 0000000..d9b40a7 Binary files /dev/null and b/images/16x16/actions/format-justify-left.png differ diff --git a/images/16x16/actions/format-justify-right.png b/images/16x16/actions/format-justify-right.png new file mode 100644 index 0000000..c301307 Binary files /dev/null and b/images/16x16/actions/format-justify-right.png differ diff --git a/images/16x16/actions/format-text-bold.png b/images/16x16/actions/format-text-bold.png new file mode 100644 index 0000000..c9cb630 Binary files /dev/null and b/images/16x16/actions/format-text-bold.png differ diff --git a/images/16x16/actions/format-text-italic.png b/images/16x16/actions/format-text-italic.png new file mode 100644 index 0000000..977ea82 Binary files /dev/null and b/images/16x16/actions/format-text-italic.png differ diff --git a/images/16x16/actions/format-text-strikethrough.png b/images/16x16/actions/format-text-strikethrough.png new file mode 100644 index 0000000..ccee76e Binary files /dev/null and b/images/16x16/actions/format-text-strikethrough.png differ diff --git a/images/16x16/actions/format-text-underline.png b/images/16x16/actions/format-text-underline.png new file mode 100644 index 0000000..0c48721 Binary files /dev/null and b/images/16x16/actions/format-text-underline.png differ diff --git a/images/16x16/actions/go-bottom.png b/images/16x16/actions/go-bottom.png new file mode 100644 index 0000000..2c5a803 Binary files /dev/null and b/images/16x16/actions/go-bottom.png differ diff --git a/images/16x16/actions/go-down.png b/images/16x16/actions/go-down.png new file mode 100644 index 0000000..3dd7fcc Binary files /dev/null and b/images/16x16/actions/go-down.png differ diff --git a/images/16x16/actions/go-first.png b/images/16x16/actions/go-first.png new file mode 100644 index 0000000..9c15c09 Binary files /dev/null and b/images/16x16/actions/go-first.png differ diff --git a/images/16x16/actions/go-home.png b/images/16x16/actions/go-home.png new file mode 100644 index 0000000..a46fb22 Binary files /dev/null and b/images/16x16/actions/go-home.png differ diff --git a/images/16x16/actions/go-jump.png b/images/16x16/actions/go-jump.png new file mode 100644 index 0000000..1d218c3 Binary files /dev/null and b/images/16x16/actions/go-jump.png differ diff --git a/images/16x16/actions/go-last.png b/images/16x16/actions/go-last.png new file mode 100644 index 0000000..6e904ef Binary files /dev/null and b/images/16x16/actions/go-last.png differ diff --git a/images/16x16/actions/go-next.png b/images/16x16/actions/go-next.png new file mode 100644 index 0000000..6ef8de7 Binary files /dev/null and b/images/16x16/actions/go-next.png differ diff --git a/images/16x16/actions/go-previous.png b/images/16x16/actions/go-previous.png new file mode 100644 index 0000000..659cd90 Binary files /dev/null and b/images/16x16/actions/go-previous.png differ diff --git a/images/16x16/actions/go-top.png b/images/16x16/actions/go-top.png new file mode 100644 index 0000000..70f2c99 Binary files /dev/null and b/images/16x16/actions/go-top.png differ diff --git a/images/16x16/actions/go-up.png b/images/16x16/actions/go-up.png new file mode 100644 index 0000000..fa9a7d7 Binary files /dev/null and b/images/16x16/actions/go-up.png differ diff --git a/images/16x16/actions/list-add.png b/images/16x16/actions/list-add.png new file mode 100644 index 0000000..1aa7f09 Binary files /dev/null and b/images/16x16/actions/list-add.png differ diff --git a/images/16x16/actions/list-remove.png b/images/16x16/actions/list-remove.png new file mode 100644 index 0000000..00b654e Binary files /dev/null and b/images/16x16/actions/list-remove.png differ diff --git a/images/16x16/actions/mail-forward.png b/images/16x16/actions/mail-forward.png new file mode 100644 index 0000000..de0199b Binary files /dev/null and b/images/16x16/actions/mail-forward.png differ diff --git a/images/16x16/actions/mail-mark-junk.png b/images/16x16/actions/mail-mark-junk.png new file mode 100644 index 0000000..f12d452 Binary files /dev/null and b/images/16x16/actions/mail-mark-junk.png differ diff --git a/images/16x16/actions/mail-mark-not-junk.png b/images/16x16/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..87c425f Binary files /dev/null and b/images/16x16/actions/mail-mark-not-junk.png differ diff --git a/images/16x16/actions/mail-message-new.png b/images/16x16/actions/mail-message-new.png new file mode 100644 index 0000000..7c68cb8 Binary files /dev/null and b/images/16x16/actions/mail-message-new.png differ diff --git a/images/16x16/actions/mail-reply-all.png b/images/16x16/actions/mail-reply-all.png new file mode 100644 index 0000000..2017b0a Binary files /dev/null and b/images/16x16/actions/mail-reply-all.png differ diff --git a/images/16x16/actions/mail-reply-sender.png b/images/16x16/actions/mail-reply-sender.png new file mode 100644 index 0000000..a619741 Binary files /dev/null and b/images/16x16/actions/mail-reply-sender.png differ diff --git a/images/16x16/actions/mail-send-receive.png b/images/16x16/actions/mail-send-receive.png new file mode 100644 index 0000000..3eb6a9c Binary files /dev/null and b/images/16x16/actions/mail-send-receive.png differ diff --git a/images/16x16/actions/media-eject.png b/images/16x16/actions/media-eject.png new file mode 100644 index 0000000..2084067 Binary files /dev/null and b/images/16x16/actions/media-eject.png differ diff --git a/images/16x16/actions/media-playback-pause.png b/images/16x16/actions/media-playback-pause.png new file mode 100644 index 0000000..c8b4fe2 Binary files /dev/null and b/images/16x16/actions/media-playback-pause.png differ diff --git a/images/16x16/actions/media-playback-start.png b/images/16x16/actions/media-playback-start.png new file mode 100644 index 0000000..a7de0fe Binary files /dev/null and b/images/16x16/actions/media-playback-start.png differ diff --git a/images/16x16/actions/media-playback-stop.png b/images/16x16/actions/media-playback-stop.png new file mode 100644 index 0000000..ede2815 Binary files /dev/null and b/images/16x16/actions/media-playback-stop.png differ diff --git a/images/16x16/actions/media-record.png b/images/16x16/actions/media-record.png new file mode 100644 index 0000000..2f66cde Binary files /dev/null and b/images/16x16/actions/media-record.png differ diff --git a/images/16x16/actions/media-seek-backward.png b/images/16x16/actions/media-seek-backward.png new file mode 100644 index 0000000..ffcac31 Binary files /dev/null and b/images/16x16/actions/media-seek-backward.png differ diff --git a/images/16x16/actions/media-seek-forward.png b/images/16x16/actions/media-seek-forward.png new file mode 100644 index 0000000..4d7e2cd Binary files /dev/null and b/images/16x16/actions/media-seek-forward.png differ diff --git a/images/16x16/actions/media-skip-backward.png b/images/16x16/actions/media-skip-backward.png new file mode 100644 index 0000000..94381f5 Binary files /dev/null and b/images/16x16/actions/media-skip-backward.png differ diff --git a/images/16x16/actions/media-skip-forward.png b/images/16x16/actions/media-skip-forward.png new file mode 100644 index 0000000..758ec6f Binary files /dev/null and b/images/16x16/actions/media-skip-forward.png differ diff --git a/images/16x16/actions/process-stop.png b/images/16x16/actions/process-stop.png new file mode 100644 index 0000000..ab6808f Binary files /dev/null and b/images/16x16/actions/process-stop.png differ diff --git a/images/16x16/actions/system-lock-screen.png b/images/16x16/actions/system-lock-screen.png new file mode 100644 index 0000000..f7ea0cd Binary files /dev/null and b/images/16x16/actions/system-lock-screen.png differ diff --git a/images/16x16/actions/system-log-out.png b/images/16x16/actions/system-log-out.png new file mode 100644 index 0000000..0010931 Binary files /dev/null and b/images/16x16/actions/system-log-out.png differ diff --git a/images/16x16/actions/system-search.png b/images/16x16/actions/system-search.png new file mode 100644 index 0000000..fd7f0b0 Binary files /dev/null and b/images/16x16/actions/system-search.png differ diff --git a/images/16x16/actions/system-shutdown.png b/images/16x16/actions/system-shutdown.png new file mode 100644 index 0000000..afe62de Binary files /dev/null and b/images/16x16/actions/system-shutdown.png differ diff --git a/images/16x16/actions/tab-new.png b/images/16x16/actions/tab-new.png new file mode 100644 index 0000000..3e590f6 Binary files /dev/null and b/images/16x16/actions/tab-new.png differ diff --git a/images/16x16/actions/view-fullscreen.png b/images/16x16/actions/view-fullscreen.png new file mode 100644 index 0000000..ffdabd4 Binary files /dev/null and b/images/16x16/actions/view-fullscreen.png differ diff --git a/images/16x16/actions/view-refresh.png b/images/16x16/actions/view-refresh.png new file mode 100644 index 0000000..3fd71d6 Binary files /dev/null and b/images/16x16/actions/view-refresh.png differ diff --git a/images/16x16/actions/window-new.png b/images/16x16/actions/window-new.png new file mode 100644 index 0000000..0e12ef9 Binary files /dev/null and b/images/16x16/actions/window-new.png differ diff --git a/images/16x16/animations/process-working.png b/images/16x16/animations/process-working.png new file mode 100644 index 0000000..984bde4 Binary files /dev/null and b/images/16x16/animations/process-working.png differ diff --git a/images/16x16/apps/Makefile.am b/images/16x16/apps/Makefile.am new file mode 100644 index 0000000..4116e37 --- /dev/null +++ b/images/16x16/apps/Makefile.am @@ -0,0 +1,41 @@ + +size = 16x16 +context = apps + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + accessories-calculator.png \ + accessories-character-map.png \ + accessories-text-editor.png \ + help-browser.png \ + internet-group-chat.png \ + internet-mail.png \ + internet-news-reader.png \ + internet-web-browser.png \ + office-calendar.png \ + preferences-desktop-accessibility.png \ + preferences-desktop-assistive-technology.png \ + preferences-desktop-font.png \ + preferences-desktop-keyboard-shortcuts.png \ + preferences-desktop-locale.png \ + preferences-desktop-multimedia.png \ + preferences-desktop-remote-desktop.png \ + preferences-desktop-screensaver.png \ + preferences-desktop-theme.png \ + preferences-desktop-wallpaper.png \ + preferences-system-network-proxy.png \ + preferences-system-session.png \ + preferences-system-windows.png \ + system-file-manager.png \ + system-installer.png \ + system-software-update.png \ + system-users.png \ + utilities-system-monitor.png \ + utilities-terminal.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/apps/Makefile.in b/images/16x16/apps/Makefile.in new file mode 100644 index 0000000..de64ad2 --- /dev/null +++ b/images/16x16/apps/Makefile.in @@ -0,0 +1,388 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/apps +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = apps +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + accessories-calculator.png \ + accessories-character-map.png \ + accessories-text-editor.png \ + help-browser.png \ + internet-group-chat.png \ + internet-mail.png \ + internet-news-reader.png \ + internet-web-browser.png \ + office-calendar.png \ + preferences-desktop-accessibility.png \ + preferences-desktop-assistive-technology.png \ + preferences-desktop-font.png \ + preferences-desktop-keyboard-shortcuts.png \ + preferences-desktop-locale.png \ + preferences-desktop-multimedia.png \ + preferences-desktop-remote-desktop.png \ + preferences-desktop-screensaver.png \ + preferences-desktop-theme.png \ + preferences-desktop-wallpaper.png \ + preferences-system-network-proxy.png \ + preferences-system-session.png \ + preferences-system-windows.png \ + system-file-manager.png \ + system-installer.png \ + system-software-update.png \ + system-users.png \ + utilities-system-monitor.png \ + utilities-terminal.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/apps/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/apps/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/apps/accessories-calculator.png b/images/16x16/apps/accessories-calculator.png new file mode 100644 index 0000000..9248971 Binary files /dev/null and b/images/16x16/apps/accessories-calculator.png differ diff --git a/images/16x16/apps/accessories-character-map.png b/images/16x16/apps/accessories-character-map.png new file mode 100644 index 0000000..5dd1124 Binary files /dev/null and b/images/16x16/apps/accessories-character-map.png differ diff --git a/images/16x16/apps/accessories-text-editor.png b/images/16x16/apps/accessories-text-editor.png new file mode 100644 index 0000000..188e1c1 Binary files /dev/null and b/images/16x16/apps/accessories-text-editor.png differ diff --git a/images/16x16/apps/help-browser.png b/images/16x16/apps/help-browser.png new file mode 100644 index 0000000..f25fc3f Binary files /dev/null and b/images/16x16/apps/help-browser.png differ diff --git a/images/16x16/apps/internet-group-chat.png b/images/16x16/apps/internet-group-chat.png new file mode 100644 index 0000000..f6e8325 Binary files /dev/null and b/images/16x16/apps/internet-group-chat.png differ diff --git a/images/16x16/apps/internet-mail.png b/images/16x16/apps/internet-mail.png new file mode 100644 index 0000000..859251f Binary files /dev/null and b/images/16x16/apps/internet-mail.png differ diff --git a/images/16x16/apps/internet-news-reader.png b/images/16x16/apps/internet-news-reader.png new file mode 100644 index 0000000..a9850ee Binary files /dev/null and b/images/16x16/apps/internet-news-reader.png differ diff --git a/images/16x16/apps/internet-web-browser.png b/images/16x16/apps/internet-web-browser.png new file mode 100644 index 0000000..ac5957a Binary files /dev/null and b/images/16x16/apps/internet-web-browser.png differ diff --git a/images/16x16/apps/office-calendar.png b/images/16x16/apps/office-calendar.png new file mode 100644 index 0000000..106a592 Binary files /dev/null and b/images/16x16/apps/office-calendar.png differ diff --git a/images/16x16/apps/preferences-desktop-accessibility.png b/images/16x16/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..b365c27 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-accessibility.png differ diff --git a/images/16x16/apps/preferences-desktop-assistive-technology.png b/images/16x16/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..513d817 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/16x16/apps/preferences-desktop-font.png b/images/16x16/apps/preferences-desktop-font.png new file mode 100644 index 0000000..18a0149 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-font.png differ diff --git a/images/16x16/apps/preferences-desktop-keyboard-shortcuts.png b/images/16x16/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..291dc1a Binary files /dev/null and b/images/16x16/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/16x16/apps/preferences-desktop-locale.png b/images/16x16/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..5ef73a6 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-locale.png differ diff --git a/images/16x16/apps/preferences-desktop-multimedia.png b/images/16x16/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..2e5ba43 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-multimedia.png differ diff --git a/images/16x16/apps/preferences-desktop-remote-desktop.png b/images/16x16/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..b790f63 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/16x16/apps/preferences-desktop-screensaver.png b/images/16x16/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dc297db Binary files /dev/null and b/images/16x16/apps/preferences-desktop-screensaver.png differ diff --git a/images/16x16/apps/preferences-desktop-theme.png b/images/16x16/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..fbea772 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-theme.png differ diff --git a/images/16x16/apps/preferences-desktop-wallpaper.png b/images/16x16/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..e7cc834 Binary files /dev/null and b/images/16x16/apps/preferences-desktop-wallpaper.png differ diff --git a/images/16x16/apps/preferences-system-network-proxy.png b/images/16x16/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bdeb79d Binary files /dev/null and b/images/16x16/apps/preferences-system-network-proxy.png differ diff --git a/images/16x16/apps/preferences-system-session.png b/images/16x16/apps/preferences-system-session.png new file mode 100644 index 0000000..35f8b57 Binary files /dev/null and b/images/16x16/apps/preferences-system-session.png differ diff --git a/images/16x16/apps/preferences-system-windows.png b/images/16x16/apps/preferences-system-windows.png new file mode 100644 index 0000000..596caf9 Binary files /dev/null and b/images/16x16/apps/preferences-system-windows.png differ diff --git a/images/16x16/apps/system-file-manager.png b/images/16x16/apps/system-file-manager.png new file mode 100644 index 0000000..60cade4 Binary files /dev/null and b/images/16x16/apps/system-file-manager.png differ diff --git a/images/16x16/apps/system-installer.png b/images/16x16/apps/system-installer.png new file mode 100644 index 0000000..d16abcb Binary files /dev/null and b/images/16x16/apps/system-installer.png differ diff --git a/images/16x16/apps/system-software-update.png b/images/16x16/apps/system-software-update.png new file mode 100644 index 0000000..58f19c6 Binary files /dev/null and b/images/16x16/apps/system-software-update.png differ diff --git a/images/16x16/apps/system-users.png b/images/16x16/apps/system-users.png new file mode 100644 index 0000000..9d2d500 Binary files /dev/null and b/images/16x16/apps/system-users.png differ diff --git a/images/16x16/apps/utilities-system-monitor.png b/images/16x16/apps/utilities-system-monitor.png new file mode 100644 index 0000000..8734e77 Binary files /dev/null and b/images/16x16/apps/utilities-system-monitor.png differ diff --git a/images/16x16/apps/utilities-terminal.png b/images/16x16/apps/utilities-terminal.png new file mode 100644 index 0000000..c5b797a Binary files /dev/null and b/images/16x16/apps/utilities-terminal.png differ diff --git a/images/16x16/categories/Makefile.am b/images/16x16/categories/Makefile.am new file mode 100644 index 0000000..0a0692e --- /dev/null +++ b/images/16x16/categories/Makefile.am @@ -0,0 +1,25 @@ + +size = 16x16 +context = categories + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + applications-accessories.png \ + applications-development.png \ + applications-games.png \ + applications-graphics.png \ + applications-internet.png \ + applications-multimedia.png \ + applications-office.png \ + applications-other.png \ + applications-system.png \ + preferences-desktop.png \ + preferences-desktop-peripherals.png \ + preferences-system.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/categories/Makefile.in b/images/16x16/categories/Makefile.in new file mode 100644 index 0000000..b85a626 --- /dev/null +++ b/images/16x16/categories/Makefile.in @@ -0,0 +1,372 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/categories +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = categories +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + applications-accessories.png \ + applications-development.png \ + applications-games.png \ + applications-graphics.png \ + applications-internet.png \ + applications-multimedia.png \ + applications-office.png \ + applications-other.png \ + applications-system.png \ + preferences-desktop.png \ + preferences-desktop-peripherals.png \ + preferences-system.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/categories/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/categories/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/categories/applications-accessories.png b/images/16x16/categories/applications-accessories.png new file mode 100644 index 0000000..c8d899c Binary files /dev/null and b/images/16x16/categories/applications-accessories.png differ diff --git a/images/16x16/categories/applications-development.png b/images/16x16/categories/applications-development.png new file mode 100644 index 0000000..4375227 Binary files /dev/null and b/images/16x16/categories/applications-development.png differ diff --git a/images/16x16/categories/applications-games.png b/images/16x16/categories/applications-games.png new file mode 100644 index 0000000..4ba874b Binary files /dev/null and b/images/16x16/categories/applications-games.png differ diff --git a/images/16x16/categories/applications-graphics.png b/images/16x16/categories/applications-graphics.png new file mode 100644 index 0000000..4bb955f Binary files /dev/null and b/images/16x16/categories/applications-graphics.png differ diff --git a/images/16x16/categories/applications-internet.png b/images/16x16/categories/applications-internet.png new file mode 100644 index 0000000..a588968 Binary files /dev/null and b/images/16x16/categories/applications-internet.png differ diff --git a/images/16x16/categories/applications-multimedia.png b/images/16x16/categories/applications-multimedia.png new file mode 100644 index 0000000..3e4ced5 Binary files /dev/null and b/images/16x16/categories/applications-multimedia.png differ diff --git a/images/16x16/categories/applications-office.png b/images/16x16/categories/applications-office.png new file mode 100644 index 0000000..f9b3bb9 Binary files /dev/null and b/images/16x16/categories/applications-office.png differ diff --git a/images/16x16/categories/applications-other.png b/images/16x16/categories/applications-other.png new file mode 100644 index 0000000..0d49f9d Binary files /dev/null and b/images/16x16/categories/applications-other.png differ diff --git a/images/16x16/categories/applications-system.png b/images/16x16/categories/applications-system.png new file mode 100644 index 0000000..d90ab66 Binary files /dev/null and b/images/16x16/categories/applications-system.png differ diff --git a/images/16x16/categories/preferences-desktop-peripherals.png b/images/16x16/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..2a63cee Binary files /dev/null and b/images/16x16/categories/preferences-desktop-peripherals.png differ diff --git a/images/16x16/categories/preferences-desktop.png b/images/16x16/categories/preferences-desktop.png new file mode 100644 index 0000000..68f916c Binary files /dev/null and b/images/16x16/categories/preferences-desktop.png differ diff --git a/images/16x16/categories/preferences-system.png b/images/16x16/categories/preferences-system.png new file mode 100644 index 0000000..9460dfc Binary files /dev/null and b/images/16x16/categories/preferences-system.png differ diff --git a/images/16x16/devices/Makefile.am b/images/16x16/devices/Makefile.am new file mode 100644 index 0000000..25231e6 --- /dev/null +++ b/images/16x16/devices/Makefile.am @@ -0,0 +1,33 @@ + +size = 16x16 +context = devices + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + audio-card.png \ + audio-input-microphone.png \ + battery.png \ + camera-photo.png \ + camera-video.png \ + computer.png \ + drive-optical.png \ + drive-harddisk.png \ + drive-removable-media.png \ + input-gaming.png \ + input-keyboard.png \ + input-mouse.png \ + media-optical.png \ + media-floppy.png \ + media-flash.png \ + multimedia-player.png \ + network-wired.png \ + network-wireless.png \ + printer.png \ + video-display.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/devices/Makefile.in b/images/16x16/devices/Makefile.in new file mode 100644 index 0000000..6019803 --- /dev/null +++ b/images/16x16/devices/Makefile.in @@ -0,0 +1,380 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/devices +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = devices +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + audio-card.png \ + audio-input-microphone.png \ + battery.png \ + camera-photo.png \ + camera-video.png \ + computer.png \ + drive-optical.png \ + drive-harddisk.png \ + drive-removable-media.png \ + input-gaming.png \ + input-keyboard.png \ + input-mouse.png \ + media-optical.png \ + media-floppy.png \ + media-flash.png \ + multimedia-player.png \ + network-wired.png \ + network-wireless.png \ + printer.png \ + video-display.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/devices/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/devices/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/devices/audio-card.png b/images/16x16/devices/audio-card.png new file mode 100644 index 0000000..aaa7907 Binary files /dev/null and b/images/16x16/devices/audio-card.png differ diff --git a/images/16x16/devices/audio-input-microphone.png b/images/16x16/devices/audio-input-microphone.png new file mode 100644 index 0000000..53a0393 Binary files /dev/null and b/images/16x16/devices/audio-input-microphone.png differ diff --git a/images/16x16/devices/battery.png b/images/16x16/devices/battery.png new file mode 100644 index 0000000..8684e2a Binary files /dev/null and b/images/16x16/devices/battery.png differ diff --git a/images/16x16/devices/camera-photo.png b/images/16x16/devices/camera-photo.png new file mode 100644 index 0000000..1e8e886 Binary files /dev/null and b/images/16x16/devices/camera-photo.png differ diff --git a/images/16x16/devices/camera-video.png b/images/16x16/devices/camera-video.png new file mode 100644 index 0000000..98fc211 Binary files /dev/null and b/images/16x16/devices/camera-video.png differ diff --git a/images/16x16/devices/computer.png b/images/16x16/devices/computer.png new file mode 100644 index 0000000..d0b397b Binary files /dev/null and b/images/16x16/devices/computer.png differ diff --git a/images/16x16/devices/drive-harddisk.png b/images/16x16/devices/drive-harddisk.png new file mode 100644 index 0000000..5c3b858 Binary files /dev/null and b/images/16x16/devices/drive-harddisk.png differ diff --git a/images/16x16/devices/drive-optical.png b/images/16x16/devices/drive-optical.png new file mode 100644 index 0000000..4ced6fe Binary files /dev/null and b/images/16x16/devices/drive-optical.png differ diff --git a/images/16x16/devices/drive-removable-media.png b/images/16x16/devices/drive-removable-media.png new file mode 100644 index 0000000..9153898 Binary files /dev/null and b/images/16x16/devices/drive-removable-media.png differ diff --git a/images/16x16/devices/input-gaming.png b/images/16x16/devices/input-gaming.png new file mode 100644 index 0000000..9d040ee Binary files /dev/null and b/images/16x16/devices/input-gaming.png differ diff --git a/images/16x16/devices/input-keyboard.png b/images/16x16/devices/input-keyboard.png new file mode 100644 index 0000000..fab414b Binary files /dev/null and b/images/16x16/devices/input-keyboard.png differ diff --git a/images/16x16/devices/input-mouse.png b/images/16x16/devices/input-mouse.png new file mode 100644 index 0000000..eeda4db Binary files /dev/null and b/images/16x16/devices/input-mouse.png differ diff --git a/images/16x16/devices/media-flash.png b/images/16x16/devices/media-flash.png new file mode 100644 index 0000000..bef542a Binary files /dev/null and b/images/16x16/devices/media-flash.png differ diff --git a/images/16x16/devices/media-floppy.png b/images/16x16/devices/media-floppy.png new file mode 100644 index 0000000..f1d7a19 Binary files /dev/null and b/images/16x16/devices/media-floppy.png differ diff --git a/images/16x16/devices/media-optical.png b/images/16x16/devices/media-optical.png new file mode 100644 index 0000000..760de93 Binary files /dev/null and b/images/16x16/devices/media-optical.png differ diff --git a/images/16x16/devices/multimedia-player.png b/images/16x16/devices/multimedia-player.png new file mode 100644 index 0000000..461e9de Binary files /dev/null and b/images/16x16/devices/multimedia-player.png differ diff --git a/images/16x16/devices/network-wired.png b/images/16x16/devices/network-wired.png new file mode 100644 index 0000000..3ac6b35 Binary files /dev/null and b/images/16x16/devices/network-wired.png differ diff --git a/images/16x16/devices/network-wireless.png b/images/16x16/devices/network-wireless.png new file mode 100644 index 0000000..2dc6250 Binary files /dev/null and b/images/16x16/devices/network-wireless.png differ diff --git a/images/16x16/devices/printer.png b/images/16x16/devices/printer.png new file mode 100644 index 0000000..12a4e39 Binary files /dev/null and b/images/16x16/devices/printer.png differ diff --git a/images/16x16/devices/video-display.png b/images/16x16/devices/video-display.png new file mode 100644 index 0000000..226881f Binary files /dev/null and b/images/16x16/devices/video-display.png differ diff --git a/images/16x16/emblems/Makefile.am b/images/16x16/emblems/Makefile.am new file mode 100644 index 0000000..5ad874f --- /dev/null +++ b/images/16x16/emblems/Makefile.am @@ -0,0 +1,20 @@ + +size = 16x16 +context = emblems + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + emblem-favorite.png \ + emblem-important.png \ + emblem-photos.png \ + emblem-readonly.png \ + emblem-symbolic-link.png \ + emblem-system.png \ + emblem-unreadable.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/emblems/Makefile.in b/images/16x16/emblems/Makefile.in new file mode 100644 index 0000000..bc6d391 --- /dev/null +++ b/images/16x16/emblems/Makefile.in @@ -0,0 +1,367 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/emblems +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = emblems +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + emblem-favorite.png \ + emblem-important.png \ + emblem-photos.png \ + emblem-readonly.png \ + emblem-symbolic-link.png \ + emblem-system.png \ + emblem-unreadable.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/emblems/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/emblems/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/emblems/emblem-favorite.png b/images/16x16/emblems/emblem-favorite.png new file mode 100644 index 0000000..3acb57d Binary files /dev/null and b/images/16x16/emblems/emblem-favorite.png differ diff --git a/images/16x16/emblems/emblem-important.png b/images/16x16/emblems/emblem-important.png new file mode 100644 index 0000000..81e9ed2 Binary files /dev/null and b/images/16x16/emblems/emblem-important.png differ diff --git a/images/16x16/emblems/emblem-photos.png b/images/16x16/emblems/emblem-photos.png new file mode 100644 index 0000000..ab40463 Binary files /dev/null and b/images/16x16/emblems/emblem-photos.png differ diff --git a/images/16x16/emblems/emblem-readonly.png b/images/16x16/emblems/emblem-readonly.png new file mode 100644 index 0000000..0466619 Binary files /dev/null and b/images/16x16/emblems/emblem-readonly.png differ diff --git a/images/16x16/emblems/emblem-symbolic-link.png b/images/16x16/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..800b9e8 Binary files /dev/null and b/images/16x16/emblems/emblem-symbolic-link.png differ diff --git a/images/16x16/emblems/emblem-system.png b/images/16x16/emblems/emblem-system.png new file mode 100644 index 0000000..259ed26 Binary files /dev/null and b/images/16x16/emblems/emblem-system.png differ diff --git a/images/16x16/emblems/emblem-unreadable.png b/images/16x16/emblems/emblem-unreadable.png new file mode 100644 index 0000000..5c08b05 Binary files /dev/null and b/images/16x16/emblems/emblem-unreadable.png differ diff --git a/images/16x16/emotes/Makefile.am b/images/16x16/emotes/Makefile.am new file mode 100644 index 0000000..cee11ca --- /dev/null +++ b/images/16x16/emotes/Makefile.am @@ -0,0 +1,26 @@ + +size = 16x16 +context = emotes + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + face-angel.png \ + face-crying.png \ + face-devilish.png \ + face-glasses.png \ + face-grin.png \ + face-kiss.png \ + face-monkey.png \ + face-plain.png \ + face-sad.png \ + face-smile.png \ + face-smile-big.png \ + face-surprise.png \ + face-wink.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/emotes/Makefile.in b/images/16x16/emotes/Makefile.in new file mode 100644 index 0000000..be80cdb --- /dev/null +++ b/images/16x16/emotes/Makefile.in @@ -0,0 +1,373 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/emotes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = emotes +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + face-angel.png \ + face-crying.png \ + face-devilish.png \ + face-glasses.png \ + face-grin.png \ + face-kiss.png \ + face-monkey.png \ + face-plain.png \ + face-sad.png \ + face-smile.png \ + face-smile-big.png \ + face-surprise.png \ + face-wink.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/emotes/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/emotes/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/emotes/face-angel.png b/images/16x16/emotes/face-angel.png new file mode 100644 index 0000000..d2c5e94 Binary files /dev/null and b/images/16x16/emotes/face-angel.png differ diff --git a/images/16x16/emotes/face-crying.png b/images/16x16/emotes/face-crying.png new file mode 100644 index 0000000..2620dab Binary files /dev/null and b/images/16x16/emotes/face-crying.png differ diff --git a/images/16x16/emotes/face-devilish.png b/images/16x16/emotes/face-devilish.png new file mode 100644 index 0000000..6edf683 Binary files /dev/null and b/images/16x16/emotes/face-devilish.png differ diff --git a/images/16x16/emotes/face-glasses.png b/images/16x16/emotes/face-glasses.png new file mode 100644 index 0000000..00c2cd4 Binary files /dev/null and b/images/16x16/emotes/face-glasses.png differ diff --git a/images/16x16/emotes/face-grin.png b/images/16x16/emotes/face-grin.png new file mode 100644 index 0000000..0d013d5 Binary files /dev/null and b/images/16x16/emotes/face-grin.png differ diff --git a/images/16x16/emotes/face-kiss.png b/images/16x16/emotes/face-kiss.png new file mode 100644 index 0000000..809c1cf Binary files /dev/null and b/images/16x16/emotes/face-kiss.png differ diff --git a/images/16x16/emotes/face-monkey.png b/images/16x16/emotes/face-monkey.png new file mode 100644 index 0000000..69db8fa Binary files /dev/null and b/images/16x16/emotes/face-monkey.png differ diff --git a/images/16x16/emotes/face-plain.png b/images/16x16/emotes/face-plain.png new file mode 100644 index 0000000..31cf984 Binary files /dev/null and b/images/16x16/emotes/face-plain.png differ diff --git a/images/16x16/emotes/face-sad.png b/images/16x16/emotes/face-sad.png new file mode 100644 index 0000000..159c04b Binary files /dev/null and b/images/16x16/emotes/face-sad.png differ diff --git a/images/16x16/emotes/face-smile-big.png b/images/16x16/emotes/face-smile-big.png new file mode 100644 index 0000000..9114fde Binary files /dev/null and b/images/16x16/emotes/face-smile-big.png differ diff --git a/images/16x16/emotes/face-smile.png b/images/16x16/emotes/face-smile.png new file mode 100644 index 0000000..de862b1 Binary files /dev/null and b/images/16x16/emotes/face-smile.png differ diff --git a/images/16x16/emotes/face-surprise.png b/images/16x16/emotes/face-surprise.png new file mode 100644 index 0000000..4b4d423 Binary files /dev/null and b/images/16x16/emotes/face-surprise.png differ diff --git a/images/16x16/emotes/face-wink.png b/images/16x16/emotes/face-wink.png new file mode 100644 index 0000000..e2db57e Binary files /dev/null and b/images/16x16/emotes/face-wink.png differ diff --git a/images/16x16/mimetypes/Makefile.am b/images/16x16/mimetypes/Makefile.am new file mode 100644 index 0000000..6fdaa98 --- /dev/null +++ b/images/16x16/mimetypes/Makefile.am @@ -0,0 +1,34 @@ + +size = 16x16 +context = mimetypes + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + application-certificate.png \ + application-x-executable.png \ + audio-x-generic.png \ + font-x-generic.png \ + image-x-generic.png \ + package-x-generic.png \ + text-html.png \ + text-x-generic.png \ + text-x-generic-template.png \ + text-x-script.png \ + video-x-generic.png \ + x-office-address-book.png \ + x-office-calendar.png \ + x-office-document.png \ + x-office-document-template.png \ + x-office-drawing.png \ + x-office-drawing-template.png \ + x-office-presentation.png \ + x-office-presentation-template.png \ + x-office-spreadsheet.png \ + x-office-spreadsheet-template.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/mimetypes/Makefile.in b/images/16x16/mimetypes/Makefile.in new file mode 100644 index 0000000..bbbc3a7 --- /dev/null +++ b/images/16x16/mimetypes/Makefile.in @@ -0,0 +1,381 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/mimetypes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = mimetypes +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + application-certificate.png \ + application-x-executable.png \ + audio-x-generic.png \ + font-x-generic.png \ + image-x-generic.png \ + package-x-generic.png \ + text-html.png \ + text-x-generic.png \ + text-x-generic-template.png \ + text-x-script.png \ + video-x-generic.png \ + x-office-address-book.png \ + x-office-calendar.png \ + x-office-document.png \ + x-office-document-template.png \ + x-office-drawing.png \ + x-office-drawing-template.png \ + x-office-presentation.png \ + x-office-presentation-template.png \ + x-office-spreadsheet.png \ + x-office-spreadsheet-template.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/mimetypes/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/mimetypes/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/mimetypes/application-certificate.png b/images/16x16/mimetypes/application-certificate.png new file mode 100644 index 0000000..486913d Binary files /dev/null and b/images/16x16/mimetypes/application-certificate.png differ diff --git a/images/16x16/mimetypes/application-x-executable.png b/images/16x16/mimetypes/application-x-executable.png new file mode 100644 index 0000000..003ded2 Binary files /dev/null and b/images/16x16/mimetypes/application-x-executable.png differ diff --git a/images/16x16/mimetypes/audio-x-generic.png b/images/16x16/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..2bd5af9 Binary files /dev/null and b/images/16x16/mimetypes/audio-x-generic.png differ diff --git a/images/16x16/mimetypes/font-x-generic.png b/images/16x16/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdbc1a8 Binary files /dev/null and b/images/16x16/mimetypes/font-x-generic.png differ diff --git a/images/16x16/mimetypes/image-x-generic.png b/images/16x16/mimetypes/image-x-generic.png new file mode 100644 index 0000000..68da502 Binary files /dev/null and b/images/16x16/mimetypes/image-x-generic.png differ diff --git a/images/16x16/mimetypes/package-x-generic.png b/images/16x16/mimetypes/package-x-generic.png new file mode 100644 index 0000000..9015426 Binary files /dev/null and b/images/16x16/mimetypes/package-x-generic.png differ diff --git a/images/16x16/mimetypes/text-html.png b/images/16x16/mimetypes/text-html.png new file mode 100644 index 0000000..53014ab Binary files /dev/null and b/images/16x16/mimetypes/text-html.png differ diff --git a/images/16x16/mimetypes/text-x-generic-template.png b/images/16x16/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..a0cc462 Binary files /dev/null and b/images/16x16/mimetypes/text-x-generic-template.png differ diff --git a/images/16x16/mimetypes/text-x-generic.png b/images/16x16/mimetypes/text-x-generic.png new file mode 100644 index 0000000..2d7f2d6 Binary files /dev/null and b/images/16x16/mimetypes/text-x-generic.png differ diff --git a/images/16x16/mimetypes/text-x-script.png b/images/16x16/mimetypes/text-x-script.png new file mode 100644 index 0000000..c923098 Binary files /dev/null and b/images/16x16/mimetypes/text-x-script.png differ diff --git a/images/16x16/mimetypes/video-x-generic.png b/images/16x16/mimetypes/video-x-generic.png new file mode 100644 index 0000000..64e7a30 Binary files /dev/null and b/images/16x16/mimetypes/video-x-generic.png differ diff --git a/images/16x16/mimetypes/x-office-address-book.png b/images/16x16/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..f3b5d9d Binary files /dev/null and b/images/16x16/mimetypes/x-office-address-book.png differ diff --git a/images/16x16/mimetypes/x-office-calendar.png b/images/16x16/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..f6978d7 Binary files /dev/null and b/images/16x16/mimetypes/x-office-calendar.png differ diff --git a/images/16x16/mimetypes/x-office-document-template.png b/images/16x16/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..d1d9e7c Binary files /dev/null and b/images/16x16/mimetypes/x-office-document-template.png differ diff --git a/images/16x16/mimetypes/x-office-document.png b/images/16x16/mimetypes/x-office-document.png new file mode 100644 index 0000000..d18082e Binary files /dev/null and b/images/16x16/mimetypes/x-office-document.png differ diff --git a/images/16x16/mimetypes/x-office-drawing-template.png b/images/16x16/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..dc384db Binary files /dev/null and b/images/16x16/mimetypes/x-office-drawing-template.png differ diff --git a/images/16x16/mimetypes/x-office-drawing.png b/images/16x16/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..ffbb9e4 Binary files /dev/null and b/images/16x16/mimetypes/x-office-drawing.png differ diff --git a/images/16x16/mimetypes/x-office-presentation-template.png b/images/16x16/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..d90d034 Binary files /dev/null and b/images/16x16/mimetypes/x-office-presentation-template.png differ diff --git a/images/16x16/mimetypes/x-office-presentation.png b/images/16x16/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..f7ea302 Binary files /dev/null and b/images/16x16/mimetypes/x-office-presentation.png differ diff --git a/images/16x16/mimetypes/x-office-spreadsheet-template.png b/images/16x16/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..e8bf570 Binary files /dev/null and b/images/16x16/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/16x16/mimetypes/x-office-spreadsheet.png b/images/16x16/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..a6b1268 Binary files /dev/null and b/images/16x16/mimetypes/x-office-spreadsheet.png differ diff --git a/images/16x16/places/Makefile.am b/images/16x16/places/Makefile.am new file mode 100644 index 0000000..29cf028 --- /dev/null +++ b/images/16x16/places/Makefile.am @@ -0,0 +1,22 @@ + +size = 16x16 +context = places + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + folder.png \ + folder-remote.png \ + folder-saved-search.png \ + network-server.png \ + network-workgroup.png \ + start-here.png \ + user-desktop.png \ + user-home.png \ + user-trash.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/places/Makefile.in b/images/16x16/places/Makefile.in new file mode 100644 index 0000000..214b13a --- /dev/null +++ b/images/16x16/places/Makefile.in @@ -0,0 +1,369 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/places +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = places +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + folder.png \ + folder-remote.png \ + folder-saved-search.png \ + network-server.png \ + network-workgroup.png \ + start-here.png \ + user-desktop.png \ + user-home.png \ + user-trash.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/places/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/places/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/places/folder-remote.png b/images/16x16/places/folder-remote.png new file mode 100644 index 0000000..5234eab Binary files /dev/null and b/images/16x16/places/folder-remote.png differ diff --git a/images/16x16/places/folder-saved-search.png b/images/16x16/places/folder-saved-search.png new file mode 100644 index 0000000..ca24a36 Binary files /dev/null and b/images/16x16/places/folder-saved-search.png differ diff --git a/images/16x16/places/folder.png b/images/16x16/places/folder.png new file mode 100644 index 0000000..65bd0bb Binary files /dev/null and b/images/16x16/places/folder.png differ diff --git a/images/16x16/places/network-server.png b/images/16x16/places/network-server.png new file mode 100644 index 0000000..068ffeb Binary files /dev/null and b/images/16x16/places/network-server.png differ diff --git a/images/16x16/places/network-workgroup.png b/images/16x16/places/network-workgroup.png new file mode 100644 index 0000000..5c140d8 Binary files /dev/null and b/images/16x16/places/network-workgroup.png differ diff --git a/images/16x16/places/start-here.png b/images/16x16/places/start-here.png new file mode 100644 index 0000000..bd516a5 Binary files /dev/null and b/images/16x16/places/start-here.png differ diff --git a/images/16x16/places/user-desktop.png b/images/16x16/places/user-desktop.png new file mode 100644 index 0000000..4c9787c Binary files /dev/null and b/images/16x16/places/user-desktop.png differ diff --git a/images/16x16/places/user-home.png b/images/16x16/places/user-home.png new file mode 100644 index 0000000..7b9110d Binary files /dev/null and b/images/16x16/places/user-home.png differ diff --git a/images/16x16/places/user-trash.png b/images/16x16/places/user-trash.png new file mode 100644 index 0000000..0e0953c Binary files /dev/null and b/images/16x16/places/user-trash.png differ diff --git a/images/16x16/status/Makefile.am b/images/16x16/status/Makefile.am new file mode 100644 index 0000000..33433bd --- /dev/null +++ b/images/16x16/status/Makefile.am @@ -0,0 +1,48 @@ + +size = 16x16 +context = status + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + audio-volume-high.png \ + audio-volume-low.png \ + audio-volume-medium.png \ + audio-volume-muted.png \ + battery-caution.png \ + dialog-error.png \ + dialog-information.png \ + dialog-warning.png \ + folder-drag-accept.png \ + folder-open.png \ + folder-visiting.png \ + image-loading.png \ + image-missing.png \ + mail-attachment.png \ + network-error.png \ + network-idle.png \ + network-offline.png \ + network-receive.png \ + network-transmit.png \ + network-transmit-receive.png \ + network-wireless-encrypted.png \ + printer-error.png \ + software-update-available.png \ + software-update-urgent.png \ + user-trash-full.png \ + weather-clear.png \ + weather-clear-night.png \ + weather-few-clouds.png \ + weather-few-clouds-night.png \ + weather-overcast.png \ + weather-severe-alert.png \ + weather-showers.png \ + weather-showers-scattered.png \ + weather-snow.png \ + weather-storm.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/16x16/status/Makefile.in b/images/16x16/status/Makefile.in new file mode 100644 index 0000000..b6e81e2 --- /dev/null +++ b/images/16x16/status/Makefile.in @@ -0,0 +1,395 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 16x16/status +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 16x16 +context = status +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + audio-volume-high.png \ + audio-volume-low.png \ + audio-volume-medium.png \ + audio-volume-muted.png \ + battery-caution.png \ + dialog-error.png \ + dialog-information.png \ + dialog-warning.png \ + folder-drag-accept.png \ + folder-open.png \ + folder-visiting.png \ + image-loading.png \ + image-missing.png \ + mail-attachment.png \ + network-error.png \ + network-idle.png \ + network-offline.png \ + network-receive.png \ + network-transmit.png \ + network-transmit-receive.png \ + network-wireless-encrypted.png \ + printer-error.png \ + software-update-available.png \ + software-update-urgent.png \ + user-trash-full.png \ + weather-clear.png \ + weather-clear-night.png \ + weather-few-clouds.png \ + weather-few-clouds-night.png \ + weather-overcast.png \ + weather-severe-alert.png \ + weather-showers.png \ + weather-showers-scattered.png \ + weather-snow.png \ + weather-storm.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 16x16/status/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 16x16/status/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/16x16/status/audio-volume-high.png b/images/16x16/status/audio-volume-high.png new file mode 100644 index 0000000..ec8f00b Binary files /dev/null and b/images/16x16/status/audio-volume-high.png differ diff --git a/images/16x16/status/audio-volume-low.png b/images/16x16/status/audio-volume-low.png new file mode 100644 index 0000000..4d7239f Binary files /dev/null and b/images/16x16/status/audio-volume-low.png differ diff --git a/images/16x16/status/audio-volume-medium.png b/images/16x16/status/audio-volume-medium.png new file mode 100644 index 0000000..36ca7b0 Binary files /dev/null and b/images/16x16/status/audio-volume-medium.png differ diff --git a/images/16x16/status/audio-volume-muted.png b/images/16x16/status/audio-volume-muted.png new file mode 100644 index 0000000..af5a97b Binary files /dev/null and b/images/16x16/status/audio-volume-muted.png differ diff --git a/images/16x16/status/battery-caution.png b/images/16x16/status/battery-caution.png new file mode 100644 index 0000000..53a27d1 Binary files /dev/null and b/images/16x16/status/battery-caution.png differ diff --git a/images/16x16/status/dialog-error.png b/images/16x16/status/dialog-error.png new file mode 100644 index 0000000..3bbbb4a Binary files /dev/null and b/images/16x16/status/dialog-error.png differ diff --git a/images/16x16/status/dialog-information.png b/images/16x16/status/dialog-information.png new file mode 100644 index 0000000..8851b99 Binary files /dev/null and b/images/16x16/status/dialog-information.png differ diff --git a/images/16x16/status/dialog-warning.png b/images/16x16/status/dialog-warning.png new file mode 100644 index 0000000..a9e4ff3 Binary files /dev/null and b/images/16x16/status/dialog-warning.png differ diff --git a/images/16x16/status/folder-drag-accept.png b/images/16x16/status/folder-drag-accept.png new file mode 100644 index 0000000..44055dc Binary files /dev/null and b/images/16x16/status/folder-drag-accept.png differ diff --git a/images/16x16/status/folder-open.png b/images/16x16/status/folder-open.png new file mode 100644 index 0000000..b67403d Binary files /dev/null and b/images/16x16/status/folder-open.png differ diff --git a/images/16x16/status/folder-visiting.png b/images/16x16/status/folder-visiting.png new file mode 100644 index 0000000..9002444 Binary files /dev/null and b/images/16x16/status/folder-visiting.png differ diff --git a/images/16x16/status/image-loading.png b/images/16x16/status/image-loading.png new file mode 100644 index 0000000..174994e Binary files /dev/null and b/images/16x16/status/image-loading.png differ diff --git a/images/16x16/status/image-missing.png b/images/16x16/status/image-missing.png new file mode 100644 index 0000000..a644f24 Binary files /dev/null and b/images/16x16/status/image-missing.png differ diff --git a/images/16x16/status/mail-attachment.png b/images/16x16/status/mail-attachment.png new file mode 100644 index 0000000..529bb7f Binary files /dev/null and b/images/16x16/status/mail-attachment.png differ diff --git a/images/16x16/status/network-error.png b/images/16x16/status/network-error.png new file mode 100644 index 0000000..3f18ed0 Binary files /dev/null and b/images/16x16/status/network-error.png differ diff --git a/images/16x16/status/network-idle.png b/images/16x16/status/network-idle.png new file mode 100644 index 0000000..0efee57 Binary files /dev/null and b/images/16x16/status/network-idle.png differ diff --git a/images/16x16/status/network-offline.png b/images/16x16/status/network-offline.png new file mode 100644 index 0000000..1f210fc Binary files /dev/null and b/images/16x16/status/network-offline.png differ diff --git a/images/16x16/status/network-receive.png b/images/16x16/status/network-receive.png new file mode 100644 index 0000000..b57c65c Binary files /dev/null and b/images/16x16/status/network-receive.png differ diff --git a/images/16x16/status/network-transmit-receive.png b/images/16x16/status/network-transmit-receive.png new file mode 100644 index 0000000..271d37d Binary files /dev/null and b/images/16x16/status/network-transmit-receive.png differ diff --git a/images/16x16/status/network-transmit.png b/images/16x16/status/network-transmit.png new file mode 100644 index 0000000..08aa28b Binary files /dev/null and b/images/16x16/status/network-transmit.png differ diff --git a/images/16x16/status/network-wireless-encrypted.png b/images/16x16/status/network-wireless-encrypted.png new file mode 100644 index 0000000..c73e33c Binary files /dev/null and b/images/16x16/status/network-wireless-encrypted.png differ diff --git a/images/16x16/status/printer-error.png b/images/16x16/status/printer-error.png new file mode 100644 index 0000000..21d4ded Binary files /dev/null and b/images/16x16/status/printer-error.png differ diff --git a/images/16x16/status/software-update-available.png b/images/16x16/status/software-update-available.png new file mode 100644 index 0000000..ab8d494 Binary files /dev/null and b/images/16x16/status/software-update-available.png differ diff --git a/images/16x16/status/software-update-urgent.png b/images/16x16/status/software-update-urgent.png new file mode 100644 index 0000000..433945d Binary files /dev/null and b/images/16x16/status/software-update-urgent.png differ diff --git a/images/16x16/status/user-trash-full.png b/images/16x16/status/user-trash-full.png new file mode 100644 index 0000000..695d215 Binary files /dev/null and b/images/16x16/status/user-trash-full.png differ diff --git a/images/16x16/status/weather-clear-night.png b/images/16x16/status/weather-clear-night.png new file mode 100644 index 0000000..4345752 Binary files /dev/null and b/images/16x16/status/weather-clear-night.png differ diff --git a/images/16x16/status/weather-clear.png b/images/16x16/status/weather-clear.png new file mode 100644 index 0000000..7dc15ea Binary files /dev/null and b/images/16x16/status/weather-clear.png differ diff --git a/images/16x16/status/weather-few-clouds-night.png b/images/16x16/status/weather-few-clouds-night.png new file mode 100644 index 0000000..d69efec Binary files /dev/null and b/images/16x16/status/weather-few-clouds-night.png differ diff --git a/images/16x16/status/weather-few-clouds.png b/images/16x16/status/weather-few-clouds.png new file mode 100644 index 0000000..0e633a3 Binary files /dev/null and b/images/16x16/status/weather-few-clouds.png differ diff --git a/images/16x16/status/weather-overcast.png b/images/16x16/status/weather-overcast.png new file mode 100644 index 0000000..0045129 Binary files /dev/null and b/images/16x16/status/weather-overcast.png differ diff --git a/images/16x16/status/weather-severe-alert.png b/images/16x16/status/weather-severe-alert.png new file mode 100644 index 0000000..98e9f6c Binary files /dev/null and b/images/16x16/status/weather-severe-alert.png differ diff --git a/images/16x16/status/weather-showers-scattered.png b/images/16x16/status/weather-showers-scattered.png new file mode 100644 index 0000000..8d10d84 Binary files /dev/null and b/images/16x16/status/weather-showers-scattered.png differ diff --git a/images/16x16/status/weather-showers.png b/images/16x16/status/weather-showers.png new file mode 100644 index 0000000..d9685d2 Binary files /dev/null and b/images/16x16/status/weather-showers.png differ diff --git a/images/16x16/status/weather-snow.png b/images/16x16/status/weather-snow.png new file mode 100644 index 0000000..a83d855 Binary files /dev/null and b/images/16x16/status/weather-snow.png differ diff --git a/images/16x16/status/weather-storm.png b/images/16x16/status/weather-storm.png new file mode 100644 index 0000000..feebe1d Binary files /dev/null and b/images/16x16/status/weather-storm.png differ diff --git a/images/22x22/Makefile.am b/images/22x22/Makefile.am new file mode 100644 index 0000000..df51ba8 --- /dev/null +++ b/images/22x22/Makefile.am @@ -0,0 +1,3 @@ + +SUBDIRS = actions animations apps categories devices emblems emotes mimetypes places status + diff --git a/images/22x22/Makefile.in b/images/22x22/Makefile.in new file mode 100644 index 0000000..1670104 --- /dev/null +++ b/images/22x22/Makefile.in @@ -0,0 +1,477 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = actions animations apps categories devices emblems emotes mimetypes places status +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-exec-am: + +install-html: install-html-recursive + +install-info: install-info-recursive + +install-man: + +install-pdf: install-pdf-recursive + +install-ps: install-ps-recursive + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ + install-strip + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am check check-am clean clean-generic ctags \ + ctags-recursive distclean distclean-generic distclean-tags \ + distdir dvi dvi-am html html-am info info-am install \ + install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \ + tags-recursive uninstall uninstall-am + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/actions/Makefile.am b/images/22x22/actions/Makefile.am new file mode 100644 index 0000000..1abc6c3 --- /dev/null +++ b/images/22x22/actions/Makefile.am @@ -0,0 +1,93 @@ + +size = 22x22 +context = actions + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + address-book-new.png \ + appointment-new.png \ + bookmark-new.png \ + contact-new.png \ + document-new.png \ + document-open.png \ + document-print.png \ + document-print-preview.png \ + document-properties.png \ + document-save.png \ + document-save-as.png \ + edit-clear.png \ + edit-copy.png \ + edit-cut.png \ + edit-delete.png \ + edit-find.png \ + edit-find-replace.png \ + edit-paste.png \ + edit-redo.png \ + edit-select-all.png \ + edit-undo.png \ + folder-new.png \ + format-indent-less.png \ + format-indent-more.png \ + format-justify-center.png \ + format-justify-fill.png \ + format-justify-left.png \ + format-justify-right.png \ + format-text-bold.png \ + format-text-italic.png \ + format-text-strikethrough.png \ + format-text-underline.png \ + go-bottom.png \ + go-down.png \ + go-first.png \ + go-home.png \ + go-jump.png \ + go-last.png \ + go-next.png \ + go-previous.png \ + go-top.png \ + go-up.png \ + list-add.png \ + list-remove.png \ + mail-forward.png \ + mail-message-new.png \ + mail-mark-junk.png \ + mail-mark-not-junk.png \ + mail-reply-all.png \ + mail-reply-sender.png \ + mail-send-receive.png \ + media-eject.png \ + media-playback-pause.png \ + media-playback-start.png \ + media-playback-stop.png \ + media-record.png \ + media-seek-backward.png \ + media-seek-forward.png \ + media-skip-backward.png \ + media-skip-forward.png \ + process-stop.png \ + system-lock-screen.png \ + system-log-out.png \ + system-search.png \ + system-shutdown.png \ + tab-new.png \ + view-fullscreen.png \ + view-refresh.png \ + window-new.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/actions/Makefile.in b/images/22x22/actions/Makefile.in new file mode 100644 index 0000000..ed40093 --- /dev/null +++ b/images/22x22/actions/Makefile.in @@ -0,0 +1,439 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/actions +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = actions +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + address-book-new.png \ + appointment-new.png \ + bookmark-new.png \ + contact-new.png \ + document-new.png \ + document-open.png \ + document-print.png \ + document-print-preview.png \ + document-properties.png \ + document-save.png \ + document-save-as.png \ + edit-clear.png \ + edit-copy.png \ + edit-cut.png \ + edit-delete.png \ + edit-find.png \ + edit-find-replace.png \ + edit-paste.png \ + edit-redo.png \ + edit-select-all.png \ + edit-undo.png \ + folder-new.png \ + format-indent-less.png \ + format-indent-more.png \ + format-justify-center.png \ + format-justify-fill.png \ + format-justify-left.png \ + format-justify-right.png \ + format-text-bold.png \ + format-text-italic.png \ + format-text-strikethrough.png \ + format-text-underline.png \ + go-bottom.png \ + go-down.png \ + go-first.png \ + go-home.png \ + go-jump.png \ + go-last.png \ + go-next.png \ + go-previous.png \ + go-top.png \ + go-up.png \ + list-add.png \ + list-remove.png \ + mail-forward.png \ + mail-message-new.png \ + mail-mark-junk.png \ + mail-mark-not-junk.png \ + mail-reply-all.png \ + mail-reply-sender.png \ + mail-send-receive.png \ + media-eject.png \ + media-playback-pause.png \ + media-playback-start.png \ + media-playback-stop.png \ + media-record.png \ + media-seek-backward.png \ + media-seek-forward.png \ + media-skip-backward.png \ + media-skip-forward.png \ + process-stop.png \ + system-lock-screen.png \ + system-log-out.png \ + system-search.png \ + system-shutdown.png \ + tab-new.png \ + view-fullscreen.png \ + view-refresh.png \ + window-new.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/actions/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/actions/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/actions/address-book-new.png b/images/22x22/actions/address-book-new.png new file mode 100644 index 0000000..fad446c Binary files /dev/null and b/images/22x22/actions/address-book-new.png differ diff --git a/images/22x22/actions/appointment-new.png b/images/22x22/actions/appointment-new.png new file mode 100644 index 0000000..d676ffd Binary files /dev/null and b/images/22x22/actions/appointment-new.png differ diff --git a/images/22x22/actions/bookmark-new.png b/images/22x22/actions/bookmark-new.png new file mode 100644 index 0000000..3ec0300 Binary files /dev/null and b/images/22x22/actions/bookmark-new.png differ diff --git a/images/22x22/actions/contact-new.png b/images/22x22/actions/contact-new.png new file mode 100644 index 0000000..c9921be Binary files /dev/null and b/images/22x22/actions/contact-new.png differ diff --git a/images/22x22/actions/document-new.png b/images/22x22/actions/document-new.png new file mode 100644 index 0000000..e3808a1 Binary files /dev/null and b/images/22x22/actions/document-new.png differ diff --git a/images/22x22/actions/document-open.png b/images/22x22/actions/document-open.png new file mode 100644 index 0000000..254a6b8 Binary files /dev/null and b/images/22x22/actions/document-open.png differ diff --git a/images/22x22/actions/document-print-preview.png b/images/22x22/actions/document-print-preview.png new file mode 100644 index 0000000..75f43aa Binary files /dev/null and b/images/22x22/actions/document-print-preview.png differ diff --git a/images/22x22/actions/document-print.png b/images/22x22/actions/document-print.png new file mode 100644 index 0000000..52dd67e Binary files /dev/null and b/images/22x22/actions/document-print.png differ diff --git a/images/22x22/actions/document-properties.png b/images/22x22/actions/document-properties.png new file mode 100644 index 0000000..a5ad728 Binary files /dev/null and b/images/22x22/actions/document-properties.png differ diff --git a/images/22x22/actions/document-save-as.png b/images/22x22/actions/document-save-as.png new file mode 100644 index 0000000..340a87e Binary files /dev/null and b/images/22x22/actions/document-save-as.png differ diff --git a/images/22x22/actions/document-save.png b/images/22x22/actions/document-save.png new file mode 100644 index 0000000..a94e0ea Binary files /dev/null and b/images/22x22/actions/document-save.png differ diff --git a/images/22x22/actions/edit-clear.png b/images/22x22/actions/edit-clear.png new file mode 100644 index 0000000..bbc77eb Binary files /dev/null and b/images/22x22/actions/edit-clear.png differ diff --git a/images/22x22/actions/edit-copy.png b/images/22x22/actions/edit-copy.png new file mode 100644 index 0000000..345b2f1 Binary files /dev/null and b/images/22x22/actions/edit-copy.png differ diff --git a/images/22x22/actions/edit-cut.png b/images/22x22/actions/edit-cut.png new file mode 100644 index 0000000..7017d1b Binary files /dev/null and b/images/22x22/actions/edit-cut.png differ diff --git a/images/22x22/actions/edit-delete.png b/images/22x22/actions/edit-delete.png new file mode 100644 index 0000000..3811b64 Binary files /dev/null and b/images/22x22/actions/edit-delete.png differ diff --git a/images/22x22/actions/edit-find-replace.png b/images/22x22/actions/edit-find-replace.png new file mode 100644 index 0000000..de3a75f Binary files /dev/null and b/images/22x22/actions/edit-find-replace.png differ diff --git a/images/22x22/actions/edit-find.png b/images/22x22/actions/edit-find.png new file mode 100644 index 0000000..4f078cb Binary files /dev/null and b/images/22x22/actions/edit-find.png differ diff --git a/images/22x22/actions/edit-paste.png b/images/22x22/actions/edit-paste.png new file mode 100644 index 0000000..f6a625c Binary files /dev/null and b/images/22x22/actions/edit-paste.png differ diff --git a/images/22x22/actions/edit-redo.png b/images/22x22/actions/edit-redo.png new file mode 100644 index 0000000..576cfc7 Binary files /dev/null and b/images/22x22/actions/edit-redo.png differ diff --git a/images/22x22/actions/edit-select-all.png b/images/22x22/actions/edit-select-all.png new file mode 100644 index 0000000..e6331c6 Binary files /dev/null and b/images/22x22/actions/edit-select-all.png differ diff --git a/images/22x22/actions/edit-undo.png b/images/22x22/actions/edit-undo.png new file mode 100644 index 0000000..f37c696 Binary files /dev/null and b/images/22x22/actions/edit-undo.png differ diff --git a/images/22x22/actions/folder-new.png b/images/22x22/actions/folder-new.png new file mode 100644 index 0000000..1c3dc94 Binary files /dev/null and b/images/22x22/actions/folder-new.png differ diff --git a/images/22x22/actions/format-indent-less.png b/images/22x22/actions/format-indent-less.png new file mode 100644 index 0000000..5292012 Binary files /dev/null and b/images/22x22/actions/format-indent-less.png differ diff --git a/images/22x22/actions/format-indent-more.png b/images/22x22/actions/format-indent-more.png new file mode 100644 index 0000000..ad2b527 Binary files /dev/null and b/images/22x22/actions/format-indent-more.png differ diff --git a/images/22x22/actions/format-justify-center.png b/images/22x22/actions/format-justify-center.png new file mode 100644 index 0000000..0777a9a Binary files /dev/null and b/images/22x22/actions/format-justify-center.png differ diff --git a/images/22x22/actions/format-justify-fill.png b/images/22x22/actions/format-justify-fill.png new file mode 100644 index 0000000..0ce4013 Binary files /dev/null and b/images/22x22/actions/format-justify-fill.png differ diff --git a/images/22x22/actions/format-justify-left.png b/images/22x22/actions/format-justify-left.png new file mode 100644 index 0000000..a8e1ca8 Binary files /dev/null and b/images/22x22/actions/format-justify-left.png differ diff --git a/images/22x22/actions/format-justify-right.png b/images/22x22/actions/format-justify-right.png new file mode 100644 index 0000000..8228d81 Binary files /dev/null and b/images/22x22/actions/format-justify-right.png differ diff --git a/images/22x22/actions/format-text-bold.png b/images/22x22/actions/format-text-bold.png new file mode 100644 index 0000000..7166e3d Binary files /dev/null and b/images/22x22/actions/format-text-bold.png differ diff --git a/images/22x22/actions/format-text-italic.png b/images/22x22/actions/format-text-italic.png new file mode 100644 index 0000000..ef68fb3 Binary files /dev/null and b/images/22x22/actions/format-text-italic.png differ diff --git a/images/22x22/actions/format-text-strikethrough.png b/images/22x22/actions/format-text-strikethrough.png new file mode 100644 index 0000000..e4ca573 Binary files /dev/null and b/images/22x22/actions/format-text-strikethrough.png differ diff --git a/images/22x22/actions/format-text-underline.png b/images/22x22/actions/format-text-underline.png new file mode 100644 index 0000000..d33422b Binary files /dev/null and b/images/22x22/actions/format-text-underline.png differ diff --git a/images/22x22/actions/go-bottom.png b/images/22x22/actions/go-bottom.png new file mode 100644 index 0000000..d81e071 Binary files /dev/null and b/images/22x22/actions/go-bottom.png differ diff --git a/images/22x22/actions/go-down.png b/images/22x22/actions/go-down.png new file mode 100644 index 0000000..af23788 Binary files /dev/null and b/images/22x22/actions/go-down.png differ diff --git a/images/22x22/actions/go-first.png b/images/22x22/actions/go-first.png new file mode 100644 index 0000000..bf0d8f2 Binary files /dev/null and b/images/22x22/actions/go-first.png differ diff --git a/images/22x22/actions/go-home.png b/images/22x22/actions/go-home.png new file mode 100644 index 0000000..9d62109 Binary files /dev/null and b/images/22x22/actions/go-home.png differ diff --git a/images/22x22/actions/go-jump.png b/images/22x22/actions/go-jump.png new file mode 100644 index 0000000..373dce9 Binary files /dev/null and b/images/22x22/actions/go-jump.png differ diff --git a/images/22x22/actions/go-last.png b/images/22x22/actions/go-last.png new file mode 100644 index 0000000..32df45d Binary files /dev/null and b/images/22x22/actions/go-last.png differ diff --git a/images/22x22/actions/go-next.png b/images/22x22/actions/go-next.png new file mode 100644 index 0000000..6f3f65d Binary files /dev/null and b/images/22x22/actions/go-next.png differ diff --git a/images/22x22/actions/go-previous.png b/images/22x22/actions/go-previous.png new file mode 100644 index 0000000..93be3d1 Binary files /dev/null and b/images/22x22/actions/go-previous.png differ diff --git a/images/22x22/actions/go-top.png b/images/22x22/actions/go-top.png new file mode 100644 index 0000000..96f98dd Binary files /dev/null and b/images/22x22/actions/go-top.png differ diff --git a/images/22x22/actions/go-up.png b/images/22x22/actions/go-up.png new file mode 100644 index 0000000..b0a0cd7 Binary files /dev/null and b/images/22x22/actions/go-up.png differ diff --git a/images/22x22/actions/list-add.png b/images/22x22/actions/list-add.png new file mode 100644 index 0000000..306d3d8 Binary files /dev/null and b/images/22x22/actions/list-add.png differ diff --git a/images/22x22/actions/list-remove.png b/images/22x22/actions/list-remove.png new file mode 100644 index 0000000..45e5c2a Binary files /dev/null and b/images/22x22/actions/list-remove.png differ diff --git a/images/22x22/actions/mail-forward.png b/images/22x22/actions/mail-forward.png new file mode 100644 index 0000000..51aa0b4 Binary files /dev/null and b/images/22x22/actions/mail-forward.png differ diff --git a/images/22x22/actions/mail-mark-junk.png b/images/22x22/actions/mail-mark-junk.png new file mode 100644 index 0000000..f980138 Binary files /dev/null and b/images/22x22/actions/mail-mark-junk.png differ diff --git a/images/22x22/actions/mail-mark-not-junk.png b/images/22x22/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..da6fb95 Binary files /dev/null and b/images/22x22/actions/mail-mark-not-junk.png differ diff --git a/images/22x22/actions/mail-message-new.png b/images/22x22/actions/mail-message-new.png new file mode 100644 index 0000000..96ae0e9 Binary files /dev/null and b/images/22x22/actions/mail-message-new.png differ diff --git a/images/22x22/actions/mail-reply-all.png b/images/22x22/actions/mail-reply-all.png new file mode 100644 index 0000000..c158a72 Binary files /dev/null and b/images/22x22/actions/mail-reply-all.png differ diff --git a/images/22x22/actions/mail-reply-sender.png b/images/22x22/actions/mail-reply-sender.png new file mode 100644 index 0000000..4f077a1 Binary files /dev/null and b/images/22x22/actions/mail-reply-sender.png differ diff --git a/images/22x22/actions/mail-send-receive.png b/images/22x22/actions/mail-send-receive.png new file mode 100644 index 0000000..69e8272 Binary files /dev/null and b/images/22x22/actions/mail-send-receive.png differ diff --git a/images/22x22/actions/media-eject.png b/images/22x22/actions/media-eject.png new file mode 100644 index 0000000..5a232e6 Binary files /dev/null and b/images/22x22/actions/media-eject.png differ diff --git a/images/22x22/actions/media-playback-pause.png b/images/22x22/actions/media-playback-pause.png new file mode 100644 index 0000000..ee40fc2 Binary files /dev/null and b/images/22x22/actions/media-playback-pause.png differ diff --git a/images/22x22/actions/media-playback-start.png b/images/22x22/actions/media-playback-start.png new file mode 100644 index 0000000..10102d8 Binary files /dev/null and b/images/22x22/actions/media-playback-start.png differ diff --git a/images/22x22/actions/media-playback-stop.png b/images/22x22/actions/media-playback-stop.png new file mode 100644 index 0000000..d0e4733 Binary files /dev/null and b/images/22x22/actions/media-playback-stop.png differ diff --git a/images/22x22/actions/media-record.png b/images/22x22/actions/media-record.png new file mode 100644 index 0000000..fb53e14 Binary files /dev/null and b/images/22x22/actions/media-record.png differ diff --git a/images/22x22/actions/media-seek-backward.png b/images/22x22/actions/media-seek-backward.png new file mode 100644 index 0000000..e094d12 Binary files /dev/null and b/images/22x22/actions/media-seek-backward.png differ diff --git a/images/22x22/actions/media-seek-forward.png b/images/22x22/actions/media-seek-forward.png new file mode 100644 index 0000000..b9c2c6c Binary files /dev/null and b/images/22x22/actions/media-seek-forward.png differ diff --git a/images/22x22/actions/media-skip-backward.png b/images/22x22/actions/media-skip-backward.png new file mode 100644 index 0000000..2a5e703 Binary files /dev/null and b/images/22x22/actions/media-skip-backward.png differ diff --git a/images/22x22/actions/media-skip-forward.png b/images/22x22/actions/media-skip-forward.png new file mode 100644 index 0000000..28bca3e Binary files /dev/null and b/images/22x22/actions/media-skip-forward.png differ diff --git a/images/22x22/actions/process-stop.png b/images/22x22/actions/process-stop.png new file mode 100644 index 0000000..b68290b Binary files /dev/null and b/images/22x22/actions/process-stop.png differ diff --git a/images/22x22/actions/system-lock-screen.png b/images/22x22/actions/system-lock-screen.png new file mode 100644 index 0000000..dc6b825 Binary files /dev/null and b/images/22x22/actions/system-lock-screen.png differ diff --git a/images/22x22/actions/system-log-out.png b/images/22x22/actions/system-log-out.png new file mode 100644 index 0000000..28ac66f Binary files /dev/null and b/images/22x22/actions/system-log-out.png differ diff --git a/images/22x22/actions/system-search.png b/images/22x22/actions/system-search.png new file mode 100644 index 0000000..4e522b2 Binary files /dev/null and b/images/22x22/actions/system-search.png differ diff --git a/images/22x22/actions/system-shutdown.png b/images/22x22/actions/system-shutdown.png new file mode 100644 index 0000000..0c2a2d1 Binary files /dev/null and b/images/22x22/actions/system-shutdown.png differ diff --git a/images/22x22/actions/tab-new.png b/images/22x22/actions/tab-new.png new file mode 100644 index 0000000..c7c7cf2 Binary files /dev/null and b/images/22x22/actions/tab-new.png differ diff --git a/images/22x22/actions/view-fullscreen.png b/images/22x22/actions/view-fullscreen.png new file mode 100644 index 0000000..6f0f292 Binary files /dev/null and b/images/22x22/actions/view-fullscreen.png differ diff --git a/images/22x22/actions/view-refresh.png b/images/22x22/actions/view-refresh.png new file mode 100644 index 0000000..cab4d02 Binary files /dev/null and b/images/22x22/actions/view-refresh.png differ diff --git a/images/22x22/actions/window-new.png b/images/22x22/actions/window-new.png new file mode 100644 index 0000000..314f997 Binary files /dev/null and b/images/22x22/actions/window-new.png differ diff --git a/images/22x22/animations/Makefile.am b/images/22x22/animations/Makefile.am new file mode 100644 index 0000000..25dc0a7 --- /dev/null +++ b/images/22x22/animations/Makefile.am @@ -0,0 +1,14 @@ + +size = 22x22 +context = animations + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + process-working.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/22x22/animations/Makefile.in b/images/22x22/animations/Makefile.in new file mode 100644 index 0000000..4b36b1f --- /dev/null +++ b/images/22x22/animations/Makefile.in @@ -0,0 +1,361 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/animations +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = animations +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + process-working.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/animations/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/animations/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/animations/process-working.png b/images/22x22/animations/process-working.png new file mode 100644 index 0000000..9005de7 Binary files /dev/null and b/images/22x22/animations/process-working.png differ diff --git a/images/22x22/apps/Makefile.am b/images/22x22/apps/Makefile.am new file mode 100644 index 0000000..5055b34 --- /dev/null +++ b/images/22x22/apps/Makefile.am @@ -0,0 +1,52 @@ + +size = 22x22 +context = apps + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + accessories-calculator.png \ + accessories-character-map.png \ + accessories-text-editor.png \ + help-browser.png \ + internet-group-chat.png \ + internet-mail.png \ + internet-news-reader.png \ + internet-web-browser.png \ + office-calendar.png \ + preferences-desktop-accessibility.png \ + preferences-desktop-assistive-technology.png \ + preferences-desktop-font.png \ + preferences-desktop-keyboard-shortcuts.png \ + preferences-desktop-locale.png \ + preferences-desktop-multimedia.png \ + preferences-desktop-remote-desktop.png \ + preferences-desktop-screensaver.png \ + preferences-desktop-theme.png \ + preferences-desktop-wallpaper.png \ + preferences-system-network-proxy.png \ + preferences-system-session.png \ + preferences-system-windows.png \ + system-file-manager.png \ + system-installer.png \ + system-software-update.png \ + system-users.png \ + utilities-system-monitor.png \ + utilities-terminal.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/apps/Makefile.in b/images/22x22/apps/Makefile.in new file mode 100644 index 0000000..6179c05 --- /dev/null +++ b/images/22x22/apps/Makefile.in @@ -0,0 +1,398 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/apps +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = apps +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + accessories-calculator.png \ + accessories-character-map.png \ + accessories-text-editor.png \ + help-browser.png \ + internet-group-chat.png \ + internet-mail.png \ + internet-news-reader.png \ + internet-web-browser.png \ + office-calendar.png \ + preferences-desktop-accessibility.png \ + preferences-desktop-assistive-technology.png \ + preferences-desktop-font.png \ + preferences-desktop-keyboard-shortcuts.png \ + preferences-desktop-locale.png \ + preferences-desktop-multimedia.png \ + preferences-desktop-remote-desktop.png \ + preferences-desktop-screensaver.png \ + preferences-desktop-theme.png \ + preferences-desktop-wallpaper.png \ + preferences-system-network-proxy.png \ + preferences-system-session.png \ + preferences-system-windows.png \ + system-file-manager.png \ + system-installer.png \ + system-software-update.png \ + system-users.png \ + utilities-system-monitor.png \ + utilities-terminal.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/apps/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/apps/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/apps/accessories-calculator.png b/images/22x22/apps/accessories-calculator.png new file mode 100644 index 0000000..e12d465 Binary files /dev/null and b/images/22x22/apps/accessories-calculator.png differ diff --git a/images/22x22/apps/accessories-character-map.png b/images/22x22/apps/accessories-character-map.png new file mode 100644 index 0000000..e630c7e Binary files /dev/null and b/images/22x22/apps/accessories-character-map.png differ diff --git a/images/22x22/apps/accessories-text-editor.png b/images/22x22/apps/accessories-text-editor.png new file mode 100644 index 0000000..c3d245d Binary files /dev/null and b/images/22x22/apps/accessories-text-editor.png differ diff --git a/images/22x22/apps/help-browser.png b/images/22x22/apps/help-browser.png new file mode 100644 index 0000000..c67c7a6 Binary files /dev/null and b/images/22x22/apps/help-browser.png differ diff --git a/images/22x22/apps/internet-group-chat.png b/images/22x22/apps/internet-group-chat.png new file mode 100644 index 0000000..3cac5df Binary files /dev/null and b/images/22x22/apps/internet-group-chat.png differ diff --git a/images/22x22/apps/internet-mail.png b/images/22x22/apps/internet-mail.png new file mode 100644 index 0000000..68fc82e Binary files /dev/null and b/images/22x22/apps/internet-mail.png differ diff --git a/images/22x22/apps/internet-news-reader.png b/images/22x22/apps/internet-news-reader.png new file mode 100644 index 0000000..43950eb Binary files /dev/null and b/images/22x22/apps/internet-news-reader.png differ diff --git a/images/22x22/apps/internet-web-browser.png b/images/22x22/apps/internet-web-browser.png new file mode 100644 index 0000000..4125479 Binary files /dev/null and b/images/22x22/apps/internet-web-browser.png differ diff --git a/images/22x22/apps/office-calendar.png b/images/22x22/apps/office-calendar.png new file mode 100644 index 0000000..60ad82b Binary files /dev/null and b/images/22x22/apps/office-calendar.png differ diff --git a/images/22x22/apps/preferences-desktop-accessibility.png b/images/22x22/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..919d735 Binary files /dev/null and b/images/22x22/apps/preferences-desktop-accessibility.png differ diff --git a/images/22x22/apps/preferences-desktop-assistive-technology.png b/images/22x22/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..483e4a6 Binary files /dev/null and b/images/22x22/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/22x22/apps/preferences-desktop-font.png b/images/22x22/apps/preferences-desktop-font.png new file mode 100644 index 0000000..d452db7 Binary files /dev/null and b/images/22x22/apps/preferences-desktop-font.png differ diff --git a/images/22x22/apps/preferences-desktop-keyboard-shortcuts.png b/images/22x22/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..c3e1328 Binary files /dev/null and b/images/22x22/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/22x22/apps/preferences-desktop-locale.png b/images/22x22/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..ed0480b Binary files /dev/null and b/images/22x22/apps/preferences-desktop-locale.png differ diff --git a/images/22x22/apps/preferences-desktop-multimedia.png b/images/22x22/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..e1bdf85 Binary files /dev/null and b/images/22x22/apps/preferences-desktop-multimedia.png differ diff --git a/images/22x22/apps/preferences-desktop-remote-desktop.png b/images/22x22/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..d25792b Binary files /dev/null and b/images/22x22/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/22x22/apps/preferences-desktop-screensaver.png b/images/22x22/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..619e196 Binary files /dev/null and b/images/22x22/apps/preferences-desktop-screensaver.png differ diff --git a/images/22x22/apps/preferences-desktop-theme.png b/images/22x22/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7b5f0ba Binary files /dev/null and b/images/22x22/apps/preferences-desktop-theme.png differ diff --git a/images/22x22/apps/preferences-desktop-wallpaper.png b/images/22x22/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..3389e55 Binary files /dev/null and b/images/22x22/apps/preferences-desktop-wallpaper.png differ diff --git a/images/22x22/apps/preferences-system-network-proxy.png b/images/22x22/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bec24de Binary files /dev/null and b/images/22x22/apps/preferences-system-network-proxy.png differ diff --git a/images/22x22/apps/preferences-system-session.png b/images/22x22/apps/preferences-system-session.png new file mode 100644 index 0000000..9a09875 Binary files /dev/null and b/images/22x22/apps/preferences-system-session.png differ diff --git a/images/22x22/apps/preferences-system-windows.png b/images/22x22/apps/preferences-system-windows.png new file mode 100644 index 0000000..2caa205 Binary files /dev/null and b/images/22x22/apps/preferences-system-windows.png differ diff --git a/images/22x22/apps/system-file-manager.png b/images/22x22/apps/system-file-manager.png new file mode 100644 index 0000000..44d6310 Binary files /dev/null and b/images/22x22/apps/system-file-manager.png differ diff --git a/images/22x22/apps/system-installer.png b/images/22x22/apps/system-installer.png new file mode 100644 index 0000000..b75c6b1 Binary files /dev/null and b/images/22x22/apps/system-installer.png differ diff --git a/images/22x22/apps/system-software-update.png b/images/22x22/apps/system-software-update.png new file mode 100644 index 0000000..5f7a362 Binary files /dev/null and b/images/22x22/apps/system-software-update.png differ diff --git a/images/22x22/apps/system-users.png b/images/22x22/apps/system-users.png new file mode 100644 index 0000000..bced28c Binary files /dev/null and b/images/22x22/apps/system-users.png differ diff --git a/images/22x22/apps/utilities-system-monitor.png b/images/22x22/apps/utilities-system-monitor.png new file mode 100644 index 0000000..f2d266f Binary files /dev/null and b/images/22x22/apps/utilities-system-monitor.png differ diff --git a/images/22x22/apps/utilities-terminal.png b/images/22x22/apps/utilities-terminal.png new file mode 100644 index 0000000..ceb0fb9 Binary files /dev/null and b/images/22x22/apps/utilities-terminal.png differ diff --git a/images/22x22/categories/Makefile.am b/images/22x22/categories/Makefile.am new file mode 100644 index 0000000..998d4c8 --- /dev/null +++ b/images/22x22/categories/Makefile.am @@ -0,0 +1,36 @@ + +size = 22x22 +context = categories + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + applications-accessories.png \ + applications-development.png \ + applications-games.png \ + applications-graphics.png \ + applications-internet.png \ + applications-multimedia.png \ + applications-office.png \ + applications-other.png \ + applications-system.png \ + preferences-desktop.png \ + preferences-desktop-peripherals.png \ + preferences-system.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/categories/Makefile.in b/images/22x22/categories/Makefile.in new file mode 100644 index 0000000..4860c0e --- /dev/null +++ b/images/22x22/categories/Makefile.in @@ -0,0 +1,382 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/categories +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = categories +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + applications-accessories.png \ + applications-development.png \ + applications-games.png \ + applications-graphics.png \ + applications-internet.png \ + applications-multimedia.png \ + applications-office.png \ + applications-other.png \ + applications-system.png \ + preferences-desktop.png \ + preferences-desktop-peripherals.png \ + preferences-system.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/categories/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/categories/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/categories/applications-accessories.png b/images/22x22/categories/applications-accessories.png new file mode 100644 index 0000000..f619403 Binary files /dev/null and b/images/22x22/categories/applications-accessories.png differ diff --git a/images/22x22/categories/applications-development.png b/images/22x22/categories/applications-development.png new file mode 100644 index 0000000..8ef08e2 Binary files /dev/null and b/images/22x22/categories/applications-development.png differ diff --git a/images/22x22/categories/applications-games.png b/images/22x22/categories/applications-games.png new file mode 100644 index 0000000..cc78378 Binary files /dev/null and b/images/22x22/categories/applications-games.png differ diff --git a/images/22x22/categories/applications-graphics.png b/images/22x22/categories/applications-graphics.png new file mode 100644 index 0000000..ca883da Binary files /dev/null and b/images/22x22/categories/applications-graphics.png differ diff --git a/images/22x22/categories/applications-internet.png b/images/22x22/categories/applications-internet.png new file mode 100644 index 0000000..d4bfb82 Binary files /dev/null and b/images/22x22/categories/applications-internet.png differ diff --git a/images/22x22/categories/applications-multimedia.png b/images/22x22/categories/applications-multimedia.png new file mode 100644 index 0000000..ae2d28c Binary files /dev/null and b/images/22x22/categories/applications-multimedia.png differ diff --git a/images/22x22/categories/applications-office.png b/images/22x22/categories/applications-office.png new file mode 100644 index 0000000..7e3be9b Binary files /dev/null and b/images/22x22/categories/applications-office.png differ diff --git a/images/22x22/categories/applications-other.png b/images/22x22/categories/applications-other.png new file mode 100644 index 0000000..308acb2 Binary files /dev/null and b/images/22x22/categories/applications-other.png differ diff --git a/images/22x22/categories/applications-system.png b/images/22x22/categories/applications-system.png new file mode 100644 index 0000000..4decc89 Binary files /dev/null and b/images/22x22/categories/applications-system.png differ diff --git a/images/22x22/categories/preferences-desktop-peripherals.png b/images/22x22/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..985bcde Binary files /dev/null and b/images/22x22/categories/preferences-desktop-peripherals.png differ diff --git a/images/22x22/categories/preferences-desktop.png b/images/22x22/categories/preferences-desktop.png new file mode 100644 index 0000000..c359063 Binary files /dev/null and b/images/22x22/categories/preferences-desktop.png differ diff --git a/images/22x22/categories/preferences-system.png b/images/22x22/categories/preferences-system.png new file mode 100644 index 0000000..cc91d65 Binary files /dev/null and b/images/22x22/categories/preferences-system.png differ diff --git a/images/22x22/devices/Makefile.am b/images/22x22/devices/Makefile.am new file mode 100644 index 0000000..95b4dff --- /dev/null +++ b/images/22x22/devices/Makefile.am @@ -0,0 +1,44 @@ + +size = 22x22 +context = devices + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + audio-card.png \ + audio-input-microphone.png \ + battery.png \ + camera-photo.png \ + camera-video.png \ + computer.png \ + drive-optical.png \ + drive-harddisk.png \ + drive-removable-media.png \ + input-gaming.png \ + input-keyboard.png \ + input-mouse.png \ + media-optical.png \ + media-floppy.png \ + media-flash.png \ + multimedia-player.png \ + network-wired.png \ + network-wireless.png \ + printer.png \ + video-display.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/devices/Makefile.in b/images/22x22/devices/Makefile.in new file mode 100644 index 0000000..015d4ec --- /dev/null +++ b/images/22x22/devices/Makefile.in @@ -0,0 +1,390 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/devices +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = devices +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + audio-card.png \ + audio-input-microphone.png \ + battery.png \ + camera-photo.png \ + camera-video.png \ + computer.png \ + drive-optical.png \ + drive-harddisk.png \ + drive-removable-media.png \ + input-gaming.png \ + input-keyboard.png \ + input-mouse.png \ + media-optical.png \ + media-floppy.png \ + media-flash.png \ + multimedia-player.png \ + network-wired.png \ + network-wireless.png \ + printer.png \ + video-display.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/devices/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/devices/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/devices/audio-card.png b/images/22x22/devices/audio-card.png new file mode 100644 index 0000000..93d99aa Binary files /dev/null and b/images/22x22/devices/audio-card.png differ diff --git a/images/22x22/devices/audio-input-microphone.png b/images/22x22/devices/audio-input-microphone.png new file mode 100644 index 0000000..496d244 Binary files /dev/null and b/images/22x22/devices/audio-input-microphone.png differ diff --git a/images/22x22/devices/battery.png b/images/22x22/devices/battery.png new file mode 100644 index 0000000..ad45674 Binary files /dev/null and b/images/22x22/devices/battery.png differ diff --git a/images/22x22/devices/camera-photo.png b/images/22x22/devices/camera-photo.png new file mode 100644 index 0000000..8d28baf Binary files /dev/null and b/images/22x22/devices/camera-photo.png differ diff --git a/images/22x22/devices/camera-video.png b/images/22x22/devices/camera-video.png new file mode 100644 index 0000000..e84992c Binary files /dev/null and b/images/22x22/devices/camera-video.png differ diff --git a/images/22x22/devices/computer.png b/images/22x22/devices/computer.png new file mode 100644 index 0000000..b6e6b39 Binary files /dev/null and b/images/22x22/devices/computer.png differ diff --git a/images/22x22/devices/drive-harddisk.png b/images/22x22/devices/drive-harddisk.png new file mode 100644 index 0000000..da41305 Binary files /dev/null and b/images/22x22/devices/drive-harddisk.png differ diff --git a/images/22x22/devices/drive-optical.png b/images/22x22/devices/drive-optical.png new file mode 100644 index 0000000..af2c826 Binary files /dev/null and b/images/22x22/devices/drive-optical.png differ diff --git a/images/22x22/devices/drive-removable-media.png b/images/22x22/devices/drive-removable-media.png new file mode 100644 index 0000000..f487310 Binary files /dev/null and b/images/22x22/devices/drive-removable-media.png differ diff --git a/images/22x22/devices/input-gaming.png b/images/22x22/devices/input-gaming.png new file mode 100644 index 0000000..18f7739 Binary files /dev/null and b/images/22x22/devices/input-gaming.png differ diff --git a/images/22x22/devices/input-keyboard.png b/images/22x22/devices/input-keyboard.png new file mode 100644 index 0000000..6ffb232 Binary files /dev/null and b/images/22x22/devices/input-keyboard.png differ diff --git a/images/22x22/devices/input-mouse.png b/images/22x22/devices/input-mouse.png new file mode 100644 index 0000000..c1bbc79 Binary files /dev/null and b/images/22x22/devices/input-mouse.png differ diff --git a/images/22x22/devices/media-flash.png b/images/22x22/devices/media-flash.png new file mode 100644 index 0000000..c6a2d0c Binary files /dev/null and b/images/22x22/devices/media-flash.png differ diff --git a/images/22x22/devices/media-floppy.png b/images/22x22/devices/media-floppy.png new file mode 100644 index 0000000..af79de8 Binary files /dev/null and b/images/22x22/devices/media-floppy.png differ diff --git a/images/22x22/devices/media-optical.png b/images/22x22/devices/media-optical.png new file mode 100644 index 0000000..e86bfa3 Binary files /dev/null and b/images/22x22/devices/media-optical.png differ diff --git a/images/22x22/devices/multimedia-player.png b/images/22x22/devices/multimedia-player.png new file mode 100644 index 0000000..8be0228 Binary files /dev/null and b/images/22x22/devices/multimedia-player.png differ diff --git a/images/22x22/devices/network-wired.png b/images/22x22/devices/network-wired.png new file mode 100644 index 0000000..51c8b16 Binary files /dev/null and b/images/22x22/devices/network-wired.png differ diff --git a/images/22x22/devices/network-wireless.png b/images/22x22/devices/network-wireless.png new file mode 100644 index 0000000..2d7851f Binary files /dev/null and b/images/22x22/devices/network-wireless.png differ diff --git a/images/22x22/devices/printer.png b/images/22x22/devices/printer.png new file mode 100644 index 0000000..65caccf Binary files /dev/null and b/images/22x22/devices/printer.png differ diff --git a/images/22x22/devices/video-display.png b/images/22x22/devices/video-display.png new file mode 100644 index 0000000..f244adb Binary files /dev/null and b/images/22x22/devices/video-display.png differ diff --git a/images/22x22/emblems/Makefile.am b/images/22x22/emblems/Makefile.am new file mode 100644 index 0000000..9076f85 --- /dev/null +++ b/images/22x22/emblems/Makefile.am @@ -0,0 +1,31 @@ + +size = 22x22 +context = emblems + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + emblem-favorite.png \ + emblem-important.png \ + emblem-photos.png \ + emblem-readonly.png \ + emblem-symbolic-link.png \ + emblem-system.png \ + emblem-unreadable.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/emblems/Makefile.in b/images/22x22/emblems/Makefile.in new file mode 100644 index 0000000..2363a82 --- /dev/null +++ b/images/22x22/emblems/Makefile.in @@ -0,0 +1,377 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/emblems +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = emblems +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + emblem-favorite.png \ + emblem-important.png \ + emblem-photos.png \ + emblem-readonly.png \ + emblem-symbolic-link.png \ + emblem-system.png \ + emblem-unreadable.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/emblems/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/emblems/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/emblems/emblem-favorite.png b/images/22x22/emblems/emblem-favorite.png new file mode 100644 index 0000000..9b3d7ac Binary files /dev/null and b/images/22x22/emblems/emblem-favorite.png differ diff --git a/images/22x22/emblems/emblem-important.png b/images/22x22/emblems/emblem-important.png new file mode 100644 index 0000000..0437a0d Binary files /dev/null and b/images/22x22/emblems/emblem-important.png differ diff --git a/images/22x22/emblems/emblem-photos.png b/images/22x22/emblems/emblem-photos.png new file mode 100644 index 0000000..b8b1c63 Binary files /dev/null and b/images/22x22/emblems/emblem-photos.png differ diff --git a/images/22x22/emblems/emblem-readonly.png b/images/22x22/emblems/emblem-readonly.png new file mode 100644 index 0000000..33896d9 Binary files /dev/null and b/images/22x22/emblems/emblem-readonly.png differ diff --git a/images/22x22/emblems/emblem-symbolic-link.png b/images/22x22/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..d02781d Binary files /dev/null and b/images/22x22/emblems/emblem-symbolic-link.png differ diff --git a/images/22x22/emblems/emblem-system.png b/images/22x22/emblems/emblem-system.png new file mode 100644 index 0000000..1f2b3b3 Binary files /dev/null and b/images/22x22/emblems/emblem-system.png differ diff --git a/images/22x22/emblems/emblem-unreadable.png b/images/22x22/emblems/emblem-unreadable.png new file mode 100644 index 0000000..6a88bdb Binary files /dev/null and b/images/22x22/emblems/emblem-unreadable.png differ diff --git a/images/22x22/emotes/Makefile.am b/images/22x22/emotes/Makefile.am new file mode 100644 index 0000000..77044b3 --- /dev/null +++ b/images/22x22/emotes/Makefile.am @@ -0,0 +1,37 @@ + +size = 22x22 +context = emotes + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + face-angel.png \ + face-crying.png \ + face-devilish.png \ + face-glasses.png \ + face-grin.png \ + face-kiss.png \ + face-monkey.png \ + face-plain.png \ + face-sad.png \ + face-smile.png \ + face-smile-big.png \ + face-surprise.png \ + face-wink.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/emotes/Makefile.in b/images/22x22/emotes/Makefile.in new file mode 100644 index 0000000..ec602b5 --- /dev/null +++ b/images/22x22/emotes/Makefile.in @@ -0,0 +1,383 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/emotes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = emotes +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + face-angel.png \ + face-crying.png \ + face-devilish.png \ + face-glasses.png \ + face-grin.png \ + face-kiss.png \ + face-monkey.png \ + face-plain.png \ + face-sad.png \ + face-smile.png \ + face-smile-big.png \ + face-surprise.png \ + face-wink.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/emotes/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/emotes/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/emotes/face-angel.png b/images/22x22/emotes/face-angel.png new file mode 100644 index 0000000..604bf17 Binary files /dev/null and b/images/22x22/emotes/face-angel.png differ diff --git a/images/22x22/emotes/face-crying.png b/images/22x22/emotes/face-crying.png new file mode 100644 index 0000000..761b0e8 Binary files /dev/null and b/images/22x22/emotes/face-crying.png differ diff --git a/images/22x22/emotes/face-devilish.png b/images/22x22/emotes/face-devilish.png new file mode 100644 index 0000000..fbd7808 Binary files /dev/null and b/images/22x22/emotes/face-devilish.png differ diff --git a/images/22x22/emotes/face-glasses.png b/images/22x22/emotes/face-glasses.png new file mode 100644 index 0000000..5551f12 Binary files /dev/null and b/images/22x22/emotes/face-glasses.png differ diff --git a/images/22x22/emotes/face-grin.png b/images/22x22/emotes/face-grin.png new file mode 100644 index 0000000..4513b92 Binary files /dev/null and b/images/22x22/emotes/face-grin.png differ diff --git a/images/22x22/emotes/face-kiss.png b/images/22x22/emotes/face-kiss.png new file mode 100644 index 0000000..a5d1bdd Binary files /dev/null and b/images/22x22/emotes/face-kiss.png differ diff --git a/images/22x22/emotes/face-monkey.png b/images/22x22/emotes/face-monkey.png new file mode 100644 index 0000000..ced7b2e Binary files /dev/null and b/images/22x22/emotes/face-monkey.png differ diff --git a/images/22x22/emotes/face-plain.png b/images/22x22/emotes/face-plain.png new file mode 100644 index 0000000..ea0ad6a Binary files /dev/null and b/images/22x22/emotes/face-plain.png differ diff --git a/images/22x22/emotes/face-sad.png b/images/22x22/emotes/face-sad.png new file mode 100644 index 0000000..23afcb2 Binary files /dev/null and b/images/22x22/emotes/face-sad.png differ diff --git a/images/22x22/emotes/face-smile-big.png b/images/22x22/emotes/face-smile-big.png new file mode 100644 index 0000000..b2e8a36 Binary files /dev/null and b/images/22x22/emotes/face-smile-big.png differ diff --git a/images/22x22/emotes/face-smile.png b/images/22x22/emotes/face-smile.png new file mode 100644 index 0000000..45ff17d Binary files /dev/null and b/images/22x22/emotes/face-smile.png differ diff --git a/images/22x22/emotes/face-surprise.png b/images/22x22/emotes/face-surprise.png new file mode 100644 index 0000000..9bae9b6 Binary files /dev/null and b/images/22x22/emotes/face-surprise.png differ diff --git a/images/22x22/emotes/face-wink.png b/images/22x22/emotes/face-wink.png new file mode 100644 index 0000000..cf10119 Binary files /dev/null and b/images/22x22/emotes/face-wink.png differ diff --git a/images/22x22/mimetypes/Makefile.am b/images/22x22/mimetypes/Makefile.am new file mode 100644 index 0000000..45f57c2 --- /dev/null +++ b/images/22x22/mimetypes/Makefile.am @@ -0,0 +1,45 @@ + +size = 22x22 +context = mimetypes + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + application-certificate.png \ + application-x-executable.png \ + audio-x-generic.png \ + font-x-generic.png \ + image-x-generic.png \ + package-x-generic.png \ + text-html.png \ + text-x-generic.png \ + text-x-generic-template.png \ + text-x-script.png \ + video-x-generic.png \ + x-office-address-book.png \ + x-office-calendar.png \ + x-office-document.png \ + x-office-document-template.png \ + x-office-drawing.png \ + x-office-drawing-template.png \ + x-office-presentation.png \ + x-office-presentation-template.png \ + x-office-spreadsheet.png \ + x-office-spreadsheet-template.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/mimetypes/Makefile.in b/images/22x22/mimetypes/Makefile.in new file mode 100644 index 0000000..79ddb54 --- /dev/null +++ b/images/22x22/mimetypes/Makefile.in @@ -0,0 +1,391 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/mimetypes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = mimetypes +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + application-certificate.png \ + application-x-executable.png \ + audio-x-generic.png \ + font-x-generic.png \ + image-x-generic.png \ + package-x-generic.png \ + text-html.png \ + text-x-generic.png \ + text-x-generic-template.png \ + text-x-script.png \ + video-x-generic.png \ + x-office-address-book.png \ + x-office-calendar.png \ + x-office-document.png \ + x-office-document-template.png \ + x-office-drawing.png \ + x-office-drawing-template.png \ + x-office-presentation.png \ + x-office-presentation-template.png \ + x-office-spreadsheet.png \ + x-office-spreadsheet-template.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/mimetypes/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/mimetypes/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/mimetypes/application-certificate.png b/images/22x22/mimetypes/application-certificate.png new file mode 100644 index 0000000..9657b43 Binary files /dev/null and b/images/22x22/mimetypes/application-certificate.png differ diff --git a/images/22x22/mimetypes/application-x-executable.png b/images/22x22/mimetypes/application-x-executable.png new file mode 100644 index 0000000..2bb2adf Binary files /dev/null and b/images/22x22/mimetypes/application-x-executable.png differ diff --git a/images/22x22/mimetypes/audio-x-generic.png b/images/22x22/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..318bebd Binary files /dev/null and b/images/22x22/mimetypes/audio-x-generic.png differ diff --git a/images/22x22/mimetypes/font-x-generic.png b/images/22x22/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdc1814 Binary files /dev/null and b/images/22x22/mimetypes/font-x-generic.png differ diff --git a/images/22x22/mimetypes/image-x-generic.png b/images/22x22/mimetypes/image-x-generic.png new file mode 100644 index 0000000..10f4671 Binary files /dev/null and b/images/22x22/mimetypes/image-x-generic.png differ diff --git a/images/22x22/mimetypes/package-x-generic.png b/images/22x22/mimetypes/package-x-generic.png new file mode 100644 index 0000000..dc76287 Binary files /dev/null and b/images/22x22/mimetypes/package-x-generic.png differ diff --git a/images/22x22/mimetypes/text-html.png b/images/22x22/mimetypes/text-html.png new file mode 100644 index 0000000..51beaff Binary files /dev/null and b/images/22x22/mimetypes/text-html.png differ diff --git a/images/22x22/mimetypes/text-x-generic-template.png b/images/22x22/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..f13f7c9 Binary files /dev/null and b/images/22x22/mimetypes/text-x-generic-template.png differ diff --git a/images/22x22/mimetypes/text-x-generic.png b/images/22x22/mimetypes/text-x-generic.png new file mode 100644 index 0000000..d68a56c Binary files /dev/null and b/images/22x22/mimetypes/text-x-generic.png differ diff --git a/images/22x22/mimetypes/text-x-script.png b/images/22x22/mimetypes/text-x-script.png new file mode 100644 index 0000000..abf8f61 Binary files /dev/null and b/images/22x22/mimetypes/text-x-script.png differ diff --git a/images/22x22/mimetypes/video-x-generic.png b/images/22x22/mimetypes/video-x-generic.png new file mode 100644 index 0000000..6e26d9c Binary files /dev/null and b/images/22x22/mimetypes/video-x-generic.png differ diff --git a/images/22x22/mimetypes/x-office-address-book.png b/images/22x22/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..2e519ce Binary files /dev/null and b/images/22x22/mimetypes/x-office-address-book.png differ diff --git a/images/22x22/mimetypes/x-office-calendar.png b/images/22x22/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..0c224e9 Binary files /dev/null and b/images/22x22/mimetypes/x-office-calendar.png differ diff --git a/images/22x22/mimetypes/x-office-document-template.png b/images/22x22/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..18c4246 Binary files /dev/null and b/images/22x22/mimetypes/x-office-document-template.png differ diff --git a/images/22x22/mimetypes/x-office-document.png b/images/22x22/mimetypes/x-office-document.png new file mode 100644 index 0000000..c9baeda Binary files /dev/null and b/images/22x22/mimetypes/x-office-document.png differ diff --git a/images/22x22/mimetypes/x-office-drawing-template.png b/images/22x22/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..a7045ab Binary files /dev/null and b/images/22x22/mimetypes/x-office-drawing-template.png differ diff --git a/images/22x22/mimetypes/x-office-drawing.png b/images/22x22/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5d84f9f Binary files /dev/null and b/images/22x22/mimetypes/x-office-drawing.png differ diff --git a/images/22x22/mimetypes/x-office-presentation-template.png b/images/22x22/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..1f7bc9b Binary files /dev/null and b/images/22x22/mimetypes/x-office-presentation-template.png differ diff --git a/images/22x22/mimetypes/x-office-presentation.png b/images/22x22/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..3633f53 Binary files /dev/null and b/images/22x22/mimetypes/x-office-presentation.png differ diff --git a/images/22x22/mimetypes/x-office-spreadsheet-template.png b/images/22x22/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..ea7d467 Binary files /dev/null and b/images/22x22/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/22x22/mimetypes/x-office-spreadsheet.png b/images/22x22/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c82d574 Binary files /dev/null and b/images/22x22/mimetypes/x-office-spreadsheet.png differ diff --git a/images/22x22/places/Makefile.am b/images/22x22/places/Makefile.am new file mode 100644 index 0000000..ec62b5a --- /dev/null +++ b/images/22x22/places/Makefile.am @@ -0,0 +1,33 @@ + +size = 22x22 +context = places + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + folder.png \ + folder-remote.png \ + folder-saved-search.png \ + network-server.png \ + network-workgroup.png \ + start-here.png \ + user-desktop.png \ + user-home.png \ + user-trash.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/places/Makefile.in b/images/22x22/places/Makefile.in new file mode 100644 index 0000000..824a962 --- /dev/null +++ b/images/22x22/places/Makefile.in @@ -0,0 +1,379 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/places +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = places +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + folder.png \ + folder-remote.png \ + folder-saved-search.png \ + network-server.png \ + network-workgroup.png \ + start-here.png \ + user-desktop.png \ + user-home.png \ + user-trash.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/places/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/places/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/places/folder-remote.png b/images/22x22/places/folder-remote.png new file mode 100644 index 0000000..82db43b Binary files /dev/null and b/images/22x22/places/folder-remote.png differ diff --git a/images/22x22/places/folder-saved-search.png b/images/22x22/places/folder-saved-search.png new file mode 100644 index 0000000..901f4a7 Binary files /dev/null and b/images/22x22/places/folder-saved-search.png differ diff --git a/images/22x22/places/folder.png b/images/22x22/places/folder.png new file mode 100644 index 0000000..01f45b8 Binary files /dev/null and b/images/22x22/places/folder.png differ diff --git a/images/22x22/places/network-server.png b/images/22x22/places/network-server.png new file mode 100644 index 0000000..a0d7118 Binary files /dev/null and b/images/22x22/places/network-server.png differ diff --git a/images/22x22/places/network-workgroup.png b/images/22x22/places/network-workgroup.png new file mode 100644 index 0000000..f96c9db Binary files /dev/null and b/images/22x22/places/network-workgroup.png differ diff --git a/images/22x22/places/start-here.png b/images/22x22/places/start-here.png new file mode 100644 index 0000000..fc9b049 Binary files /dev/null and b/images/22x22/places/start-here.png differ diff --git a/images/22x22/places/user-desktop.png b/images/22x22/places/user-desktop.png new file mode 100644 index 0000000..d60b2f1 Binary files /dev/null and b/images/22x22/places/user-desktop.png differ diff --git a/images/22x22/places/user-home.png b/images/22x22/places/user-home.png new file mode 100644 index 0000000..c7eac99 Binary files /dev/null and b/images/22x22/places/user-home.png differ diff --git a/images/22x22/places/user-trash.png b/images/22x22/places/user-trash.png new file mode 100644 index 0000000..05ff036 Binary files /dev/null and b/images/22x22/places/user-trash.png differ diff --git a/images/22x22/status/Makefile.am b/images/22x22/status/Makefile.am new file mode 100644 index 0000000..63f9ecf --- /dev/null +++ b/images/22x22/status/Makefile.am @@ -0,0 +1,59 @@ + +size = 22x22 +context = status + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + audio-volume-high.png \ + audio-volume-low.png \ + audio-volume-medium.png \ + audio-volume-muted.png \ + battery-caution.png \ + dialog-error.png \ + dialog-information.png \ + dialog-warning.png \ + folder-drag-accept.png \ + folder-open.png \ + folder-visiting.png \ + image-loading.png \ + image-missing.png \ + mail-attachment.png \ + network-error.png \ + network-idle.png \ + network-offline.png \ + network-receive.png \ + network-transmit.png \ + network-transmit-receive.png \ + network-wireless-encrypted.png \ + printer-error.png \ + software-update-available.png \ + software-update-urgent.png \ + user-trash-full.png \ + weather-clear.png \ + weather-clear-night.png \ + weather-few-clouds.png \ + weather-few-clouds-night.png \ + weather-overcast.png \ + weather-severe-alert.png \ + weather-showers.png \ + weather-showers-scattered.png \ + weather-snow.png \ + weather-storm.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +if ENABLE_ICON_FRAMING + $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) + (cd $(DESTDIR)$(themedir) && \ + for icon in $(icons_DATA); do \ + $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ + done) + (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) +endif + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) diff --git a/images/22x22/status/Makefile.in b/images/22x22/status/Makefile.in new file mode 100644 index 0000000..101166d --- /dev/null +++ b/images/22x22/status/Makefile.in @@ -0,0 +1,405 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 22x22/status +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 22x22 +context = status +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + audio-volume-high.png \ + audio-volume-low.png \ + audio-volume-medium.png \ + audio-volume-muted.png \ + battery-caution.png \ + dialog-error.png \ + dialog-information.png \ + dialog-warning.png \ + folder-drag-accept.png \ + folder-open.png \ + folder-visiting.png \ + image-loading.png \ + image-missing.png \ + mail-attachment.png \ + network-error.png \ + network-idle.png \ + network-offline.png \ + network-receive.png \ + network-transmit.png \ + network-transmit-receive.png \ + network-wireless-encrypted.png \ + printer-error.png \ + software-update-available.png \ + software-update-urgent.png \ + user-trash-full.png \ + weather-clear.png \ + weather-clear-night.png \ + weather-few-clouds.png \ + weather-few-clouds-night.png \ + weather-overcast.png \ + weather-severe-alert.png \ + weather-showers.png \ + weather-showers-scattered.png \ + weather-snow.png \ + weather-storm.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 22x22/status/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 22x22/status/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA \ + uninstall-local + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +@ENABLE_ICON_FRAMING_TRUE@ $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir) && \ +@ENABLE_ICON_FRAMING_TRUE@ for icon in $(icons_DATA); do \ +@ENABLE_ICON_FRAMING_TRUE@ $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \ +@ENABLE_ICON_FRAMING_TRUE@ done) +@ENABLE_ICON_FRAMING_TRUE@ (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context)) + +uninstall-local: + rm -rf $(themedir)/24x24/$(context) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/22x22/status/audio-volume-high.png b/images/22x22/status/audio-volume-high.png new file mode 100644 index 0000000..1b2f30e Binary files /dev/null and b/images/22x22/status/audio-volume-high.png differ diff --git a/images/22x22/status/audio-volume-low.png b/images/22x22/status/audio-volume-low.png new file mode 100644 index 0000000..46bcd19 Binary files /dev/null and b/images/22x22/status/audio-volume-low.png differ diff --git a/images/22x22/status/audio-volume-medium.png b/images/22x22/status/audio-volume-medium.png new file mode 100644 index 0000000..31883ef Binary files /dev/null and b/images/22x22/status/audio-volume-medium.png differ diff --git a/images/22x22/status/audio-volume-muted.png b/images/22x22/status/audio-volume-muted.png new file mode 100644 index 0000000..3e74c1d Binary files /dev/null and b/images/22x22/status/audio-volume-muted.png differ diff --git a/images/22x22/status/battery-caution.png b/images/22x22/status/battery-caution.png new file mode 100644 index 0000000..456f7a4 Binary files /dev/null and b/images/22x22/status/battery-caution.png differ diff --git a/images/22x22/status/dialog-error.png b/images/22x22/status/dialog-error.png new file mode 100644 index 0000000..7d6aaf6 Binary files /dev/null and b/images/22x22/status/dialog-error.png differ diff --git a/images/22x22/status/dialog-information.png b/images/22x22/status/dialog-information.png new file mode 100644 index 0000000..07cf010 Binary files /dev/null and b/images/22x22/status/dialog-information.png differ diff --git a/images/22x22/status/dialog-warning.png b/images/22x22/status/dialog-warning.png new file mode 100644 index 0000000..45b64a7 Binary files /dev/null and b/images/22x22/status/dialog-warning.png differ diff --git a/images/22x22/status/folder-drag-accept.png b/images/22x22/status/folder-drag-accept.png new file mode 100644 index 0000000..16a2b84 Binary files /dev/null and b/images/22x22/status/folder-drag-accept.png differ diff --git a/images/22x22/status/folder-open.png b/images/22x22/status/folder-open.png new file mode 100644 index 0000000..f81f70c Binary files /dev/null and b/images/22x22/status/folder-open.png differ diff --git a/images/22x22/status/folder-visiting.png b/images/22x22/status/folder-visiting.png new file mode 100644 index 0000000..b4af525 Binary files /dev/null and b/images/22x22/status/folder-visiting.png differ diff --git a/images/22x22/status/image-loading.png b/images/22x22/status/image-loading.png new file mode 100644 index 0000000..a4be885 Binary files /dev/null and b/images/22x22/status/image-loading.png differ diff --git a/images/22x22/status/image-missing.png b/images/22x22/status/image-missing.png new file mode 100644 index 0000000..e12439a Binary files /dev/null and b/images/22x22/status/image-missing.png differ diff --git a/images/22x22/status/mail-attachment.png b/images/22x22/status/mail-attachment.png new file mode 100644 index 0000000..c5d9633 Binary files /dev/null and b/images/22x22/status/mail-attachment.png differ diff --git a/images/22x22/status/network-error.png b/images/22x22/status/network-error.png new file mode 100644 index 0000000..d36ce29 Binary files /dev/null and b/images/22x22/status/network-error.png differ diff --git a/images/22x22/status/network-idle.png b/images/22x22/status/network-idle.png new file mode 100644 index 0000000..caebd98 Binary files /dev/null and b/images/22x22/status/network-idle.png differ diff --git a/images/22x22/status/network-offline.png b/images/22x22/status/network-offline.png new file mode 100644 index 0000000..72dd12c Binary files /dev/null and b/images/22x22/status/network-offline.png differ diff --git a/images/22x22/status/network-receive.png b/images/22x22/status/network-receive.png new file mode 100644 index 0000000..11dfa07 Binary files /dev/null and b/images/22x22/status/network-receive.png differ diff --git a/images/22x22/status/network-transmit-receive.png b/images/22x22/status/network-transmit-receive.png new file mode 100644 index 0000000..54d145f Binary files /dev/null and b/images/22x22/status/network-transmit-receive.png differ diff --git a/images/22x22/status/network-transmit.png b/images/22x22/status/network-transmit.png new file mode 100644 index 0000000..97b6301 Binary files /dev/null and b/images/22x22/status/network-transmit.png differ diff --git a/images/22x22/status/network-wireless-encrypted.png b/images/22x22/status/network-wireless-encrypted.png new file mode 100644 index 0000000..712771c Binary files /dev/null and b/images/22x22/status/network-wireless-encrypted.png differ diff --git a/images/22x22/status/printer-error.png b/images/22x22/status/printer-error.png new file mode 100644 index 0000000..63863c2 Binary files /dev/null and b/images/22x22/status/printer-error.png differ diff --git a/images/22x22/status/software-update-available.png b/images/22x22/status/software-update-available.png new file mode 100644 index 0000000..c1d1348 Binary files /dev/null and b/images/22x22/status/software-update-available.png differ diff --git a/images/22x22/status/software-update-urgent.png b/images/22x22/status/software-update-urgent.png new file mode 100644 index 0000000..0ce38d9 Binary files /dev/null and b/images/22x22/status/software-update-urgent.png differ diff --git a/images/22x22/status/user-trash-full.png b/images/22x22/status/user-trash-full.png new file mode 100644 index 0000000..ffd7cc2 Binary files /dev/null and b/images/22x22/status/user-trash-full.png differ diff --git a/images/22x22/status/weather-clear-night.png b/images/22x22/status/weather-clear-night.png new file mode 100644 index 0000000..52ea3e9 Binary files /dev/null and b/images/22x22/status/weather-clear-night.png differ diff --git a/images/22x22/status/weather-clear.png b/images/22x22/status/weather-clear.png new file mode 100644 index 0000000..e17ca7c Binary files /dev/null and b/images/22x22/status/weather-clear.png differ diff --git a/images/22x22/status/weather-few-clouds-night.png b/images/22x22/status/weather-few-clouds-night.png new file mode 100644 index 0000000..69fe49a Binary files /dev/null and b/images/22x22/status/weather-few-clouds-night.png differ diff --git a/images/22x22/status/weather-few-clouds.png b/images/22x22/status/weather-few-clouds.png new file mode 100644 index 0000000..28b1147 Binary files /dev/null and b/images/22x22/status/weather-few-clouds.png differ diff --git a/images/22x22/status/weather-overcast.png b/images/22x22/status/weather-overcast.png new file mode 100644 index 0000000..79d7bc2 Binary files /dev/null and b/images/22x22/status/weather-overcast.png differ diff --git a/images/22x22/status/weather-severe-alert.png b/images/22x22/status/weather-severe-alert.png new file mode 100644 index 0000000..e4d09b6 Binary files /dev/null and b/images/22x22/status/weather-severe-alert.png differ diff --git a/images/22x22/status/weather-showers-scattered.png b/images/22x22/status/weather-showers-scattered.png new file mode 100644 index 0000000..9eddd93 Binary files /dev/null and b/images/22x22/status/weather-showers-scattered.png differ diff --git a/images/22x22/status/weather-showers.png b/images/22x22/status/weather-showers.png new file mode 100644 index 0000000..4450fb1 Binary files /dev/null and b/images/22x22/status/weather-showers.png differ diff --git a/images/22x22/status/weather-snow.png b/images/22x22/status/weather-snow.png new file mode 100644 index 0000000..5457799 Binary files /dev/null and b/images/22x22/status/weather-snow.png differ diff --git a/images/22x22/status/weather-storm.png b/images/22x22/status/weather-storm.png new file mode 100644 index 0000000..3b7ca9c Binary files /dev/null and b/images/22x22/status/weather-storm.png differ diff --git a/images/32x32/actions/Makefile.am b/images/32x32/actions/Makefile.am new file mode 100644 index 0000000..6a0a8f9 --- /dev/null +++ b/images/32x32/actions/Makefile.am @@ -0,0 +1,83 @@ + +size = 32x32 +context = actions + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + address-book-new.png \ + appointment-new.png \ + bookmark-new.png \ + contact-new.png \ + document-new.png \ + document-open.png \ + document-print.png \ + document-print-preview.png \ + document-properties.png \ + document-save.png \ + document-save-as.png \ + edit-clear.png \ + edit-copy.png \ + edit-cut.png \ + edit-delete.png \ + edit-find.png \ + edit-find-replace.png \ + edit-paste.png \ + edit-redo.png \ + edit-select-all.png \ + edit-undo.png \ + folder-new.png \ + format-indent-less.png \ + format-indent-more.png \ + format-justify-center.png \ + format-justify-fill.png \ + format-justify-left.png \ + format-justify-right.png \ + format-text-bold.png \ + format-text-italic.png \ + format-text-strikethrough.png \ + format-text-underline.png \ + go-bottom.png \ + go-down.png \ + go-first.png \ + go-home.png \ + go-jump.png \ + go-last.png \ + go-next.png \ + go-previous.png \ + go-top.png \ + go-up.png \ + list-add.png \ + list-remove.png \ + mail-forward.png \ + mail-message-new.png \ + mail-mark-junk.png \ + mail-mark-not-junk.png \ + mail-reply-all.png \ + mail-reply-sender.png \ + mail-send-receive.png \ + media-eject.png \ + media-playback-pause.png \ + media-playback-start.png \ + media-playback-stop.png \ + media-record.png \ + media-seek-backward.png \ + media-seek-forward.png \ + media-skip-backward.png \ + media-skip-forward.png \ + process-stop.png \ + system-lock-screen.png \ + system-log-out.png \ + system-search.png \ + system-shutdown.png \ + tab-new.png \ + view-fullscreen.png \ + view-refresh.png \ + window-new.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) + diff --git a/images/32x32/actions/Makefile.in b/images/32x32/actions/Makefile.in new file mode 100644 index 0000000..d7fa1c1 --- /dev/null +++ b/images/32x32/actions/Makefile.in @@ -0,0 +1,429 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/actions +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = actions +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + address-book-new.png \ + appointment-new.png \ + bookmark-new.png \ + contact-new.png \ + document-new.png \ + document-open.png \ + document-print.png \ + document-print-preview.png \ + document-properties.png \ + document-save.png \ + document-save-as.png \ + edit-clear.png \ + edit-copy.png \ + edit-cut.png \ + edit-delete.png \ + edit-find.png \ + edit-find-replace.png \ + edit-paste.png \ + edit-redo.png \ + edit-select-all.png \ + edit-undo.png \ + folder-new.png \ + format-indent-less.png \ + format-indent-more.png \ + format-justify-center.png \ + format-justify-fill.png \ + format-justify-left.png \ + format-justify-right.png \ + format-text-bold.png \ + format-text-italic.png \ + format-text-strikethrough.png \ + format-text-underline.png \ + go-bottom.png \ + go-down.png \ + go-first.png \ + go-home.png \ + go-jump.png \ + go-last.png \ + go-next.png \ + go-previous.png \ + go-top.png \ + go-up.png \ + list-add.png \ + list-remove.png \ + mail-forward.png \ + mail-message-new.png \ + mail-mark-junk.png \ + mail-mark-not-junk.png \ + mail-reply-all.png \ + mail-reply-sender.png \ + mail-send-receive.png \ + media-eject.png \ + media-playback-pause.png \ + media-playback-start.png \ + media-playback-stop.png \ + media-record.png \ + media-seek-backward.png \ + media-seek-forward.png \ + media-skip-backward.png \ + media-skip-forward.png \ + process-stop.png \ + system-lock-screen.png \ + system-log-out.png \ + system-search.png \ + system-shutdown.png \ + tab-new.png \ + view-fullscreen.png \ + view-refresh.png \ + window-new.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/actions/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/actions/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/actions/address-book-new.png b/images/32x32/actions/address-book-new.png new file mode 100644 index 0000000..420139d Binary files /dev/null and b/images/32x32/actions/address-book-new.png differ diff --git a/images/32x32/actions/appointment-new.png b/images/32x32/actions/appointment-new.png new file mode 100644 index 0000000..85daef3 Binary files /dev/null and b/images/32x32/actions/appointment-new.png differ diff --git a/images/32x32/actions/bookmark-new.png b/images/32x32/actions/bookmark-new.png new file mode 100644 index 0000000..621312a Binary files /dev/null and b/images/32x32/actions/bookmark-new.png differ diff --git a/images/32x32/actions/contact-new.png b/images/32x32/actions/contact-new.png new file mode 100644 index 0000000..8b10c1e Binary files /dev/null and b/images/32x32/actions/contact-new.png differ diff --git a/images/32x32/actions/document-new.png b/images/32x32/actions/document-new.png new file mode 100644 index 0000000..e6d64bb Binary files /dev/null and b/images/32x32/actions/document-new.png differ diff --git a/images/32x32/actions/document-open.png b/images/32x32/actions/document-open.png new file mode 100644 index 0000000..f35f258 Binary files /dev/null and b/images/32x32/actions/document-open.png differ diff --git a/images/32x32/actions/document-print-preview.png b/images/32x32/actions/document-print-preview.png new file mode 100644 index 0000000..772efe5 Binary files /dev/null and b/images/32x32/actions/document-print-preview.png differ diff --git a/images/32x32/actions/document-print.png b/images/32x32/actions/document-print.png new file mode 100644 index 0000000..3ef3930 Binary files /dev/null and b/images/32x32/actions/document-print.png differ diff --git a/images/32x32/actions/document-properties.png b/images/32x32/actions/document-properties.png new file mode 100644 index 0000000..fa697db Binary files /dev/null and b/images/32x32/actions/document-properties.png differ diff --git a/images/32x32/actions/document-save-as.png b/images/32x32/actions/document-save-as.png new file mode 100644 index 0000000..5c9f6b3 Binary files /dev/null and b/images/32x32/actions/document-save-as.png differ diff --git a/images/32x32/actions/document-save.png b/images/32x32/actions/document-save.png new file mode 100644 index 0000000..db5c52b Binary files /dev/null and b/images/32x32/actions/document-save.png differ diff --git a/images/32x32/actions/edit-clear.png b/images/32x32/actions/edit-clear.png new file mode 100644 index 0000000..5542948 Binary files /dev/null and b/images/32x32/actions/edit-clear.png differ diff --git a/images/32x32/actions/edit-copy.png b/images/32x32/actions/edit-copy.png new file mode 100644 index 0000000..3348ee0 Binary files /dev/null and b/images/32x32/actions/edit-copy.png differ diff --git a/images/32x32/actions/edit-cut.png b/images/32x32/actions/edit-cut.png new file mode 100644 index 0000000..217663b Binary files /dev/null and b/images/32x32/actions/edit-cut.png differ diff --git a/images/32x32/actions/edit-delete.png b/images/32x32/actions/edit-delete.png new file mode 100644 index 0000000..9becb3e Binary files /dev/null and b/images/32x32/actions/edit-delete.png differ diff --git a/images/32x32/actions/edit-find-replace.png b/images/32x32/actions/edit-find-replace.png new file mode 100644 index 0000000..0f1b117 Binary files /dev/null and b/images/32x32/actions/edit-find-replace.png differ diff --git a/images/32x32/actions/edit-find.png b/images/32x32/actions/edit-find.png new file mode 100644 index 0000000..5594785 Binary files /dev/null and b/images/32x32/actions/edit-find.png differ diff --git a/images/32x32/actions/edit-paste.png b/images/32x32/actions/edit-paste.png new file mode 100644 index 0000000..dd429ce Binary files /dev/null and b/images/32x32/actions/edit-paste.png differ diff --git a/images/32x32/actions/edit-redo.png b/images/32x32/actions/edit-redo.png new file mode 100644 index 0000000..3eb7b05 Binary files /dev/null and b/images/32x32/actions/edit-redo.png differ diff --git a/images/32x32/actions/edit-select-all.png b/images/32x32/actions/edit-select-all.png new file mode 100644 index 0000000..107fc60 Binary files /dev/null and b/images/32x32/actions/edit-select-all.png differ diff --git a/images/32x32/actions/edit-undo.png b/images/32x32/actions/edit-undo.png new file mode 100644 index 0000000..61b2ce9 Binary files /dev/null and b/images/32x32/actions/edit-undo.png differ diff --git a/images/32x32/actions/folder-new.png b/images/32x32/actions/folder-new.png new file mode 100644 index 0000000..fcd15c0 Binary files /dev/null and b/images/32x32/actions/folder-new.png differ diff --git a/images/32x32/actions/format-indent-less.png b/images/32x32/actions/format-indent-less.png new file mode 100644 index 0000000..7ced16f Binary files /dev/null and b/images/32x32/actions/format-indent-less.png differ diff --git a/images/32x32/actions/format-indent-more.png b/images/32x32/actions/format-indent-more.png new file mode 100644 index 0000000..6a18867 Binary files /dev/null and b/images/32x32/actions/format-indent-more.png differ diff --git a/images/32x32/actions/format-justify-center.png b/images/32x32/actions/format-justify-center.png new file mode 100644 index 0000000..a0db2bb Binary files /dev/null and b/images/32x32/actions/format-justify-center.png differ diff --git a/images/32x32/actions/format-justify-fill.png b/images/32x32/actions/format-justify-fill.png new file mode 100644 index 0000000..2a34a8f Binary files /dev/null and b/images/32x32/actions/format-justify-fill.png differ diff --git a/images/32x32/actions/format-justify-left.png b/images/32x32/actions/format-justify-left.png new file mode 100644 index 0000000..ba0e914 Binary files /dev/null and b/images/32x32/actions/format-justify-left.png differ diff --git a/images/32x32/actions/format-justify-right.png b/images/32x32/actions/format-justify-right.png new file mode 100644 index 0000000..2144cb9 Binary files /dev/null and b/images/32x32/actions/format-justify-right.png differ diff --git a/images/32x32/actions/format-text-bold.png b/images/32x32/actions/format-text-bold.png new file mode 100644 index 0000000..99ed19c Binary files /dev/null and b/images/32x32/actions/format-text-bold.png differ diff --git a/images/32x32/actions/format-text-italic.png b/images/32x32/actions/format-text-italic.png new file mode 100644 index 0000000..87ed6f9 Binary files /dev/null and b/images/32x32/actions/format-text-italic.png differ diff --git a/images/32x32/actions/format-text-strikethrough.png b/images/32x32/actions/format-text-strikethrough.png new file mode 100644 index 0000000..b9b55ab Binary files /dev/null and b/images/32x32/actions/format-text-strikethrough.png differ diff --git a/images/32x32/actions/format-text-underline.png b/images/32x32/actions/format-text-underline.png new file mode 100644 index 0000000..0de6b1c Binary files /dev/null and b/images/32x32/actions/format-text-underline.png differ diff --git a/images/32x32/actions/go-bottom.png b/images/32x32/actions/go-bottom.png new file mode 100644 index 0000000..bf973fe Binary files /dev/null and b/images/32x32/actions/go-bottom.png differ diff --git a/images/32x32/actions/go-down.png b/images/32x32/actions/go-down.png new file mode 100644 index 0000000..dce3f15 Binary files /dev/null and b/images/32x32/actions/go-down.png differ diff --git a/images/32x32/actions/go-first.png b/images/32x32/actions/go-first.png new file mode 100644 index 0000000..5e2a6b1 Binary files /dev/null and b/images/32x32/actions/go-first.png differ diff --git a/images/32x32/actions/go-home.png b/images/32x32/actions/go-home.png new file mode 100644 index 0000000..a3ca103 Binary files /dev/null and b/images/32x32/actions/go-home.png differ diff --git a/images/32x32/actions/go-jump.png b/images/32x32/actions/go-jump.png new file mode 100644 index 0000000..34dc4c0 Binary files /dev/null and b/images/32x32/actions/go-jump.png differ diff --git a/images/32x32/actions/go-last.png b/images/32x32/actions/go-last.png new file mode 100644 index 0000000..48fe95b Binary files /dev/null and b/images/32x32/actions/go-last.png differ diff --git a/images/32x32/actions/go-next.png b/images/32x32/actions/go-next.png new file mode 100644 index 0000000..a68e2db Binary files /dev/null and b/images/32x32/actions/go-next.png differ diff --git a/images/32x32/actions/go-previous.png b/images/32x32/actions/go-previous.png new file mode 100644 index 0000000..c37bc04 Binary files /dev/null and b/images/32x32/actions/go-previous.png differ diff --git a/images/32x32/actions/go-top.png b/images/32x32/actions/go-top.png new file mode 100644 index 0000000..d99552b Binary files /dev/null and b/images/32x32/actions/go-top.png differ diff --git a/images/32x32/actions/go-up.png b/images/32x32/actions/go-up.png new file mode 100644 index 0000000..afb307b Binary files /dev/null and b/images/32x32/actions/go-up.png differ diff --git a/images/32x32/actions/list-add.png b/images/32x32/actions/list-add.png new file mode 100644 index 0000000..2acdd8f Binary files /dev/null and b/images/32x32/actions/list-add.png differ diff --git a/images/32x32/actions/list-remove.png b/images/32x32/actions/list-remove.png new file mode 100644 index 0000000..c5524f7 Binary files /dev/null and b/images/32x32/actions/list-remove.png differ diff --git a/images/32x32/actions/mail-forward.png b/images/32x32/actions/mail-forward.png new file mode 100644 index 0000000..bea94ab Binary files /dev/null and b/images/32x32/actions/mail-forward.png differ diff --git a/images/32x32/actions/mail-mark-junk.png b/images/32x32/actions/mail-mark-junk.png new file mode 100644 index 0000000..0af3006 Binary files /dev/null and b/images/32x32/actions/mail-mark-junk.png differ diff --git a/images/32x32/actions/mail-mark-not-junk.png b/images/32x32/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..296e92a Binary files /dev/null and b/images/32x32/actions/mail-mark-not-junk.png differ diff --git a/images/32x32/actions/mail-message-new.png b/images/32x32/actions/mail-message-new.png new file mode 100644 index 0000000..9f51246 Binary files /dev/null and b/images/32x32/actions/mail-message-new.png differ diff --git a/images/32x32/actions/mail-reply-all.png b/images/32x32/actions/mail-reply-all.png new file mode 100644 index 0000000..0216e39 Binary files /dev/null and b/images/32x32/actions/mail-reply-all.png differ diff --git a/images/32x32/actions/mail-reply-sender.png b/images/32x32/actions/mail-reply-sender.png new file mode 100644 index 0000000..3f248dc Binary files /dev/null and b/images/32x32/actions/mail-reply-sender.png differ diff --git a/images/32x32/actions/mail-send-receive.png b/images/32x32/actions/mail-send-receive.png new file mode 100644 index 0000000..99349b9 Binary files /dev/null and b/images/32x32/actions/mail-send-receive.png differ diff --git a/images/32x32/actions/media-eject.png b/images/32x32/actions/media-eject.png new file mode 100644 index 0000000..b218e7a Binary files /dev/null and b/images/32x32/actions/media-eject.png differ diff --git a/images/32x32/actions/media-playback-pause.png b/images/32x32/actions/media-playback-pause.png new file mode 100644 index 0000000..1e9f4d5 Binary files /dev/null and b/images/32x32/actions/media-playback-pause.png differ diff --git a/images/32x32/actions/media-playback-start.png b/images/32x32/actions/media-playback-start.png new file mode 100644 index 0000000..66f32d8 Binary files /dev/null and b/images/32x32/actions/media-playback-start.png differ diff --git a/images/32x32/actions/media-playback-stop.png b/images/32x32/actions/media-playback-stop.png new file mode 100644 index 0000000..a094787 Binary files /dev/null and b/images/32x32/actions/media-playback-stop.png differ diff --git a/images/32x32/actions/media-record.png b/images/32x32/actions/media-record.png new file mode 100644 index 0000000..43f034b Binary files /dev/null and b/images/32x32/actions/media-record.png differ diff --git a/images/32x32/actions/media-seek-backward.png b/images/32x32/actions/media-seek-backward.png new file mode 100644 index 0000000..535c536 Binary files /dev/null and b/images/32x32/actions/media-seek-backward.png differ diff --git a/images/32x32/actions/media-seek-forward.png b/images/32x32/actions/media-seek-forward.png new file mode 100644 index 0000000..96ebe01 Binary files /dev/null and b/images/32x32/actions/media-seek-forward.png differ diff --git a/images/32x32/actions/media-skip-backward.png b/images/32x32/actions/media-skip-backward.png new file mode 100644 index 0000000..aa08251 Binary files /dev/null and b/images/32x32/actions/media-skip-backward.png differ diff --git a/images/32x32/actions/media-skip-forward.png b/images/32x32/actions/media-skip-forward.png new file mode 100644 index 0000000..52be942 Binary files /dev/null and b/images/32x32/actions/media-skip-forward.png differ diff --git a/images/32x32/actions/process-stop.png b/images/32x32/actions/process-stop.png new file mode 100644 index 0000000..e7a8d17 Binary files /dev/null and b/images/32x32/actions/process-stop.png differ diff --git a/images/32x32/actions/system-lock-screen.png b/images/32x32/actions/system-lock-screen.png new file mode 100644 index 0000000..2c220fc Binary files /dev/null and b/images/32x32/actions/system-lock-screen.png differ diff --git a/images/32x32/actions/system-log-out.png b/images/32x32/actions/system-log-out.png new file mode 100644 index 0000000..fddbc2b Binary files /dev/null and b/images/32x32/actions/system-log-out.png differ diff --git a/images/32x32/actions/system-search.png b/images/32x32/actions/system-search.png new file mode 100644 index 0000000..950d792 Binary files /dev/null and b/images/32x32/actions/system-search.png differ diff --git a/images/32x32/actions/system-shutdown.png b/images/32x32/actions/system-shutdown.png new file mode 100644 index 0000000..36acd46 Binary files /dev/null and b/images/32x32/actions/system-shutdown.png differ diff --git a/images/32x32/actions/tab-new.png b/images/32x32/actions/tab-new.png new file mode 100644 index 0000000..294d150 Binary files /dev/null and b/images/32x32/actions/tab-new.png differ diff --git a/images/32x32/actions/view-fullscreen.png b/images/32x32/actions/view-fullscreen.png new file mode 100644 index 0000000..00e6b83 Binary files /dev/null and b/images/32x32/actions/view-fullscreen.png differ diff --git a/images/32x32/actions/view-refresh.png b/images/32x32/actions/view-refresh.png new file mode 100644 index 0000000..606ea9e Binary files /dev/null and b/images/32x32/actions/view-refresh.png differ diff --git a/images/32x32/actions/window-new.png b/images/32x32/actions/window-new.png new file mode 100644 index 0000000..e091702 Binary files /dev/null and b/images/32x32/actions/window-new.png differ diff --git a/images/32x32/animations/Makefile.am b/images/32x32/animations/Makefile.am new file mode 100644 index 0000000..83c16f1 --- /dev/null +++ b/images/32x32/animations/Makefile.am @@ -0,0 +1,14 @@ + +size = 32x32 +context = animations + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + process-working.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/animations/Makefile.in b/images/32x32/animations/Makefile.in new file mode 100644 index 0000000..f1bc205 --- /dev/null +++ b/images/32x32/animations/Makefile.in @@ -0,0 +1,361 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/animations +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = animations +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + process-working.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/animations/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/animations/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/animations/process-working.png b/images/32x32/animations/process-working.png new file mode 100644 index 0000000..f19c528 Binary files /dev/null and b/images/32x32/animations/process-working.png differ diff --git a/images/32x32/apps/Makefile.am b/images/32x32/apps/Makefile.am new file mode 100644 index 0000000..56414ba --- /dev/null +++ b/images/32x32/apps/Makefile.am @@ -0,0 +1,41 @@ + +size = 32x32 +context = apps + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + accessories-calculator.png \ + accessories-character-map.png \ + accessories-text-editor.png \ + help-browser.png \ + internet-group-chat.png \ + internet-mail.png \ + internet-news-reader.png \ + internet-web-browser.png \ + office-calendar.png \ + preferences-desktop-accessibility.png \ + preferences-desktop-assistive-technology.png \ + preferences-desktop-font.png \ + preferences-desktop-keyboard-shortcuts.png \ + preferences-desktop-locale.png \ + preferences-desktop-multimedia.png \ + preferences-desktop-remote-desktop.png \ + preferences-desktop-screensaver.png \ + preferences-desktop-theme.png \ + preferences-desktop-wallpaper.png \ + preferences-system-network-proxy.png \ + preferences-system-session.png \ + preferences-system-windows.png \ + system-file-manager.png \ + system-installer.png \ + system-software-update.png \ + system-users.png \ + utilities-system-monitor.png \ + utilities-terminal.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/apps/Makefile.in b/images/32x32/apps/Makefile.in new file mode 100644 index 0000000..3d8da3a --- /dev/null +++ b/images/32x32/apps/Makefile.in @@ -0,0 +1,388 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/apps +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = apps +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + accessories-calculator.png \ + accessories-character-map.png \ + accessories-text-editor.png \ + help-browser.png \ + internet-group-chat.png \ + internet-mail.png \ + internet-news-reader.png \ + internet-web-browser.png \ + office-calendar.png \ + preferences-desktop-accessibility.png \ + preferences-desktop-assistive-technology.png \ + preferences-desktop-font.png \ + preferences-desktop-keyboard-shortcuts.png \ + preferences-desktop-locale.png \ + preferences-desktop-multimedia.png \ + preferences-desktop-remote-desktop.png \ + preferences-desktop-screensaver.png \ + preferences-desktop-theme.png \ + preferences-desktop-wallpaper.png \ + preferences-system-network-proxy.png \ + preferences-system-session.png \ + preferences-system-windows.png \ + system-file-manager.png \ + system-installer.png \ + system-software-update.png \ + system-users.png \ + utilities-system-monitor.png \ + utilities-terminal.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/apps/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/apps/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/apps/accessories-calculator.png b/images/32x32/apps/accessories-calculator.png new file mode 100644 index 0000000..7de1c44 Binary files /dev/null and b/images/32x32/apps/accessories-calculator.png differ diff --git a/images/32x32/apps/accessories-character-map.png b/images/32x32/apps/accessories-character-map.png new file mode 100644 index 0000000..a86c23e Binary files /dev/null and b/images/32x32/apps/accessories-character-map.png differ diff --git a/images/32x32/apps/accessories-text-editor.png b/images/32x32/apps/accessories-text-editor.png new file mode 100644 index 0000000..c6b6285 Binary files /dev/null and b/images/32x32/apps/accessories-text-editor.png differ diff --git a/images/32x32/apps/help-browser.png b/images/32x32/apps/help-browser.png new file mode 100644 index 0000000..d60425f Binary files /dev/null and b/images/32x32/apps/help-browser.png differ diff --git a/images/32x32/apps/internet-group-chat.png b/images/32x32/apps/internet-group-chat.png new file mode 100644 index 0000000..9cb1d3b Binary files /dev/null and b/images/32x32/apps/internet-group-chat.png differ diff --git a/images/32x32/apps/internet-mail.png b/images/32x32/apps/internet-mail.png new file mode 100644 index 0000000..dc3b9dd Binary files /dev/null and b/images/32x32/apps/internet-mail.png differ diff --git a/images/32x32/apps/internet-news-reader.png b/images/32x32/apps/internet-news-reader.png new file mode 100644 index 0000000..ebc528f Binary files /dev/null and b/images/32x32/apps/internet-news-reader.png differ diff --git a/images/32x32/apps/internet-web-browser.png b/images/32x32/apps/internet-web-browser.png new file mode 100644 index 0000000..10d2ed4 Binary files /dev/null and b/images/32x32/apps/internet-web-browser.png differ diff --git a/images/32x32/apps/office-calendar.png b/images/32x32/apps/office-calendar.png new file mode 100644 index 0000000..7817c12 Binary files /dev/null and b/images/32x32/apps/office-calendar.png differ diff --git a/images/32x32/apps/preferences-desktop-accessibility.png b/images/32x32/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..adfe247 Binary files /dev/null and b/images/32x32/apps/preferences-desktop-accessibility.png differ diff --git a/images/32x32/apps/preferences-desktop-assistive-technology.png b/images/32x32/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..70adb92 Binary files /dev/null and b/images/32x32/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/32x32/apps/preferences-desktop-font.png b/images/32x32/apps/preferences-desktop-font.png new file mode 100644 index 0000000..b4ec434 Binary files /dev/null and b/images/32x32/apps/preferences-desktop-font.png differ diff --git a/images/32x32/apps/preferences-desktop-keyboard-shortcuts.png b/images/32x32/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..178dd29 Binary files /dev/null and b/images/32x32/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/32x32/apps/preferences-desktop-locale.png b/images/32x32/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..66224ae Binary files /dev/null and b/images/32x32/apps/preferences-desktop-locale.png differ diff --git a/images/32x32/apps/preferences-desktop-multimedia.png b/images/32x32/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..56a5662 Binary files /dev/null and b/images/32x32/apps/preferences-desktop-multimedia.png differ diff --git a/images/32x32/apps/preferences-desktop-remote-desktop.png b/images/32x32/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..6da67c6 Binary files /dev/null and b/images/32x32/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/32x32/apps/preferences-desktop-screensaver.png b/images/32x32/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dba2455 Binary files /dev/null and b/images/32x32/apps/preferences-desktop-screensaver.png differ diff --git a/images/32x32/apps/preferences-desktop-theme.png b/images/32x32/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7af777d Binary files /dev/null and b/images/32x32/apps/preferences-desktop-theme.png differ diff --git a/images/32x32/apps/preferences-desktop-wallpaper.png b/images/32x32/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..4eb744c Binary files /dev/null and b/images/32x32/apps/preferences-desktop-wallpaper.png differ diff --git a/images/32x32/apps/preferences-system-network-proxy.png b/images/32x32/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..e75f6f7 Binary files /dev/null and b/images/32x32/apps/preferences-system-network-proxy.png differ diff --git a/images/32x32/apps/preferences-system-session.png b/images/32x32/apps/preferences-system-session.png new file mode 100644 index 0000000..f8c2d11 Binary files /dev/null and b/images/32x32/apps/preferences-system-session.png differ diff --git a/images/32x32/apps/preferences-system-windows.png b/images/32x32/apps/preferences-system-windows.png new file mode 100644 index 0000000..517e48a Binary files /dev/null and b/images/32x32/apps/preferences-system-windows.png differ diff --git a/images/32x32/apps/system-file-manager.png b/images/32x32/apps/system-file-manager.png new file mode 100644 index 0000000..1d6ce31 Binary files /dev/null and b/images/32x32/apps/system-file-manager.png differ diff --git a/images/32x32/apps/system-installer.png b/images/32x32/apps/system-installer.png new file mode 100644 index 0000000..c26576e Binary files /dev/null and b/images/32x32/apps/system-installer.png differ diff --git a/images/32x32/apps/system-software-update.png b/images/32x32/apps/system-software-update.png new file mode 100644 index 0000000..470b5d4 Binary files /dev/null and b/images/32x32/apps/system-software-update.png differ diff --git a/images/32x32/apps/system-users.png b/images/32x32/apps/system-users.png new file mode 100644 index 0000000..749c825 Binary files /dev/null and b/images/32x32/apps/system-users.png differ diff --git a/images/32x32/apps/utilities-system-monitor.png b/images/32x32/apps/utilities-system-monitor.png new file mode 100644 index 0000000..b62959e Binary files /dev/null and b/images/32x32/apps/utilities-system-monitor.png differ diff --git a/images/32x32/apps/utilities-terminal.png b/images/32x32/apps/utilities-terminal.png new file mode 100644 index 0000000..f86c784 Binary files /dev/null and b/images/32x32/apps/utilities-terminal.png differ diff --git a/images/32x32/categories/Makefile.am b/images/32x32/categories/Makefile.am new file mode 100644 index 0000000..3992e1f --- /dev/null +++ b/images/32x32/categories/Makefile.am @@ -0,0 +1,25 @@ + +size = 32x32 +context = categories + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + applications-accessories.png \ + applications-development.png \ + applications-games.png \ + applications-graphics.png \ + applications-internet.png \ + applications-multimedia.png \ + applications-office.png \ + applications-other.png \ + applications-system.png \ + preferences-desktop.png \ + preferences-desktop-peripherals.png \ + preferences-system.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/categories/Makefile.in b/images/32x32/categories/Makefile.in new file mode 100644 index 0000000..8002520 --- /dev/null +++ b/images/32x32/categories/Makefile.in @@ -0,0 +1,372 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/categories +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = categories +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + applications-accessories.png \ + applications-development.png \ + applications-games.png \ + applications-graphics.png \ + applications-internet.png \ + applications-multimedia.png \ + applications-office.png \ + applications-other.png \ + applications-system.png \ + preferences-desktop.png \ + preferences-desktop-peripherals.png \ + preferences-system.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/categories/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/categories/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/categories/applications-accessories.png b/images/32x32/categories/applications-accessories.png new file mode 100644 index 0000000..fd43de3 Binary files /dev/null and b/images/32x32/categories/applications-accessories.png differ diff --git a/images/32x32/categories/applications-development.png b/images/32x32/categories/applications-development.png new file mode 100644 index 0000000..bc88a5c Binary files /dev/null and b/images/32x32/categories/applications-development.png differ diff --git a/images/32x32/categories/applications-games.png b/images/32x32/categories/applications-games.png new file mode 100644 index 0000000..ff4044c Binary files /dev/null and b/images/32x32/categories/applications-games.png differ diff --git a/images/32x32/categories/applications-graphics.png b/images/32x32/categories/applications-graphics.png new file mode 100644 index 0000000..36b77c2 Binary files /dev/null and b/images/32x32/categories/applications-graphics.png differ diff --git a/images/32x32/categories/applications-internet.png b/images/32x32/categories/applications-internet.png new file mode 100644 index 0000000..096e848 Binary files /dev/null and b/images/32x32/categories/applications-internet.png differ diff --git a/images/32x32/categories/applications-multimedia.png b/images/32x32/categories/applications-multimedia.png new file mode 100644 index 0000000..d09995a Binary files /dev/null and b/images/32x32/categories/applications-multimedia.png differ diff --git a/images/32x32/categories/applications-office.png b/images/32x32/categories/applications-office.png new file mode 100644 index 0000000..efb850e Binary files /dev/null and b/images/32x32/categories/applications-office.png differ diff --git a/images/32x32/categories/applications-other.png b/images/32x32/categories/applications-other.png new file mode 100644 index 0000000..1990dbb Binary files /dev/null and b/images/32x32/categories/applications-other.png differ diff --git a/images/32x32/categories/applications-system.png b/images/32x32/categories/applications-system.png new file mode 100644 index 0000000..565f406 Binary files /dev/null and b/images/32x32/categories/applications-system.png differ diff --git a/images/32x32/categories/preferences-desktop-peripherals.png b/images/32x32/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..4682b36 Binary files /dev/null and b/images/32x32/categories/preferences-desktop-peripherals.png differ diff --git a/images/32x32/categories/preferences-desktop.png b/images/32x32/categories/preferences-desktop.png new file mode 100644 index 0000000..3ec71a3 Binary files /dev/null and b/images/32x32/categories/preferences-desktop.png differ diff --git a/images/32x32/categories/preferences-system.png b/images/32x32/categories/preferences-system.png new file mode 100644 index 0000000..6e52db7 Binary files /dev/null and b/images/32x32/categories/preferences-system.png differ diff --git a/images/32x32/devices/Makefile.am b/images/32x32/devices/Makefile.am new file mode 100644 index 0000000..d0dbf8b --- /dev/null +++ b/images/32x32/devices/Makefile.am @@ -0,0 +1,33 @@ + +size = 32x32 +context = devices + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + audio-card.png \ + audio-input-microphone.png \ + battery.png \ + camera-photo.png \ + camera-video.png \ + computer.png \ + drive-optical.png \ + drive-harddisk.png \ + drive-removable-media.png \ + input-gaming.png \ + input-keyboard.png \ + input-mouse.png \ + media-optical.png \ + media-floppy.png \ + media-flash.png \ + multimedia-player.png \ + network-wired.png \ + network-wireless.png \ + printer.png \ + video-display.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/devices/Makefile.in b/images/32x32/devices/Makefile.in new file mode 100644 index 0000000..39b0334 --- /dev/null +++ b/images/32x32/devices/Makefile.in @@ -0,0 +1,380 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/devices +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = devices +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + audio-card.png \ + audio-input-microphone.png \ + battery.png \ + camera-photo.png \ + camera-video.png \ + computer.png \ + drive-optical.png \ + drive-harddisk.png \ + drive-removable-media.png \ + input-gaming.png \ + input-keyboard.png \ + input-mouse.png \ + media-optical.png \ + media-floppy.png \ + media-flash.png \ + multimedia-player.png \ + network-wired.png \ + network-wireless.png \ + printer.png \ + video-display.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/devices/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/devices/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/devices/audio-card.png b/images/32x32/devices/audio-card.png new file mode 100644 index 0000000..5b15dd6 Binary files /dev/null and b/images/32x32/devices/audio-card.png differ diff --git a/images/32x32/devices/audio-input-microphone.png b/images/32x32/devices/audio-input-microphone.png new file mode 100644 index 0000000..9fe3b96 Binary files /dev/null and b/images/32x32/devices/audio-input-microphone.png differ diff --git a/images/32x32/devices/battery.png b/images/32x32/devices/battery.png new file mode 100644 index 0000000..ef08925 Binary files /dev/null and b/images/32x32/devices/battery.png differ diff --git a/images/32x32/devices/camera-photo.png b/images/32x32/devices/camera-photo.png new file mode 100644 index 0000000..ffbffc7 Binary files /dev/null and b/images/32x32/devices/camera-photo.png differ diff --git a/images/32x32/devices/camera-video.png b/images/32x32/devices/camera-video.png new file mode 100644 index 0000000..7473dd7 Binary files /dev/null and b/images/32x32/devices/camera-video.png differ diff --git a/images/32x32/devices/computer.png b/images/32x32/devices/computer.png new file mode 100644 index 0000000..e34eb4e Binary files /dev/null and b/images/32x32/devices/computer.png differ diff --git a/images/32x32/devices/drive-harddisk.png b/images/32x32/devices/drive-harddisk.png new file mode 100644 index 0000000..b34d8b7 Binary files /dev/null and b/images/32x32/devices/drive-harddisk.png differ diff --git a/images/32x32/devices/drive-optical.png b/images/32x32/devices/drive-optical.png new file mode 100644 index 0000000..bf2e8c8 Binary files /dev/null and b/images/32x32/devices/drive-optical.png differ diff --git a/images/32x32/devices/drive-removable-media.png b/images/32x32/devices/drive-removable-media.png new file mode 100644 index 0000000..2d28909 Binary files /dev/null and b/images/32x32/devices/drive-removable-media.png differ diff --git a/images/32x32/devices/input-gaming.png b/images/32x32/devices/input-gaming.png new file mode 100644 index 0000000..26e2a98 Binary files /dev/null and b/images/32x32/devices/input-gaming.png differ diff --git a/images/32x32/devices/input-keyboard.png b/images/32x32/devices/input-keyboard.png new file mode 100644 index 0000000..788c717 Binary files /dev/null and b/images/32x32/devices/input-keyboard.png differ diff --git a/images/32x32/devices/input-mouse.png b/images/32x32/devices/input-mouse.png new file mode 100644 index 0000000..49a923c Binary files /dev/null and b/images/32x32/devices/input-mouse.png differ diff --git a/images/32x32/devices/media-flash.png b/images/32x32/devices/media-flash.png new file mode 100644 index 0000000..7540f3f Binary files /dev/null and b/images/32x32/devices/media-flash.png differ diff --git a/images/32x32/devices/media-floppy.png b/images/32x32/devices/media-floppy.png new file mode 100644 index 0000000..17b1274 Binary files /dev/null and b/images/32x32/devices/media-floppy.png differ diff --git a/images/32x32/devices/media-optical.png b/images/32x32/devices/media-optical.png new file mode 100644 index 0000000..5853a75 Binary files /dev/null and b/images/32x32/devices/media-optical.png differ diff --git a/images/32x32/devices/multimedia-player.png b/images/32x32/devices/multimedia-player.png new file mode 100644 index 0000000..8d59208 Binary files /dev/null and b/images/32x32/devices/multimedia-player.png differ diff --git a/images/32x32/devices/network-wired.png b/images/32x32/devices/network-wired.png new file mode 100644 index 0000000..c3ca691 Binary files /dev/null and b/images/32x32/devices/network-wired.png differ diff --git a/images/32x32/devices/network-wireless.png b/images/32x32/devices/network-wireless.png new file mode 100644 index 0000000..aa5f9f2 Binary files /dev/null and b/images/32x32/devices/network-wireless.png differ diff --git a/images/32x32/devices/printer.png b/images/32x32/devices/printer.png new file mode 100644 index 0000000..05b49e0 Binary files /dev/null and b/images/32x32/devices/printer.png differ diff --git a/images/32x32/devices/video-display.png b/images/32x32/devices/video-display.png new file mode 100644 index 0000000..b95ea5d Binary files /dev/null and b/images/32x32/devices/video-display.png differ diff --git a/images/32x32/emblems/Makefile.am b/images/32x32/emblems/Makefile.am new file mode 100644 index 0000000..503f15b --- /dev/null +++ b/images/32x32/emblems/Makefile.am @@ -0,0 +1,20 @@ + +size = 32x32 +context = emblems + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + emblem-favorite.png \ + emblem-important.png \ + emblem-photos.png \ + emblem-readonly.png \ + emblem-symbolic-link.png \ + emblem-system.png \ + emblem-unreadable.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/emblems/Makefile.in b/images/32x32/emblems/Makefile.in new file mode 100644 index 0000000..05568c9 --- /dev/null +++ b/images/32x32/emblems/Makefile.in @@ -0,0 +1,367 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/emblems +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = emblems +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + emblem-favorite.png \ + emblem-important.png \ + emblem-photos.png \ + emblem-readonly.png \ + emblem-symbolic-link.png \ + emblem-system.png \ + emblem-unreadable.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/emblems/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/emblems/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/emblems/emblem-favorite.png b/images/32x32/emblems/emblem-favorite.png new file mode 100644 index 0000000..8a9ad39 Binary files /dev/null and b/images/32x32/emblems/emblem-favorite.png differ diff --git a/images/32x32/emblems/emblem-important.png b/images/32x32/emblems/emblem-important.png new file mode 100644 index 0000000..263fbd5 Binary files /dev/null and b/images/32x32/emblems/emblem-important.png differ diff --git a/images/32x32/emblems/emblem-photos.png b/images/32x32/emblems/emblem-photos.png new file mode 100644 index 0000000..f7dfd88 Binary files /dev/null and b/images/32x32/emblems/emblem-photos.png differ diff --git a/images/32x32/emblems/emblem-readonly.png b/images/32x32/emblems/emblem-readonly.png new file mode 100644 index 0000000..5e972d1 Binary files /dev/null and b/images/32x32/emblems/emblem-readonly.png differ diff --git a/images/32x32/emblems/emblem-symbolic-link.png b/images/32x32/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..56ef039 Binary files /dev/null and b/images/32x32/emblems/emblem-symbolic-link.png differ diff --git a/images/32x32/emblems/emblem-system.png b/images/32x32/emblems/emblem-system.png new file mode 100644 index 0000000..abac7e9 Binary files /dev/null and b/images/32x32/emblems/emblem-system.png differ diff --git a/images/32x32/emblems/emblem-unreadable.png b/images/32x32/emblems/emblem-unreadable.png new file mode 100644 index 0000000..b94fc97 Binary files /dev/null and b/images/32x32/emblems/emblem-unreadable.png differ diff --git a/images/32x32/emotes/Makefile.am b/images/32x32/emotes/Makefile.am new file mode 100644 index 0000000..772e732 --- /dev/null +++ b/images/32x32/emotes/Makefile.am @@ -0,0 +1,26 @@ + +size = 32x32 +context = emotes + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + face-angel.png \ + face-crying.png \ + face-devilish.png \ + face-glasses.png \ + face-grin.png \ + face-kiss.png \ + face-monkey.png \ + face-plain.png \ + face-sad.png \ + face-smile.png \ + face-smile-big.png \ + face-surprise.png \ + face-wink.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/emotes/Makefile.in b/images/32x32/emotes/Makefile.in new file mode 100644 index 0000000..50c0b07 --- /dev/null +++ b/images/32x32/emotes/Makefile.in @@ -0,0 +1,373 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/emotes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = emotes +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + face-angel.png \ + face-crying.png \ + face-devilish.png \ + face-glasses.png \ + face-grin.png \ + face-kiss.png \ + face-monkey.png \ + face-plain.png \ + face-sad.png \ + face-smile.png \ + face-smile-big.png \ + face-surprise.png \ + face-wink.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/emotes/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/emotes/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/emotes/face-angel.png b/images/32x32/emotes/face-angel.png new file mode 100644 index 0000000..abd0285 Binary files /dev/null and b/images/32x32/emotes/face-angel.png differ diff --git a/images/32x32/emotes/face-crying.png b/images/32x32/emotes/face-crying.png new file mode 100644 index 0000000..d8bc41e Binary files /dev/null and b/images/32x32/emotes/face-crying.png differ diff --git a/images/32x32/emotes/face-devilish.png b/images/32x32/emotes/face-devilish.png new file mode 100644 index 0000000..7a3cb08 Binary files /dev/null and b/images/32x32/emotes/face-devilish.png differ diff --git a/images/32x32/emotes/face-glasses.png b/images/32x32/emotes/face-glasses.png new file mode 100644 index 0000000..1b25394 Binary files /dev/null and b/images/32x32/emotes/face-glasses.png differ diff --git a/images/32x32/emotes/face-grin.png b/images/32x32/emotes/face-grin.png new file mode 100644 index 0000000..2e8268f Binary files /dev/null and b/images/32x32/emotes/face-grin.png differ diff --git a/images/32x32/emotes/face-kiss.png b/images/32x32/emotes/face-kiss.png new file mode 100644 index 0000000..1e3fa54 Binary files /dev/null and b/images/32x32/emotes/face-kiss.png differ diff --git a/images/32x32/emotes/face-monkey.png b/images/32x32/emotes/face-monkey.png new file mode 100644 index 0000000..fb0204a Binary files /dev/null and b/images/32x32/emotes/face-monkey.png differ diff --git a/images/32x32/emotes/face-plain.png b/images/32x32/emotes/face-plain.png new file mode 100644 index 0000000..f8128a6 Binary files /dev/null and b/images/32x32/emotes/face-plain.png differ diff --git a/images/32x32/emotes/face-sad.png b/images/32x32/emotes/face-sad.png new file mode 100644 index 0000000..2fbecde Binary files /dev/null and b/images/32x32/emotes/face-sad.png differ diff --git a/images/32x32/emotes/face-smile-big.png b/images/32x32/emotes/face-smile-big.png new file mode 100644 index 0000000..28704ae Binary files /dev/null and b/images/32x32/emotes/face-smile-big.png differ diff --git a/images/32x32/emotes/face-smile.png b/images/32x32/emotes/face-smile.png new file mode 100644 index 0000000..a52e44d Binary files /dev/null and b/images/32x32/emotes/face-smile.png differ diff --git a/images/32x32/emotes/face-surprise.png b/images/32x32/emotes/face-surprise.png new file mode 100644 index 0000000..af7cef4 Binary files /dev/null and b/images/32x32/emotes/face-surprise.png differ diff --git a/images/32x32/emotes/face-wink.png b/images/32x32/emotes/face-wink.png new file mode 100644 index 0000000..494d785 Binary files /dev/null and b/images/32x32/emotes/face-wink.png differ diff --git a/images/32x32/mimetypes/Makefile.am b/images/32x32/mimetypes/Makefile.am new file mode 100644 index 0000000..97309c9 --- /dev/null +++ b/images/32x32/mimetypes/Makefile.am @@ -0,0 +1,34 @@ + +size = 32x32 +context = mimetypes + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + application-certificate.png \ + application-x-executable.png \ + audio-x-generic.png \ + font-x-generic.png \ + image-x-generic.png \ + package-x-generic.png \ + text-html.png \ + text-x-generic.png \ + text-x-generic-template.png \ + text-x-script.png \ + video-x-generic.png \ + x-office-address-book.png \ + x-office-calendar.png \ + x-office-document.png \ + x-office-document-template.png \ + x-office-drawing.png \ + x-office-drawing-template.png \ + x-office-presentation.png \ + x-office-presentation-template.png \ + x-office-spreadsheet.png \ + x-office-spreadsheet-template.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/mimetypes/Makefile.in b/images/32x32/mimetypes/Makefile.in new file mode 100644 index 0000000..c2bd82b --- /dev/null +++ b/images/32x32/mimetypes/Makefile.in @@ -0,0 +1,381 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/mimetypes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = mimetypes +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + application-certificate.png \ + application-x-executable.png \ + audio-x-generic.png \ + font-x-generic.png \ + image-x-generic.png \ + package-x-generic.png \ + text-html.png \ + text-x-generic.png \ + text-x-generic-template.png \ + text-x-script.png \ + video-x-generic.png \ + x-office-address-book.png \ + x-office-calendar.png \ + x-office-document.png \ + x-office-document-template.png \ + x-office-drawing.png \ + x-office-drawing-template.png \ + x-office-presentation.png \ + x-office-presentation-template.png \ + x-office-spreadsheet.png \ + x-office-spreadsheet-template.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/mimetypes/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/mimetypes/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/mimetypes/application-certificate.png b/images/32x32/mimetypes/application-certificate.png new file mode 100644 index 0000000..b75ba54 Binary files /dev/null and b/images/32x32/mimetypes/application-certificate.png differ diff --git a/images/32x32/mimetypes/application-x-executable.png b/images/32x32/mimetypes/application-x-executable.png new file mode 100644 index 0000000..8a150b8 Binary files /dev/null and b/images/32x32/mimetypes/application-x-executable.png differ diff --git a/images/32x32/mimetypes/audio-x-generic.png b/images/32x32/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..c60b595 Binary files /dev/null and b/images/32x32/mimetypes/audio-x-generic.png differ diff --git a/images/32x32/mimetypes/font-x-generic.png b/images/32x32/mimetypes/font-x-generic.png new file mode 100644 index 0000000..b166f4b Binary files /dev/null and b/images/32x32/mimetypes/font-x-generic.png differ diff --git a/images/32x32/mimetypes/image-x-generic.png b/images/32x32/mimetypes/image-x-generic.png new file mode 100644 index 0000000..6f118cd Binary files /dev/null and b/images/32x32/mimetypes/image-x-generic.png differ diff --git a/images/32x32/mimetypes/package-x-generic.png b/images/32x32/mimetypes/package-x-generic.png new file mode 100644 index 0000000..4b55b50 Binary files /dev/null and b/images/32x32/mimetypes/package-x-generic.png differ diff --git a/images/32x32/mimetypes/text-html.png b/images/32x32/mimetypes/text-html.png new file mode 100644 index 0000000..a896697 Binary files /dev/null and b/images/32x32/mimetypes/text-html.png differ diff --git a/images/32x32/mimetypes/text-x-generic-template.png b/images/32x32/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..5b7e649 Binary files /dev/null and b/images/32x32/mimetypes/text-x-generic-template.png differ diff --git a/images/32x32/mimetypes/text-x-generic.png b/images/32x32/mimetypes/text-x-generic.png new file mode 100644 index 0000000..928a679 Binary files /dev/null and b/images/32x32/mimetypes/text-x-generic.png differ diff --git a/images/32x32/mimetypes/text-x-script.png b/images/32x32/mimetypes/text-x-script.png new file mode 100644 index 0000000..801dcd6 Binary files /dev/null and b/images/32x32/mimetypes/text-x-script.png differ diff --git a/images/32x32/mimetypes/video-x-generic.png b/images/32x32/mimetypes/video-x-generic.png new file mode 100644 index 0000000..5d6c8d1 Binary files /dev/null and b/images/32x32/mimetypes/video-x-generic.png differ diff --git a/images/32x32/mimetypes/x-office-address-book.png b/images/32x32/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..53dde74 Binary files /dev/null and b/images/32x32/mimetypes/x-office-address-book.png differ diff --git a/images/32x32/mimetypes/x-office-calendar.png b/images/32x32/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..bc6db5b Binary files /dev/null and b/images/32x32/mimetypes/x-office-calendar.png differ diff --git a/images/32x32/mimetypes/x-office-document-template.png b/images/32x32/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..9619241 Binary files /dev/null and b/images/32x32/mimetypes/x-office-document-template.png differ diff --git a/images/32x32/mimetypes/x-office-document.png b/images/32x32/mimetypes/x-office-document.png new file mode 100644 index 0000000..daf84b2 Binary files /dev/null and b/images/32x32/mimetypes/x-office-document.png differ diff --git a/images/32x32/mimetypes/x-office-drawing-template.png b/images/32x32/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..6fc043c Binary files /dev/null and b/images/32x32/mimetypes/x-office-drawing-template.png differ diff --git a/images/32x32/mimetypes/x-office-drawing.png b/images/32x32/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5cd66c1 Binary files /dev/null and b/images/32x32/mimetypes/x-office-drawing.png differ diff --git a/images/32x32/mimetypes/x-office-presentation-template.png b/images/32x32/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..bc348f1 Binary files /dev/null and b/images/32x32/mimetypes/x-office-presentation-template.png differ diff --git a/images/32x32/mimetypes/x-office-presentation.png b/images/32x32/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..047355c Binary files /dev/null and b/images/32x32/mimetypes/x-office-presentation.png differ diff --git a/images/32x32/mimetypes/x-office-spreadsheet-template.png b/images/32x32/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..6a81f36 Binary files /dev/null and b/images/32x32/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/32x32/mimetypes/x-office-spreadsheet.png b/images/32x32/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c0ccb7a Binary files /dev/null and b/images/32x32/mimetypes/x-office-spreadsheet.png differ diff --git a/images/32x32/places/Makefile.am b/images/32x32/places/Makefile.am new file mode 100644 index 0000000..13f87c7 --- /dev/null +++ b/images/32x32/places/Makefile.am @@ -0,0 +1,22 @@ + +size = 32x32 +context = places + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + folder.png \ + folder-remote.png \ + folder-saved-search.png \ + network-server.png \ + network-workgroup.png \ + start-here.png \ + user-desktop.png \ + user-home.png \ + user-trash.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/places/Makefile.in b/images/32x32/places/Makefile.in new file mode 100644 index 0000000..ca42021 --- /dev/null +++ b/images/32x32/places/Makefile.in @@ -0,0 +1,369 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/places +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = places +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + folder.png \ + folder-remote.png \ + folder-saved-search.png \ + network-server.png \ + network-workgroup.png \ + start-here.png \ + user-desktop.png \ + user-home.png \ + user-trash.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/places/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/places/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/places/folder-remote.png b/images/32x32/places/folder-remote.png new file mode 100644 index 0000000..3e0d9ad Binary files /dev/null and b/images/32x32/places/folder-remote.png differ diff --git a/images/32x32/places/folder-saved-search.png b/images/32x32/places/folder-saved-search.png new file mode 100644 index 0000000..88d4541 Binary files /dev/null and b/images/32x32/places/folder-saved-search.png differ diff --git a/images/32x32/places/folder.png b/images/32x32/places/folder.png new file mode 100644 index 0000000..472484f Binary files /dev/null and b/images/32x32/places/folder.png differ diff --git a/images/32x32/places/network-server.png b/images/32x32/places/network-server.png new file mode 100644 index 0000000..1d38e4f Binary files /dev/null and b/images/32x32/places/network-server.png differ diff --git a/images/32x32/places/network-workgroup.png b/images/32x32/places/network-workgroup.png new file mode 100644 index 0000000..4137b3c Binary files /dev/null and b/images/32x32/places/network-workgroup.png differ diff --git a/images/32x32/places/start-here.png b/images/32x32/places/start-here.png new file mode 100644 index 0000000..1e54d01 Binary files /dev/null and b/images/32x32/places/start-here.png differ diff --git a/images/32x32/places/user-desktop.png b/images/32x32/places/user-desktop.png new file mode 100644 index 0000000..57fb177 Binary files /dev/null and b/images/32x32/places/user-desktop.png differ diff --git a/images/32x32/places/user-home.png b/images/32x32/places/user-home.png new file mode 100644 index 0000000..a29bd69 Binary files /dev/null and b/images/32x32/places/user-home.png differ diff --git a/images/32x32/places/user-trash.png b/images/32x32/places/user-trash.png new file mode 100644 index 0000000..9b7a462 Binary files /dev/null and b/images/32x32/places/user-trash.png differ diff --git a/images/32x32/status/Makefile.am b/images/32x32/status/Makefile.am new file mode 100644 index 0000000..588607a --- /dev/null +++ b/images/32x32/status/Makefile.am @@ -0,0 +1,48 @@ + +size = 32x32 +context = status + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + audio-volume-high.png \ + audio-volume-low.png \ + audio-volume-medium.png \ + audio-volume-muted.png \ + battery-caution.png \ + dialog-error.png \ + dialog-information.png \ + dialog-warning.png \ + folder-drag-accept.png \ + folder-open.png \ + folder-visiting.png \ + image-loading.png \ + image-missing.png \ + mail-attachment.png \ + network-error.png \ + network-idle.png \ + network-offline.png \ + network-receive.png \ + network-transmit.png \ + network-transmit-receive.png \ + network-wireless-encrypted.png \ + printer-error.png \ + software-update-available.png \ + software-update-urgent.png \ + user-trash-full.png \ + weather-clear.png \ + weather-clear-night.png \ + weather-few-clouds.png \ + weather-few-clouds-night.png \ + weather-overcast.png \ + weather-severe-alert.png \ + weather-showers.png \ + weather-showers-scattered.png \ + weather-snow.png \ + weather-storm.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/images/32x32/status/Makefile.in b/images/32x32/status/Makefile.in new file mode 100644 index 0000000..cdadf73 --- /dev/null +++ b/images/32x32/status/Makefile.in @@ -0,0 +1,395 @@ +# Makefile.in generated by automake 1.10.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = 32x32/status +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERT = @CONVERT@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +ICONMAP = @ICONMAP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SVGCONVERT = @SVGCONVERT@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build_alias = @build_alias@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host_alias = @host_alias@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +themedir = @themedir@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +size = 32x32 +context = status +iconsdir = $(themedir)/$(size)/$(context) +icons_DATA = \ + audio-volume-high.png \ + audio-volume-low.png \ + audio-volume-medium.png \ + audio-volume-muted.png \ + battery-caution.png \ + dialog-error.png \ + dialog-information.png \ + dialog-warning.png \ + folder-drag-accept.png \ + folder-open.png \ + folder-visiting.png \ + image-loading.png \ + image-missing.png \ + mail-attachment.png \ + network-error.png \ + network-idle.png \ + network-offline.png \ + network-receive.png \ + network-transmit.png \ + network-transmit-receive.png \ + network-wireless-encrypted.png \ + printer-error.png \ + software-update-available.png \ + software-update-urgent.png \ + user-trash-full.png \ + weather-clear.png \ + weather-clear-night.png \ + weather-few-clouds.png \ + weather-few-clouds-night.png \ + weather-overcast.png \ + weather-severe-alert.png \ + weather-showers.png \ + weather-showers-scattered.png \ + weather-snow.png \ + weather-storm.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu 32x32/status/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu 32x32/status/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-data-local install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-iconsDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am uninstall uninstall-am uninstall-iconsDATA + + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/images/32x32/status/audio-volume-high.png b/images/32x32/status/audio-volume-high.png new file mode 100644 index 0000000..70ae43a Binary files /dev/null and b/images/32x32/status/audio-volume-high.png differ diff --git a/images/32x32/status/audio-volume-low.png b/images/32x32/status/audio-volume-low.png new file mode 100644 index 0000000..34546f9 Binary files /dev/null and b/images/32x32/status/audio-volume-low.png differ diff --git a/images/32x32/status/audio-volume-medium.png b/images/32x32/status/audio-volume-medium.png new file mode 100644 index 0000000..4d48a9a Binary files /dev/null and b/images/32x32/status/audio-volume-medium.png differ diff --git a/images/32x32/status/audio-volume-muted.png b/images/32x32/status/audio-volume-muted.png new file mode 100644 index 0000000..a602c85 Binary files /dev/null and b/images/32x32/status/audio-volume-muted.png differ diff --git a/images/32x32/status/battery-caution.png b/images/32x32/status/battery-caution.png new file mode 100644 index 0000000..ede9788 Binary files /dev/null and b/images/32x32/status/battery-caution.png differ diff --git a/images/32x32/status/dialog-error.png b/images/32x32/status/dialog-error.png new file mode 100644 index 0000000..cdd95ba Binary files /dev/null and b/images/32x32/status/dialog-error.png differ diff --git a/images/32x32/status/dialog-information.png b/images/32x32/status/dialog-information.png new file mode 100644 index 0000000..2ac5747 Binary files /dev/null and b/images/32x32/status/dialog-information.png differ diff --git a/images/32x32/status/dialog-warning.png b/images/32x32/status/dialog-warning.png new file mode 100644 index 0000000..7233d45 Binary files /dev/null and b/images/32x32/status/dialog-warning.png differ diff --git a/images/32x32/status/folder-drag-accept.png b/images/32x32/status/folder-drag-accept.png new file mode 100644 index 0000000..2feba85 Binary files /dev/null and b/images/32x32/status/folder-drag-accept.png differ diff --git a/images/32x32/status/folder-open.png b/images/32x32/status/folder-open.png new file mode 100644 index 0000000..901816c Binary files /dev/null and b/images/32x32/status/folder-open.png differ diff --git a/images/32x32/status/folder-visiting.png b/images/32x32/status/folder-visiting.png new file mode 100644 index 0000000..be02b6a Binary files /dev/null and b/images/32x32/status/folder-visiting.png differ diff --git a/images/32x32/status/image-loading.png b/images/32x32/status/image-loading.png new file mode 100644 index 0000000..9442085 Binary files /dev/null and b/images/32x32/status/image-loading.png differ diff --git a/images/32x32/status/image-missing.png b/images/32x32/status/image-missing.png new file mode 100644 index 0000000..27fccd5 Binary files /dev/null and b/images/32x32/status/image-missing.png differ diff --git a/images/32x32/status/mail-attachment.png b/images/32x32/status/mail-attachment.png new file mode 100644 index 0000000..78f1e1c Binary files /dev/null and b/images/32x32/status/mail-attachment.png differ diff --git a/images/32x32/status/network-error.png b/images/32x32/status/network-error.png new file mode 100644 index 0000000..3de26e7 Binary files /dev/null and b/images/32x32/status/network-error.png differ diff --git a/images/32x32/status/network-idle.png b/images/32x32/status/network-idle.png new file mode 100644 index 0000000..dca03af Binary files /dev/null and b/images/32x32/status/network-idle.png differ diff --git a/images/32x32/status/network-offline.png b/images/32x32/status/network-offline.png new file mode 100644 index 0000000..428aaa5 Binary files /dev/null and b/images/32x32/status/network-offline.png differ diff --git a/images/32x32/status/network-receive.png b/images/32x32/status/network-receive.png new file mode 100644 index 0000000..b149c5d Binary files /dev/null and b/images/32x32/status/network-receive.png differ diff --git a/images/32x32/status/network-transmit-receive.png b/images/32x32/status/network-transmit-receive.png new file mode 100644 index 0000000..10ad0ac Binary files /dev/null and b/images/32x32/status/network-transmit-receive.png differ diff --git a/images/32x32/status/network-transmit.png b/images/32x32/status/network-transmit.png new file mode 100644 index 0000000..aaa91b8 Binary files /dev/null and b/images/32x32/status/network-transmit.png differ diff --git a/images/32x32/status/network-wireless-encrypted.png b/images/32x32/status/network-wireless-encrypted.png new file mode 100644 index 0000000..0d4e368 Binary files /dev/null and b/images/32x32/status/network-wireless-encrypted.png differ diff --git a/images/32x32/status/printer-error.png b/images/32x32/status/printer-error.png new file mode 100644 index 0000000..a6aa460 Binary files /dev/null and b/images/32x32/status/printer-error.png differ diff --git a/images/32x32/status/software-update-available.png b/images/32x32/status/software-update-available.png new file mode 100644 index 0000000..aadcb91 Binary files /dev/null and b/images/32x32/status/software-update-available.png differ diff --git a/images/32x32/status/software-update-urgent.png b/images/32x32/status/software-update-urgent.png new file mode 100644 index 0000000..3d67d9e Binary files /dev/null and b/images/32x32/status/software-update-urgent.png differ diff --git a/images/32x32/status/user-trash-full.png b/images/32x32/status/user-trash-full.png new file mode 100644 index 0000000..462ef39 Binary files /dev/null and b/images/32x32/status/user-trash-full.png differ diff --git a/images/32x32/status/weather-clear-night.png b/images/32x32/status/weather-clear-night.png new file mode 100644 index 0000000..aa2714c Binary files /dev/null and b/images/32x32/status/weather-clear-night.png differ diff --git a/images/32x32/status/weather-clear.png b/images/32x32/status/weather-clear.png new file mode 100644 index 0000000..c84e8d3 Binary files /dev/null and b/images/32x32/status/weather-clear.png differ diff --git a/images/32x32/status/weather-few-clouds-night.png b/images/32x32/status/weather-few-clouds-night.png new file mode 100644 index 0000000..62e21d7 Binary files /dev/null and b/images/32x32/status/weather-few-clouds-night.png differ diff --git a/images/32x32/status/weather-few-clouds.png b/images/32x32/status/weather-few-clouds.png new file mode 100644 index 0000000..8c14e0d Binary files /dev/null and b/images/32x32/status/weather-few-clouds.png differ diff --git a/images/32x32/status/weather-overcast.png b/images/32x32/status/weather-overcast.png new file mode 100644 index 0000000..cc22e4c Binary files /dev/null and b/images/32x32/status/weather-overcast.png differ diff --git a/images/32x32/status/weather-severe-alert.png b/images/32x32/status/weather-severe-alert.png new file mode 100644 index 0000000..fb75808 Binary files /dev/null and b/images/32x32/status/weather-severe-alert.png differ diff --git a/images/32x32/status/weather-showers-scattered.png b/images/32x32/status/weather-showers-scattered.png new file mode 100644 index 0000000..6e85a7b Binary files /dev/null and b/images/32x32/status/weather-showers-scattered.png differ diff --git a/images/32x32/status/weather-showers.png b/images/32x32/status/weather-showers.png new file mode 100644 index 0000000..0074348 Binary files /dev/null and b/images/32x32/status/weather-showers.png differ diff --git a/images/32x32/status/weather-snow.png b/images/32x32/status/weather-snow.png new file mode 100644 index 0000000..fef6e4d Binary files /dev/null and b/images/32x32/status/weather-snow.png differ diff --git a/images/32x32/status/weather-storm.png b/images/32x32/status/weather-storm.png new file mode 100644 index 0000000..8a7db96 Binary files /dev/null and b/images/32x32/status/weather-storm.png differ diff --git a/main.go b/main.go index a2714c4..6cba2a6 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ type MyMainWindow struct { const ( AppName string = "BeadImager" - Version string = "0.4.2" + Version string = "0.4.3" CopyRight string = "©2022 Jan Lerking" STD_MESS string = "Ready" LogFile string = "BeadImager.log" diff --git a/menu.go b/menu.go index 5b36a0c..9582196 100644 --- a/menu.go +++ b/menu.go @@ -1,6 +1,10 @@ package main -import "github.com/lxn/walk" +import ( + "log" + + "github.com/lxn/walk" +) func SetupMenu(mw *MyMainWindow) { // MenuBar @@ -11,8 +15,19 @@ func SetupMenu(mw *MyMainWindow) { tool.SetText("File") open := walk.NewAction() open.SetText("Open") + openImg, err := walk.NewImageFromFileForDPI("images\\16x16\\status\\folder-open.png", 144) + if err != nil { + log.Println("Error loading icon: ", err) + } + err = open.SetImage(openImg) + if err != nil { + log.Println("Error setting icon: ", err) + } exit := walk.NewAction() exit.SetText("Exit") + exit.Triggered().Attach(func() { + mw.MainWindow.Close() + }) menutool.Actions().Add(open) menutool.Actions().Add(exit) @@ -20,6 +35,14 @@ func SetupMenu(mw *MyMainWindow) { men2, _ := walk.NewMenu() too2 := walk.NewMenuAction(men2) too2.SetText("Help") + about := walk.NewAction() + about.SetText("About") + about.Triggered().Attach(func() { + txt := AppName + " " + Version + "\n" + CopyRight + walk.MsgBox(nil, "About", txt, walk.MsgBoxIconInformation) + }) + + men2.Actions().Add(about) mw.MainWindow.Menu().Actions().Add(tool) mw.MainWindow.Menu().Actions().Add(too2)