[SCM] mate-utils Debian package branch, master, updated. 541f233beab76b69c9e4e256e5dc25cb93b927ec

Mike Gabriel sunweaver at moszumanska.debian.org
Fri Apr 25 10:25:20 UTC 2014


Gitweb-URL: http://git.debian.org/?p=pkg-mate/mate-utils.git;a=commitdiff;h=2e3ab27

The following commit has been merged in the master branch:
commit 2e3ab27aaed1f6594d32164ce04b0ac6039829c6
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Fri Apr 25 12:21:35 2014 +0200

    debian/control: Split off libmatedict6(-dev,-dbg) as separate bin:packages.
---
 debian/control                                     |  78 +++++++---
 ...e-utils-dev.install => libmatedict-dev.install} |   2 +
 debian/libmatedict6.install                        |   1 +
 debian/libmatedict6.symbols                        | 172 +++++++++++++++++++++
 debian/mate-utils-common.install                   |   1 -
 debian/mate-utils.install                          |   2 -
 .../1001_add-keywords-key-to-desktop-files.patch   |  53 +++++++
 debian/patches/1002_fix-hyphens-on-man-page.patch  |  80 ++++++++++
 debian/patches/README                              |   3 +
 debian/patches/series                              |   3 +
 10 files changed, 371 insertions(+), 24 deletions(-)

diff --git a/debian/control b/debian/control
index 2e228ad..cc669f5 100644
--- a/debian/control
+++ b/debian/control
@@ -1,5 +1,5 @@
 Source: mate-utils
-Section: mate
+Section: x11
 Priority: optional
 Maintainer: MATE Packaging Team <pkg-mate-team at lists.alioth.debian.org>
 Uploaders: Mike Gabriel <sunweaver at debian.org>,
@@ -24,10 +24,9 @@ Build-Depends: cdbs,
                zlib1g-dev,
                rarian-compat,
                gtk-doc-tools,
-               mate-doc-utils,
-               mate-doc-utils-gnome | gnome-doc-utils,
                libglib2.0-doc,
-               libgtk2.0-doc
+               libgtk2.0-doc,
+               yelp-tools,
 Standards-Version: 3.9.5
 Homepage: http://www.mate-desktop.org/
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-mate/mate-utils.git;a=summary
@@ -37,9 +36,10 @@ Package: mate-utils
 Architecture: any
 Depends: ${misc:Depends},
          ${shlibs:Depends},
-         mate-utils-common (= ${source:Version})
+         mate-utils-common (>= ${source:Version}),
+         libmatedict6 (= ${binary:Version}),
 Description: MATE desktop utilities
- This package contains all the tools bundled the MATE utilities:
+ This package contains all the tools bundled as MATE utilities:
   - mate-disk-usage-analyzer, a disk usage analyser
   - mate-dictionary, a program which can look up the definition of words
     over the internet (including a panel applet to do the same)
@@ -49,11 +49,11 @@ Description: MATE desktop utilities
     a file
 
 Package: mate-utils-common
-Architecture: any
-Depends: ${misc:Depends}
+Architecture: all
+Depends: ${misc:Depends},
 Breaks: mate-utils (<< 1.5.0)
 Description: MATE desktop utilities (common files)
- This package contains all the tools bundled the MATE utilities:
+ This package contains all the tools bundled as MATE utilities:
   - mate-disk-usage-analyzer, a disk usage analyser
   - mate-dictionary, a program which can look up the definition of words
     over the internet (including a panel applet to do the same)
@@ -64,14 +64,14 @@ Description: MATE desktop utilities (common files)
  .
  This package contains the architecture independent files.
 
-Package: mate-utils-dev
-Architecture: all
-Section: devel
+Package: mate-utils-dbg
+Section: debug
+Priority: extra
+Architecture: any
 Depends: ${misc:Depends},
-         mate-utils (= ${source:Version})
-Breaks: mate-utils (<< 1.5.0)
-Description: MATE desktop utilities (development files)
- This package contains all the tools bundled the MATE utilities:
+         mate-utils (= ${binary:Version}),
+Description: MATE desktop utilities (debugging symbols)
+ This package contains all the tools bundled as MATE utilities:
   - mate-disk-usage-analyzer, a disk usage analyser
   - mate-dictionary, a program which can look up the definition of words
     over the internet (including a panel applet to do the same)
@@ -80,16 +80,52 @@ Description: MATE desktop utilities (development files)
   - mate-screenshot, a tool to take desktop screenshots and save them into
     a file
  .
- This package is required to build plugins for MATE desktop utilities.
+ This package contains debugging symbols for the MATE desktop utilities. It
+ is provided to help debugging problems.
+ .
+ The debugging symbols are installed  in /usr/lib/debug and will
+ automatically be used by gdb.
+
+Package: libmatedict6
+Section: libs
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends},
+Description: MATE desktop utilities (matedict library)
+ The MATE dictionary is a program which can look up the definition of words
+ over the internet (including a panel applet to do the same). MATE
+ dictionary is included in the MATE utilities bundle.
+ .
+ This package provides the MATE dictionary library.
 
-Package: mate-utils-dbg
+Package: libmatedict-dev
+Section: libdevel
+Architecture: any
+Depends: ${misc:Depends},
+         libmatedict6 (= ${binary:Version}),
+Breaks: mate-utils (<< 1.5.0),
+        mate-utils-dev (<< 1.8.0),
+Replaces: mate-utils-dev (<< 1.8.0),
+Description: MATE desktop utilities (matedict development files)
+ The MATE dictionary is a program which can look up the definition of words
+ over the internet (including a panel applet to do the same). MATE
+ dictionary is included in the MATE utilities bundle.
+ .
+ This package provides the development files of the MATE dictionary library.
+
+Package: libmatedict6-dbg
 Section: debug
 Priority: extra
 Architecture: any
+Provides: libmatedict-dbg
 Depends: ${misc:Depends},
-         mate-utils (= ${binary:Version})
-Description: MATE desktop utilities (debugging symbols)
- This package contains debugging symbols for MATE desktop utilities. It
+         libmatedict6 (= ${binary:Version}),
+Description: MATE desktop utilities (matedict debugging symbols)
+ The MATE dictionary is a program which can look up the definition of words
+ over the internet (including a panel applet to do the same). MATE
+ dictionary is included in the MATE utilities bundle.
+ .
+ This package contains debugging symbols for the MATE dictionary library. It
  is provided to help debugging problems.
  .
  The debugging symbols are installed  in /usr/lib/debug and will
diff --git a/debian/mate-utils-dev.install b/debian/libmatedict-dev.install
similarity index 56%
rename from debian/mate-utils-dev.install
rename to debian/libmatedict-dev.install
index e3b41c4..7e0df3c 100644
--- a/debian/mate-utils-dev.install
+++ b/debian/libmatedict-dev.install
@@ -1,2 +1,4 @@
+usr/lib/*.so
+usr/lib/*.a
 usr/include/
 usr/lib/pkgconfig/
diff --git a/debian/libmatedict6.install b/debian/libmatedict6.install
new file mode 100644
index 0000000..093956b
--- /dev/null
+++ b/debian/libmatedict6.install
@@ -0,0 +1 @@
+usr/lib/*.so.*
diff --git a/debian/libmatedict6.symbols b/debian/libmatedict6.symbols
new file mode 100644
index 0000000..6946541
--- /dev/null
+++ b/debian/libmatedict6.symbols
@@ -0,0 +1,172 @@
+libmatedict.so.6 libmatedict6 #MINVER#
+ DBType at Base 1.8.0
+ StratType at Base 1.8.0
+ _gdict_database_new at Base 1.8.0
+ _gdict_definition_new at Base 1.8.0
+ _gdict_has_ipv6 at Base 1.8.0
+ _gdict_match_new at Base 1.8.0
+ _gdict_show_error_dialog at Base 1.8.0
+ _gdict_show_gerror_dialog at Base 1.8.0
+ _gdict_strategy_new at Base 1.8.0
+ gdict_check_version at Base 1.8.0
+ gdict_client_context_error_get_type at Base 1.8.0
+ gdict_client_context_error_quark at Base 1.8.0
+ gdict_client_context_get_client at Base 1.8.0
+ gdict_client_context_get_hostname at Base 1.8.0
+ gdict_client_context_get_port at Base 1.8.0
+ gdict_client_context_get_type at Base 1.8.0
+ gdict_client_context_new at Base 1.8.0
+ gdict_client_context_set_client at Base 1.8.0
+ gdict_client_context_set_hostname at Base 1.8.0
+ gdict_client_context_set_port at Base 1.8.0
+ gdict_context_define_word at Base 1.8.0
+ gdict_context_error_get_type at Base 1.8.0
+ gdict_context_error_quark at Base 1.8.0
+ gdict_context_get_local_only at Base 1.8.0
+ gdict_context_get_type at Base 1.8.0
+ gdict_context_lookup_databases at Base 1.8.0
+ gdict_context_lookup_strategies at Base 1.8.0
+ gdict_context_match_word at Base 1.8.0
+ gdict_context_prop_get_type at Base 1.8.0
+ gdict_context_set_local_only at Base 1.8.0
+ gdict_database_chooser_add_button at Base 1.8.0
+ gdict_database_chooser_clear at Base 1.8.0
+ gdict_database_chooser_count_databases at Base 1.8.0
+ gdict_database_chooser_get_context at Base 1.8.0
+ gdict_database_chooser_get_current_database at Base 1.8.0
+ gdict_database_chooser_get_databases at Base 1.8.0
+ gdict_database_chooser_get_type at Base 1.8.0
+ gdict_database_chooser_has_database at Base 1.8.0
+ gdict_database_chooser_new at Base 1.8.0
+ gdict_database_chooser_new_with_context at Base 1.8.0
+ gdict_database_chooser_refresh at Base 1.8.0
+ gdict_database_chooser_select_database at Base 1.8.0
+ gdict_database_chooser_set_context at Base 1.8.0
+ gdict_database_chooser_set_current_database at Base 1.8.0
+ gdict_database_chooser_unselect_database at Base 1.8.0
+ gdict_database_get_full_name at Base 1.8.0
+ gdict_database_get_name at Base 1.8.0
+ gdict_database_get_type at Base 1.8.0
+ gdict_database_ref at Base 1.8.0
+ gdict_database_unref at Base 1.8.0
+ gdict_debug_flags at Base 1.8.0
+ gdict_debug_init at Base 1.8.0
+ gdict_defbox_clear at Base 1.8.0
+ gdict_defbox_copy_to_clipboard at Base 1.8.0
+ gdict_defbox_count_definitions at Base 1.8.0
+ gdict_defbox_find_next at Base 1.8.0
+ gdict_defbox_find_previous at Base 1.8.0
+ gdict_defbox_get_context at Base 1.8.0
+ gdict_defbox_get_database at Base 1.8.0
+ gdict_defbox_get_font_name at Base 1.8.0
+ gdict_defbox_get_selected_word at Base 1.8.0
+ gdict_defbox_get_show_find at Base 1.8.0
+ gdict_defbox_get_text at Base 1.8.0
+ gdict_defbox_get_type at Base 1.8.0
+ gdict_defbox_get_word at Base 1.8.0
+ gdict_defbox_jump_to_definition at Base 1.8.0
+ gdict_defbox_lookup at Base 1.8.0
+ gdict_defbox_new at Base 1.8.0
+ gdict_defbox_new_with_context at Base 1.8.0
+ gdict_defbox_select_all at Base 1.8.0
+ gdict_defbox_set_context at Base 1.8.0
+ gdict_defbox_set_database at Base 1.8.0
+ gdict_defbox_set_font_name at Base 1.8.0
+ gdict_defbox_set_show_find at Base 1.8.0
+ gdict_definition_get_database at Base 1.8.0
+ gdict_definition_get_text at Base 1.8.0
+ gdict_definition_get_total at Base 1.8.0
+ gdict_definition_get_type at Base 1.8.0
+ gdict_definition_get_word at Base 1.8.0
+ gdict_definition_ref at Base 1.8.0
+ gdict_definition_unref at Base 1.8.0
+ gdict_get_option_group at Base 1.8.0
+ gdict_major_version at Base 1.8.0
+ gdict_marshal_VOID__STRING_OBJECT at Base 1.8.0
+ gdict_marshal_VOID__STRING_STRING at Base 1.8.0
+ gdict_match_get_database at Base 1.8.0
+ gdict_match_get_type at Base 1.8.0
+ gdict_match_get_word at Base 1.8.0
+ gdict_match_ref at Base 1.8.0
+ gdict_match_unref at Base 1.8.0
+ gdict_micro_version at Base 1.8.0
+ gdict_minor_version at Base 1.8.0
+ gdict_source_chooser_add_button at Base 1.8.0
+ gdict_source_chooser_count_sources at Base 1.8.0
+ gdict_source_chooser_get_current_source at Base 1.8.0
+ gdict_source_chooser_get_loader at Base 1.8.0
+ gdict_source_chooser_get_sources at Base 1.8.0
+ gdict_source_chooser_get_type at Base 1.8.0
+ gdict_source_chooser_has_source at Base 1.8.0
+ gdict_source_chooser_new at Base 1.8.0
+ gdict_source_chooser_new_with_loader at Base 1.8.0
+ gdict_source_chooser_refresh at Base 1.8.0
+ gdict_source_chooser_select_source at Base 1.8.0
+ gdict_source_chooser_set_current_source at Base 1.8.0
+ gdict_source_chooser_set_loader at Base 1.8.0
+ gdict_source_chooser_unselect_source at Base 1.8.0
+ gdict_source_error_get_type at Base 1.8.0
+ gdict_source_error_quark at Base 1.8.0
+ gdict_source_get_context at Base 1.8.0
+ gdict_source_get_database at Base 1.8.0
+ gdict_source_get_description at Base 1.8.0
+ gdict_source_get_name at Base 1.8.0
+ gdict_source_get_strategy at Base 1.8.0
+ gdict_source_get_transport at Base 1.8.0
+ gdict_source_get_type at Base 1.8.0
+ gdict_source_load_from_data at Base 1.8.0
+ gdict_source_load_from_file at Base 1.8.0
+ gdict_source_loader_add_search_path at Base 1.8.0
+ gdict_source_loader_get_names at Base 1.8.0
+ gdict_source_loader_get_paths at Base 1.8.0
+ gdict_source_loader_get_source at Base 1.8.0
+ gdict_source_loader_get_sources at Base 1.8.0
+ gdict_source_loader_get_type at Base 1.8.0
+ gdict_source_loader_has_source at Base 1.8.0
+ gdict_source_loader_new at Base 1.8.0
+ gdict_source_loader_remove_source at Base 1.8.0
+ gdict_source_loader_update at Base 1.8.0
+ gdict_source_new at Base 1.8.0
+ gdict_source_peek_context at Base 1.8.0
+ gdict_source_set_database at Base 1.8.0
+ gdict_source_set_description at Base 1.8.0
+ gdict_source_set_name at Base 1.8.0
+ gdict_source_set_strategy at Base 1.8.0
+ gdict_source_set_transport at Base 1.8.0
+ gdict_source_set_transportv at Base 1.8.0
+ gdict_source_to_data at Base 1.8.0
+ gdict_source_transport_get_type at Base 1.8.0
+ gdict_speller_clear at Base 1.8.0
+ gdict_speller_count_matches at Base 1.8.0
+ gdict_speller_get_context at Base 1.8.0
+ gdict_speller_get_database at Base 1.8.0
+ gdict_speller_get_matches at Base 1.8.0
+ gdict_speller_get_strategy at Base 1.8.0
+ gdict_speller_get_type at Base 1.8.0
+ gdict_speller_match at Base 1.8.0
+ gdict_speller_new at Base 1.8.0
+ gdict_speller_new_with_context at Base 1.8.0
+ gdict_speller_set_context at Base 1.8.0
+ gdict_speller_set_database at Base 1.8.0
+ gdict_speller_set_strategy at Base 1.8.0
+ gdict_status_code_get_type at Base 1.8.0
+ gdict_strategy_chooser_add_button at Base 1.8.0
+ gdict_strategy_chooser_clear at Base 1.8.0
+ gdict_strategy_chooser_count_strategies at Base 1.8.0
+ gdict_strategy_chooser_get_context at Base 1.8.0
+ gdict_strategy_chooser_get_current_strategy at Base 1.8.0
+ gdict_strategy_chooser_get_strategies at Base 1.8.0
+ gdict_strategy_chooser_get_type at Base 1.8.0
+ gdict_strategy_chooser_has_strategy at Base 1.8.0
+ gdict_strategy_chooser_new at Base 1.8.0
+ gdict_strategy_chooser_new_with_context at Base 1.8.0
+ gdict_strategy_chooser_refresh at Base 1.8.0
+ gdict_strategy_chooser_select_strategy at Base 1.8.0
+ gdict_strategy_chooser_set_context at Base 1.8.0
+ gdict_strategy_chooser_set_current_strategy at Base 1.8.0
+ gdict_strategy_chooser_unselect_strategy at Base 1.8.0
+ gdict_strategy_get_description at Base 1.8.0
+ gdict_strategy_get_name at Base 1.8.0
+ gdict_strategy_get_type at Base 1.8.0
+ gdict_strategy_ref at Base 1.8.0
+ gdict_strategy_unref at Base 1.8.0
diff --git a/debian/mate-utils-common.install b/debian/mate-utils-common.install
index a033c59..f3f9b75 100644
--- a/debian/mate-utils-common.install
+++ b/debian/mate-utils-common.install
@@ -4,5 +4,4 @@ usr/share/icons/
 usr/share/locale/
 usr/share/MateConf/
 usr/share/mate*/
-usr/share/omf/
 usr/share/pixmaps/
diff --git a/debian/mate-utils.install b/debian/mate-utils.install
index 96c42d1..732428b 100644
--- a/debian/mate-utils.install
+++ b/debian/mate-utils.install
@@ -1,6 +1,4 @@
 usr/bin/
-usr/lib/*.so
-usr/lib/*.so.*
 usr/lib/mate-utils/
 usr/share/applications/
 usr/share/man/
diff --git a/debian/patches/1001_add-keywords-key-to-desktop-files.patch b/debian/patches/1001_add-keywords-key-to-desktop-files.patch
new file mode 100644
index 0000000..faebe00
--- /dev/null
+++ b/debian/patches/1001_add-keywords-key-to-desktop-files.patch
@@ -0,0 +1,53 @@
+Description: Add keywords key to .desktop files
+Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+Forwarded: https://github.com/mate-desktop/mate-utils/issues/63
+--- a/baobab/data/mate-disk-usage-analyzer.desktop.in.in
++++ b/baobab/data/mate-disk-usage-analyzer.desktop.in.in
+@@ -8,6 +8,7 @@
+ Type=Application
+ StartupNotify=true
+ Categories=GTK;System;Filesystem;
++Keywords=MATE;check;disk;usage;analyze;size;space;
+ OnlyShowIn=MATE;
+ X-MATE-Bugzilla-Bugzilla=MATE
+ X-MATE-Bugzilla-Product=mate-utils
+--- a/gsearchtool/mate-search-tool.desktop.in
++++ b/gsearchtool/mate-search-tool.desktop.in
+@@ -7,6 +7,7 @@
+ Type=Application
+ StartupNotify=true
+ Categories=GTK;Utility;Core;
++Keywords=MATE;search;files;locate;documents;folders;computer;name;content;find;tool;
+ OnlyShowIn=MATE;
+ X-MATE-DocPath=mate-search-tool/mate-search-tool.xml
+ X-MATE-Bugzilla-Bugzilla=MATE
+--- a/logview/data/mate-system-log.desktop.in.in
++++ b/logview/data/mate-system-log.desktop.in.in
+@@ -7,6 +7,7 @@
+ Type=Application
+ StartupNotify=true
+ Categories=GTK;System;Monitor;
++Keywords=MATE;monitor;view;system;log;files;logviewer;
+ OnlyShowIn=MATE;
+ X-MATE-DocPath=mate-system-log/mate-system-log.xml
+ X-MATE-Bugzilla-Bugzilla=MATE
+--- a/mate-dictionary/data/mate-dictionary.desktop.in.in
++++ b/mate-dictionary/data/mate-dictionary.desktop.in.in
+@@ -7,6 +7,7 @@
+ Icon=accessories-dictionary
+ StartupNotify=true
+ Categories=GTK;Office;Dictionary;
++Keywords=MATE;dictionary;applet;thesaurus;spelling;definitions;online;
+ OnlyShowIn=MATE;
+ X-MATE-DocPath=mate-dictionary/mate-dictionary.xml
+ X-MATE-Bugzilla-Bugzilla=MATE
+--- a/mate-screenshot/mate-screenshot.desktop.in
++++ b/mate-screenshot/mate-screenshot.desktop.in
+@@ -7,6 +7,7 @@
+ Icon=applets-screenshooter
+ StartupNotify=true
+ Categories=GTK;Utility;
++Keywords=MATE;screenshot;snapshot;desktop;window;image;
+ OnlyShowIn=MATE;
+ X-MATE-Bugzilla-Bugzilla=MATE
+ X-MATE-Bugzilla-Product=mate-utils
diff --git a/debian/patches/1002_fix-hyphens-on-man-page.patch b/debian/patches/1002_fix-hyphens-on-man-page.patch
new file mode 100644
index 0000000..95b630a
--- /dev/null
+++ b/debian/patches/1002_fix-hyphens-on-man-page.patch
@@ -0,0 +1,80 @@
+Description: Fix several hyphens-used-as-minus-sign issues on two of the man pages
+Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+Forwarded: https://github.com/mate-desktop/mate-utils/issues/64
+--- a/gsearchtool/mate-search-tool.1
++++ b/gsearchtool/mate-search-tool.1
+@@ -26,7 +26,7 @@
+ uses the find, grep, and locate UNIX commands. The case
+ sensitivity of the search depends on your operating
+ system. For example, on Linux, the find, grep, and locate
+-commands support the -i option, so all searches are
++commands support the \-i option, so all searches are
+ case-insensitive.
+ 
+ For full documentation see the
+--- a/mate-screenshot/mate-screenshot.1
++++ b/mate-screenshot/mate-screenshot.1
+@@ -1,50 +1,50 @@
+ .TH "MATE-SCREENSHOT" "1" "June 28, 2009" "" ""
+ .SH NAME
+-mate-screenshot \- capture the screen, a window, or an user-defined area and save the snapshot image to a file.
++mate-screenshot \- capture the screen, a window, or an user\-defined area and save the snapshot image to a file.
+ .SH SYNOPSIS
+ .sp
+-
Bmate-screenshot
R [ 
B-w
R ]  [ 
B-a
R ]  [ 
B-b
R ]  [ 
B-B
R ]  [ 
B-d 
ISECONDS
B 
R ]  [ 
B-e 
IEFFECT
B 
R ]  [ 
B-i
R ]  [ 
B--display 
IDISPLAY
B 
R ] 
++
Bmate-screenshot
R [ 
B\-w
R ]  [ 
B\-a
R ]  [ 
B\-b
R ]  [ 
B\-B
R ]  [ 
B\-d 
ISECONDS
B 
R ]  [ 
B\-e 
IEFFECT
B 
R ]  [ 
B\-i
R ]  [ 
B\-\-display 
IDISPLAY
B 
R ] 
+ .SH "DESCRIPTION"
+ .PP
+ 
Bmate-screenshot
R is a MATE utility for taking
+-screenshots of the entire screen, a window or an user-defined area of the screen, with optional beutifying
++screenshots of the entire screen, a window or an user\-defined area of the screen, with optional beutifying
+ border effects.
+ .SH "OPTIONS"
+ .TP
+-
B-w, --window
R
++
B\-w, \-\-window
R
+ Grab the current active window instead of the entire
+ screen.
+ .TP
+-
B-a, --area
R
++
B\-a, \-\-area
R
+ Grab an area of the screen instead of the entire screen.
+ .TP
+-
B-b, --include-border
R
++
B\-b, \-\-include-border
R
+ Include the window border within the screenshot.
+ .TP
+-
B-B, --remove-border
R
++
B\-B, \-\-remove-border
R
+ Remove the window border from the screenshot.
+ .TP
+-
B-d, --delay=
ISECONDS
B,
R
++
B\-d, \-\-delay=
ISECONDS
B,
R
+ Take the screenshot after the specified delay [in seconds].
+ .TP
+-
B-e, --effect=
IEFFECT
B,
R
++
B\-e, \-\-effect=
IEFFECT
B,
R
+ Add an effect to the outside of the screenshot border.
+ 
IEFFECT
R can be ``shadow'' 
+ (adding drop shadow), ``border'' (adding rectangular
+ space around the screenshot) or ``none'' (no effect).
+ Default is ``none''.
+ .TP
+-
B-i, --interactive
R
++
B\-i, \-\-interactive
R
+ Interactively set options in a dialog.
+ .TP
+-
B--display=
IDISPLAY
B
R
++
B\-\-display=
IDISPLAY
B
R
+ X display to use.
+ .TP
+-
B-?, -h, --help
R
++
B\-?, \-h, \-\-help
R
+ Show a summary of the available options.
+ .PP
+ In addition, the usual GTK+ and MATE command line options apply.
+-See the output of --help for details.
++See the output of \-\-help for details.
+ .PP
+ .SH "SEE ALSO"
+ .PP
diff --git a/debian/patches/README b/debian/patches/README
new file mode 100644
index 0000000..80c1584
--- /dev/null
+++ b/debian/patches/README
@@ -0,0 +1,3 @@
+0xxx: Grabbed from upstream development.
+1xxx: Possibly relevant for upstream adoption.
+2xxx: Only relevant for official Debian release.
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..64d9076
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,3 @@
+1001_add-keywords-key-to-desktop-files.patch
+1002_fix-hyphens-on-man-page.patch
+2001_omit-gfdl-licensed-help-files.patch

-- 
mate-utils Debian package



More information about the pkg-mate-commits mailing list