diff options
| author | Alessio Treglia <alessio@debian.org> | 2013-10-05 15:28:26 +0100 | 
|---|---|---|
| committer | Alessio Treglia <alessio@debian.org> | 2013-10-05 15:28:26 +0100 | 
| commit | 2d71d20a62ca8f6989d86db58ce64c7a862675dd (patch) | |
| tree | 534c40e7c4b35662d60e261898b6b1ebd5724bed /data | |
| parent | 695f537db79b0921621b54998ae46f331fff9105 (diff) | |
Imported Upstream version 3.10.0upstream/3.10.0
Diffstat (limited to 'data')
| -rw-r--r-- | data/Makefile.am | 20 | ||||
| -rw-r--r-- | data/Makefile.in | 364 | ||||
| -rw-r--r-- | data/icons/Makefile.in | 106 | ||||
| -rw-r--r-- | data/org.gnome.SimpleScan.gschema.xml.in | 16 | ||||
| -rw-r--r-- | data/simple-scan.appdata.xml | 16 | ||||
| -rw-r--r-- | data/simple-scan.gresource.xml | 6 | ||||
| -rw-r--r-- | data/simple-scan.ui | 121 | 
7 files changed, 426 insertions, 223 deletions
| diff --git a/data/Makefile.am b/data/Makefile.am index c99f807..b436f12 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,23 +1,25 @@  SUBDIRS = icons -uidir = $(datadir)/simple-scan -ui_DATA = simple-scan.ui - -utilitiesdir = $(datadir)/applications -utilities_in_files = simple-scan.desktop.in -utilities_DATA = $(utilities_in_files:.desktop.in=.desktop) +desktopdir = $(datadir)/applications +desktop_DATA = simple-scan.desktop  @INTLTOOL_DESKTOP_RULE@ +appdatadir = $(datadir)/appdata +dist_appdata_DATA = simple-scan.appdata.xml +  gsettings_SCHEMAS = org.gnome.SimpleScan.gschema.xml  @INTLTOOL_XML_NOMERGE_RULE@  @GSETTINGS_RULES@ -man1_MANS = simple-scan.1 +dist_man1_MANS = simple-scan.1 -EXTRA_DIST = $(ui_DATA) $(utilities_in_files) org.gnome.SimpleScan.gschema.xml.in $(man1_MANS) +EXTRA_DIST = simple-scan.desktop.in \ +             org.gnome.SimpleScan.gschema.xml.in \ +             simple-scan.ui \ +             simple-scan.gresource.xml  DISTCLEANFILES = \  	Makefile.in \  	$(schema_DATA) \ -	$(utilities_DATA) \ +	$(desktop_DATA) \  	$(gsettings_SCHEMAS) diff --git a/data/Makefile.in b/data/Makefile.in index 76ca377..c0f39f2 100644 --- a/data/Makefile.in +++ b/data/Makefile.in @@ -1,9 +1,8 @@ -# Makefile.in generated by automake 1.11.6 from Makefile.am. +# Makefile.in generated by automake 1.13.3 from Makefile.am.  # @configure_input@ -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# Copyright (C) 1994-2013 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. @@ -16,23 +15,51 @@  @SET_MAKE@  VPATH = @srcdir@ -am__make_dryrun = \ -  { \ -    am__dry=no; \ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ +  case $${target_option-} in \ +      ?) ;; \ +      *) echo "am__make_running_with_option: internal error: invalid" \ +              "target option '$${target_option-}' specified" >&2; \ +         exit 1;; \ +  esac; \ +  has_opt=no; \ +  sane_makeflags=$$MAKEFLAGS; \ +  if $(am__is_gnu_make); then \ +    sane_makeflags=$$MFLAGS; \ +  else \      case $$MAKEFLAGS in \        *\\[\ \	]*) \ -        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \ -          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ -      *) \ -        for am__flg in $$MAKEFLAGS; do \ -          case $$am__flg in \ -            *=*|--*) ;; \ -            *n*) am__dry=yes; break;; \ -          esac; \ -        done;; \ +        bs=\\; \ +        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \      esac; \ -    test $$am__dry = yes; \ -  } +  fi; \ +  skip_next=no; \ +  strip_trailopt () \ +  { \ +    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +  }; \ +  for flg in $$sane_makeflags; do \ +    test $$skip_next = yes && { skip_next=no; continue; }; \ +    case $$flg in \ +      *=*|--*) continue;; \ +        -*I) strip_trailopt 'I'; skip_next=yes;; \ +      -*I?*) strip_trailopt 'I';; \ +        -*O) strip_trailopt 'O'; skip_next=yes;; \ +      -*O?*) strip_trailopt 'O';; \ +        -*l) strip_trailopt 'l'; skip_next=yes;; \ +      -*l?*) strip_trailopt 'l';; \ +      -[dEDm]) skip_next=yes;; \ +      -[JT]) skip_next=yes;; \ +    esac; \ +    case $$flg in \ +      *$$target_option*) has_opt=yes; break;; \ +    esac; \ +  done; \ +  test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option))  pkgdatadir = $(datadir)/@PACKAGE@  pkgincludedir = $(includedir)/@PACKAGE@  pkglibdir = $(libdir)/@PACKAGE@ @@ -50,30 +77,37 @@ NORMAL_UNINSTALL = :  PRE_UNINSTALL = :  POST_UNINSTALL = :  subdir = data -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ +	$(dist_man1_MANS) $(dist_appdata_DATA)  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4  am__aclocal_m4_deps = $(top_srcdir)/configure.ac  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \  	$(ACLOCAL_M4)  mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h  CONFIG_CLEAN_FILES =  CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = :  AM_V_GEN = $(am__v_GEN_@AM_V@)  am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) -am__v_GEN_0 = @echo "  GEN   " $@; +am__v_GEN_0 = @echo "  GEN     " $@; +am__v_GEN_1 =   AM_V_at = $(am__v_at_@AM_V@)  am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)  am__v_at_0 = @ +am__v_at_1 =   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_TARGETS = all-recursive check-recursive cscopelist-recursive \ +	ctags-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 \ +	tags-recursive uninstall-recursive  am__can_run_installinfo = \    case $$AM_UPDATE_INFO_DIR in \      n|no|NO) false;; \ @@ -107,16 +141,36 @@ am__uninstall_files_from_dir = { \           $(am__cd) "$$dir" && rm -f $$files; }; \    }  man1dir = $(mandir)/man1 -am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(uidir)" \ -	"$(DESTDIR)$(utilitiesdir)" +am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(desktopdir)" \ +	"$(DESTDIR)$(appdatadir)"  NROFF = nroff -MANS = $(man1_MANS) -DATA = $(ui_DATA) $(utilities_DATA) +MANS = $(dist_man1_MANS) +DATA = $(desktop_DATA) $(dist_appdata_DATA)  RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\    distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ -	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ +am__recursive_targets = \ +  $(RECURSIVE_TARGETS) \ +  $(RECURSIVE_CLEAN_TARGETS) \ +  $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \  	distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates.  Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ +  BEGIN { nonempty = 0; } \ +  { items[$$0] = 1; nonempty = 1; } \ +  END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique.  This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ +  list='$(am__tagged_files)'; \ +  unique=`for i in $$list; do \ +    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ +  done | $(am__uniquify_input)`  ETAGS = etags  CTAGS = ctags  DIST_SUBDIRS = $(SUBDIRS) @@ -172,6 +226,7 @@ ECHO_T = @ECHO_T@  EGREP = @EGREP@  EXEEXT = @EXEEXT@  GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@  GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@  GMSGFMT = @GMSGFMT@  GREP = @GREP@ @@ -269,18 +324,21 @@ top_build_prefix = @top_build_prefix@  top_builddir = @top_builddir@  top_srcdir = @top_srcdir@  SUBDIRS = icons -uidir = $(datadir)/simple-scan -ui_DATA = simple-scan.ui -utilitiesdir = $(datadir)/applications -utilities_in_files = simple-scan.desktop.in -utilities_DATA = $(utilities_in_files:.desktop.in=.desktop) +desktopdir = $(datadir)/applications +desktop_DATA = simple-scan.desktop +appdatadir = $(datadir)/appdata +dist_appdata_DATA = simple-scan.appdata.xml  gsettings_SCHEMAS = org.gnome.SimpleScan.gschema.xml -man1_MANS = simple-scan.1 -EXTRA_DIST = $(ui_DATA) $(utilities_in_files) org.gnome.SimpleScan.gschema.xml.in $(man1_MANS) +dist_man1_MANS = simple-scan.1 +EXTRA_DIST = simple-scan.desktop.in \ +             org.gnome.SimpleScan.gschema.xml.in \ +             simple-scan.ui \ +             simple-scan.gresource.xml +  DISTCLEANFILES = \  	Makefile.in \  	$(schema_DATA) \ -	$(utilities_DATA) \ +	$(desktop_DATA) \  	$(gsettings_SCHEMAS)  all: all-recursive @@ -295,9 +353,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__confi  	      exit 1;; \  	  esac; \  	done; \ -	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \ +	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign data/Makefile'; \  	$(am__cd) $(top_srcdir) && \ -	  $(AUTOMAKE) --gnu data/Makefile +	  $(AUTOMAKE) --foreign data/Makefile  .PRECIOUS: Makefile  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status  	@case '$?' in \ @@ -316,9 +374,9 @@ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)  $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh  $(am__aclocal_m4_deps): -install-man1: $(man1_MANS) +install-man1: $(dist_man1_MANS)  	@$(NORMAL_INSTALL) -	@list1='$(man1_MANS)'; \ +	@list1='$(dist_man1_MANS)'; \  	list2=''; \  	test -n "$(man1dir)" \  	  && test -n "`echo $$list1$$list2`" \ @@ -352,71 +410,74 @@ install-man1: $(man1_MANS)  uninstall-man1:  	@$(NORMAL_UNINSTALL) -	@list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \ +	@list='$(dist_man1_MANS)'; test -n "$(man1dir)" || exit 0; \  	files=`{ for i in $$list; do echo "$$i"; done; \  	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \  	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \  	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) -install-uiDATA: $(ui_DATA) +install-desktopDATA: $(desktop_DATA)  	@$(NORMAL_INSTALL) -	@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ +	@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \  	if test -n "$$list"; then \ -	  echo " $(MKDIR_P) '$(DESTDIR)$(uidir)'"; \ -	  $(MKDIR_P) "$(DESTDIR)$(uidir)" || exit 1; \ +	  echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ +	  $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || exit 1; \  	fi; \  	for p in $$list; do \  	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \  	  echo "$$d$$p"; \  	done | $(am__base_list) | \  	while read files; do \ -	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \ -	  $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \ +	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \ +	  $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \  	done -uninstall-uiDATA: +uninstall-desktopDATA:  	@$(NORMAL_UNINSTALL) -	@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ +	@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \  	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ -	dir='$(DESTDIR)$(uidir)'; $(am__uninstall_files_from_dir) -install-utilitiesDATA: $(utilities_DATA) +	dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) +install-dist_appdataDATA: $(dist_appdata_DATA)  	@$(NORMAL_INSTALL) -	@list='$(utilities_DATA)'; test -n "$(utilitiesdir)" || list=; \ +	@list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \  	if test -n "$$list"; then \ -	  echo " $(MKDIR_P) '$(DESTDIR)$(utilitiesdir)'"; \ -	  $(MKDIR_P) "$(DESTDIR)$(utilitiesdir)" || exit 1; \ +	  echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \ +	  $(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \  	fi; \  	for p in $$list; do \  	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \  	  echo "$$d$$p"; \  	done | $(am__base_list) | \  	while read files; do \ -	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(utilitiesdir)'"; \ -	  $(INSTALL_DATA) $$files "$(DESTDIR)$(utilitiesdir)" || exit $$?; \ +	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appdatadir)'"; \ +	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \  	done -uninstall-utilitiesDATA: +uninstall-dist_appdataDATA:  	@$(NORMAL_UNINSTALL) -	@list='$(utilities_DATA)'; test -n "$(utilitiesdir)" || list=; \ +	@list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \  	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ -	dir='$(DESTDIR)$(utilitiesdir)'; $(am__uninstall_files_from_dir) +	dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir)  # 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): -	@fail= failcom='exit 1'; \ -	for f in x $$MAKEFLAGS; do \ -	  case $$f in \ -	    *=* | --[!k]*);; \ -	    *k*) failcom='fail=yes';; \ -	  esac; \ -	done; \ +# 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. +$(am__recursive_targets): +	@fail=; \ +	if $(am__make_keepgoing); then \ +	  failcom='fail=yes'; \ +	else \ +	  failcom='exit 1'; \ +	fi; \  	dot_seen=no; \  	target=`echo $@ | sed s/-recursive//`; \ -	list='$(SUBDIRS)'; for subdir in $$list; do \ +	case "$@" in \ +	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ +	  *) list='$(SUBDIRS)' ;; \ +	esac; \ +	for subdir in $$list; do \  	  echo "Making $$target in $$subdir"; \  	  if test "$$subdir" = "."; then \  	    dot_seen=yes; \ @@ -431,57 +492,12 @@ $(RECURSIVE_TARGETS):  	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \  	fi; test -z "$$fail" -$(RECURSIVE_CLEAN_TARGETS): -	@fail= 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; \ -	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ -	  || eval $$failcom; \ -	done && test -z "$$fail" -tags-recursive: -	list='$(SUBDIRS)'; for subdir in $$list; do \ -	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ -	done -ctags-recursive: -	list='$(SUBDIRS)'; for subdir in $$list; do \ -	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ -	done +ID: $(am__tagged_files) +	$(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags -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; nonempty = 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-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)  	set x; \  	here=`pwd`; \  	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ @@ -497,12 +513,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \  	      set "$$@" "$$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; }; }'`; \ +	$(am__define_uniq_tagged_files); \  	shift; \  	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \  	  test -n "$$unique" || unique=$$empty_fix; \ @@ -514,15 +525,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \  	      $$unique; \  	  fi; \  	fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \ -		$(TAGS_FILES) $(LISP) -	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; }; }'`; \ +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) +	$(am__define_uniq_tagged_files); \  	test -z "$(CTAGS_ARGS)$$unique" \  	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \  	     $$unique @@ -531,24 +538,26 @@ GTAGS:  	here=`$(am__cd) $(top_builddir) && pwd` \  	  && $(am__cd) $(top_srcdir) \  	  && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) +	list='$(am__tagged_files)'; \ +	case "$(srcdir)" in \ +	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ +	  *) sdir=$(subdir)/$(srcdir) ;; \ +	esac; \ +	for i in $$list; do \ +	  if test -f "$$i"; then \ +	    echo "$(subdir)/$$i"; \ +	  else \ +	    echo "$$sdir/$$i"; \ +	  fi; \ +	done >> $(top_builddir)/cscope.files  distclean-tags:  	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags  distdir: $(DISTFILES) -	@list='$(MANS)'; if test -n "$$list"; then \ -	  list=`for p in $$list; do \ -	    if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ -	    if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ -	  if test -n "$$list" && \ -	    grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ -	    echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ -	    grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/         /' >&2; \ -	    echo "       to fix them, install help2man, remove and regenerate the man pages;" >&2; \ -	    echo "       typically \`make maintainer-clean' will remove them" >&2; \ -	    exit 1; \ -	  else :; fi; \ -	else :; fi  	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \  	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \  	list='$(DISTFILES)'; \ @@ -608,7 +617,7 @@ check: check-recursive  all-am: Makefile $(MANS) $(DATA)  installdirs: installdirs-recursive  installdirs-am: -	for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(uidir)" "$(DESTDIR)$(utilitiesdir)"; do \ +	for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(appdatadir)"; do \  	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \  	done  install: install-recursive @@ -662,7 +671,8 @@ info: info-recursive  info-am: -install-data-am: install-man install-uiDATA install-utilitiesDATA +install-data-am: install-desktopDATA install-dist_appdataDATA \ +	install-man  install-dvi: install-dvi-recursive @@ -706,27 +716,27 @@ ps: ps-recursive  ps-am: -uninstall-am: uninstall-man uninstall-uiDATA uninstall-utilitiesDATA +uninstall-am: uninstall-desktopDATA uninstall-dist_appdataDATA \ +	uninstall-man  uninstall-man: uninstall-man1 -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ -	install-am install-strip tags-recursive - -.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-man1 install-pdf install-pdf-am install-ps \ -	install-ps-am install-strip install-uiDATA \ -	install-utilitiesDATA 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 uninstall-man \ -	uninstall-man1 uninstall-uiDATA uninstall-utilitiesDATA +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ +	check-am clean clean-generic cscopelist-am ctags ctags-am \ +	distclean distclean-generic distclean-tags distdir dvi dvi-am \ +	html html-am info info-am install install-am install-data \ +	install-data-am install-desktopDATA install-dist_appdataDATA \ +	install-dvi install-dvi-am install-exec install-exec-am \ +	install-html install-html-am install-info install-info-am \ +	install-man install-man1 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-am uninstall uninstall-am \ +	uninstall-desktopDATA uninstall-dist_appdataDATA uninstall-man \ +	uninstall-man1  @INTLTOOL_DESKTOP_RULE@  @INTLTOOL_XML_NOMERGE_RULE@ diff --git a/data/icons/Makefile.in b/data/icons/Makefile.in index 902790b..3c5fe33 100644 --- a/data/icons/Makefile.in +++ b/data/icons/Makefile.in @@ -1,9 +1,8 @@ -# Makefile.in generated by automake 1.11.6 from Makefile.am. +# Makefile.in generated by automake 1.13.3 from Makefile.am.  # @configure_input@ -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# Copyright (C) 1994-2013 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. @@ -15,23 +14,51 @@  @SET_MAKE@  VPATH = @srcdir@ -am__make_dryrun = \ -  { \ -    am__dry=no; \ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ +  case $${target_option-} in \ +      ?) ;; \ +      *) echo "am__make_running_with_option: internal error: invalid" \ +              "target option '$${target_option-}' specified" >&2; \ +         exit 1;; \ +  esac; \ +  has_opt=no; \ +  sane_makeflags=$$MAKEFLAGS; \ +  if $(am__is_gnu_make); then \ +    sane_makeflags=$$MFLAGS; \ +  else \      case $$MAKEFLAGS in \        *\\[\ \	]*) \ -        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \ -          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ -      *) \ -        for am__flg in $$MAKEFLAGS; do \ -          case $$am__flg in \ -            *=*|--*) ;; \ -            *n*) am__dry=yes; break;; \ -          esac; \ -        done;; \ +        bs=\\; \ +        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ +          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \ +    esac; \ +  fi; \ +  skip_next=no; \ +  strip_trailopt () \ +  { \ +    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ +  }; \ +  for flg in $$sane_makeflags; do \ +    test $$skip_next = yes && { skip_next=no; continue; }; \ +    case $$flg in \ +      *=*|--*) continue;; \ +        -*I) strip_trailopt 'I'; skip_next=yes;; \ +      -*I?*) strip_trailopt 'I';; \ +        -*O) strip_trailopt 'O'; skip_next=yes;; \ +      -*O?*) strip_trailopt 'O';; \ +        -*l) strip_trailopt 'l'; skip_next=yes;; \ +      -*l?*) strip_trailopt 'l';; \ +      -[dEDm]) skip_next=yes;; \ +      -[JT]) skip_next=yes;; \ +    esac; \ +    case $$flg in \ +      *$$target_option*) has_opt=yes; break;; \      esac; \ -    test $$am__dry = yes; \ -  } +  done; \ +  test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option))  pkgdatadir = $(datadir)/@PACKAGE@  pkgincludedir = $(includedir)/@PACKAGE@  pkglibdir = $(libdir)/@PACKAGE@ @@ -49,21 +76,26 @@ NORMAL_UNINSTALL = :  PRE_UNINSTALL = :  POST_UNINSTALL = :  subdir = data/icons -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4  am__aclocal_m4_deps = $(top_srcdir)/configure.ac  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \  	$(ACLOCAL_M4)  mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h  CONFIG_CLEAN_FILES =  CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = :  AM_V_GEN = $(am__v_GEN_@AM_V@)  am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) -am__v_GEN_0 = @echo "  GEN   " $@; +am__v_GEN_0 = @echo "  GEN     " $@; +am__v_GEN_1 =   AM_V_at = $(am__v_at_@AM_V@)  am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)  am__v_at_0 = @ +am__v_at_1 =   SOURCES =  DIST_SOURCES =  am__can_run_installinfo = \ @@ -71,6 +103,7 @@ am__can_run_installinfo = \      n|no|NO) false;; \      *) (install-info --version) >/dev/null 2>&1;; \    esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)  ACLOCAL = @ACLOCAL@  ALL_LINGUAS = @ALL_LINGUAS@ @@ -98,6 +131,7 @@ ECHO_T = @ECHO_T@  EGREP = @EGREP@  EXEEXT = @EXEEXT@  GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@  GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@  GMSGFMT = @GMSGFMT@  GREP = @GREP@ @@ -215,9 +249,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__confi  	      exit 1;; \  	  esac; \  	done; \ -	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/icons/Makefile'; \ +	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign data/icons/Makefile'; \  	$(am__cd) $(top_srcdir) && \ -	  $(AUTOMAKE) --gnu data/icons/Makefile +	  $(AUTOMAKE) --foreign data/icons/Makefile  .PRECIOUS: Makefile  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status  	@case '$?' in \ @@ -236,11 +270,11 @@ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)  $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh  $(am__aclocal_m4_deps): -tags: TAGS -TAGS: +tags TAGS: + +ctags CTAGS: -ctags: CTAGS -CTAGS: +cscope cscopelist:  distdir: $(DISTFILES) @@ -375,16 +409,16 @@ uninstall-am: 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-info \ -	install-info-am install-man install-pdf install-pdf-am \ -	install-ps install-ps-am install-strip installcheck \ -	installcheck-am installdirs maintainer-clean \ +.PHONY: all all-am check check-am clean clean-generic cscopelist-am \ +	ctags-am 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-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-local +	pdf-am ps ps-am tags-am uninstall uninstall-am uninstall-local  install-data-local: diff --git a/data/org.gnome.SimpleScan.gschema.xml.in b/data/org.gnome.SimpleScan.gschema.xml.in index 2a6047f..da50c8a 100644 --- a/data/org.gnome.SimpleScan.gschema.xml.in +++ b/data/org.gnome.SimpleScan.gschema.xml.in @@ -63,6 +63,16 @@        <_summary>Height of paper in tenths of a mm</_summary>        <_description>The height of the paper in tenths of a mm (or 0 for automatic paper detection).</_description>      </key> +    <key name="brightness" type="i"> +      <default>0</default> +      <_summary>Brightness of scan</_summary> +      <_description>The brightness adjustment from -100 to 100 (0 being none).</_description> +    </key> +    <key name="contrast" type="i"> +        <default>0</default> +        <_summary>Contrast of scan</_summary> +        <_description>The contrast adjustment from -100 to 100 (0 being none).</_description> +    </key>      <key name="page-dpi" type="i">        <default>72</default>        <_summary>Resolution of last scanned image</_summary> @@ -88,5 +98,11 @@        <_summary>Directory to save files to</_summary>        <_description>The directory to save files to.  Defaults to the documents directory if unset.</_description>      </key> +    <key name="jpeg-quality" type="i"> +      <range min="0" max="100"/> +      <default>75</default> +      <_summary>Quality value to use for JPEG compression</_summary> +      <_description>Quality value to use for JPEG compression.</_description> +    </key>    </schema>  </schemalist> diff --git a/data/simple-scan.appdata.xml b/data/simple-scan.appdata.xml new file mode 100644 index 0000000..dd57ff6 --- /dev/null +++ b/data/simple-scan.appdata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<application> +  <id type="desktop">simple-scan.desktop</id> +  <licence>CC0</licence> +  <description> +    <p> +      A really easy way to scan both documents and photos. +      You can crop out the bad parts of a photo and rotate it if it is the wrong way round. +      You can print your scans, export them to pdf, or save them in a range of image formats. +    </p> +    <p> +      Simple Scan uses the SANE framework to support most existing scanners. +    </p> +  </description> +  <url type="homepage">https://launchpad.net/simple-scan</url> +</application> diff --git a/data/simple-scan.gresource.xml b/data/simple-scan.gresource.xml new file mode 100644 index 0000000..b6fe6a6 --- /dev/null +++ b/data/simple-scan.gresource.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<gresources> +  <gresource prefix="/org/gnome/SimpleScan"> +    <file preprocess="xml-stripblanks">simple-scan.ui</file> +  </gresource> +</gresources> diff --git a/data/simple-scan.ui b/data/simple-scan.ui index 7a5d7c1..eb4ae02 100644 --- a/data/simple-scan.ui +++ b/data/simple-scan.ui @@ -325,6 +325,17 @@                        </object>                      </child>                      <child> +                      <object class="GtkImageMenuItem" id="copy_to_clipboard_menuitem"> +                        <property name="label">gtk-copy</property> +                        <property name="visible">True</property> +                        <property name="sensitive">False</property> +                        <property name="use_underline">True</property> +                        <property name="use_stock">True</property> +                        <accelerator key="c" signal="activate" modifiers="GDK_CONTROL_MASK"/> +                        <signal name="activate" handler="copy_to_clipboard_button_clicked_cb"/> +                      </object> +                    </child>                     +                    <child>                        <object class="GtkImageMenuItem" id="page_delete_menuitem">                          <property name="label">gtk-delete</property>                          <property name="visible">True</property> @@ -676,7 +687,7 @@            <object class="GtkTable" id="table3">              <property name="visible">True</property>              <property name="border_width">5</property> -            <property name="n_rows">5</property> +            <property name="n_rows">7</property>              <property name="n_columns">2</property>              <property name="column_spacing">6</property>              <property name="row_spacing">6</property> @@ -818,6 +829,96 @@                  <property name="y_options">GTK_FILL</property>                </packing>              </child> +            <child> +              <object class="GtkLabel" id="brightness_label"> +                <property name="visible">True</property> +                <property name="can_focus">False</property> +                <property name="xalign">0</property> +                <property name="label" translatable="yes" comments="Label beside brightness scale">Brightness:</property> +                <property name="use_underline">True</property> +                <property name="mnemonic_widget">brightness_adjustment</property> +              </object> +              <packing> +                <property name="top_attach">5</property> +                <property name="bottom_attach">6</property> +                <property name="x_options">GTK_FILL</property> +                <property name="y_options">GTK_FILL</property> +              </packing> +            </child> +            <child> +              <object class="GtkScale" id="brightness_scale"> +                <property name="visible">True</property> +                <property name="can_focus">True</property> +                <property name="adjustment">brightness_adjustment</property> +                <property name="draw_value">False</property> +              </object> +              <packing> +                <property name="left_attach">1</property> +                <property name="right_attach">2</property> +                <property name="top_attach">5</property> +                <property name="bottom_attach">6</property> +              </packing> +            </child> +            <child> +              <object class="GtkLabel" id="contrast_label"> +                <property name="visible">True</property> +                <property name="can_focus">False</property> +                <property name="xalign">0</property> +                <property name="label" translatable="yes" comments="Label beside contrast scale">Contrast:</property> +                <property name="use_underline">True</property> +                <property name="mnemonic_widget">contrast_scale</property> +              </object> +              <packing> +                <property name="top_attach">6</property> +                <property name="bottom_attach">7</property> +                <property name="x_options">GTK_FILL</property> +                <property name="y_options">GTK_FILL</property> +              </packing> +            </child> +            <child> +              <object class="GtkScale" id="contrast_scale"> +                <property name="visible">True</property> +                <property name="can_focus">True</property> +                <property name="adjustment">contrast_adjustment</property> +                <property name="draw_value">False</property> +              </object> +              <packing> +                <property name="left_attach">1</property> +                <property name="right_attach">2</property> +                <property name="top_attach">6</property> +                <property name="bottom_attach">7</property> +              </packing> +            </child> +            <child> +              <object class="GtkLabel" id="quality_label"> +                <property name="visible">True</property> +                <property name="can_focus">False</property> +                <property name="xalign">0</property> +                <property name="label" translatable="yes" comments="Label beside quality scale">Quality:</property> +                <property name="use_underline">True</property> +                <property name="mnemonic_widget">quality_scale</property> +              </object> +              <packing> +                <property name="top_attach">7</property> +                <property name="bottom_attach">8</property> +                <property name="x_options">GTK_FILL</property> +                <property name="y_options">GTK_FILL</property> +              </packing> +            </child> +            <child> +              <object class="GtkScale" id="quality_scale"> +                <property name="visible">True</property> +                <property name="can_focus">True</property> +                <property name="adjustment">quality_adjustment</property> +                <property name="draw_value">False</property> +              </object> +              <packing> +                <property name="left_attach">1</property> +                <property name="right_attach">2</property> +                <property name="top_attach">7</property> +                <property name="bottom_attach">8</property> +              </packing> +            </child>            </object>            <packing>              <property name="position">1</property> @@ -954,4 +1055,22 @@        <column type="gchararray"/>      </columns>    </object> +  <object class="GtkAdjustment" id="brightness_adjustment"> +    <property name="lower">-100</property> +    <property name="upper">100</property> +    <property name="step_increment">1</property> +    <property name="page_increment">10</property> +  </object> +  <object class="GtkAdjustment" id="contrast_adjustment"> +    <property name="lower">-100</property> +    <property name="upper">100</property> +    <property name="step_increment">1</property> +    <property name="page_increment">10</property> +  </object> +  <object class="GtkAdjustment" id="quality_adjustment"> +    <property name="lower">0</property> +    <property name="upper">100</property> +    <property name="step_increment">1</property> +    <property name="page_increment">10</property> +  </object>  </interface> | 
