Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 pdf-presenter-console (4.3.4-3) unstable; urgency=medium
 .
   * Track upstream maintenance patches
   * Remove now-unnecessary SYSCONFDIR business in debian/rules
   * Remove obsolete .menu file; .desktop suffices
   * Rules-Requires-Root: no
Author: Barak A. Pearlmutter <bap@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2019-09-29

--- pdf-presenter-console-4.3.4.orig/man/pdfpcrc.in
+++ pdf-presenter-console-4.3.4/man/pdfpcrc.in
@@ -160,7 +160,7 @@ option black-on-end true
 
 .SH FILES
 .PP
-.B @SYSCONFDIR@/pdfpcrc
+.B @CMAKE_INSTALL_FULL_SYSCONFDIR@/pdfpcrc
 .RS 4
 System-wide configuration file
 .RE
--- pdf-presenter-console-4.3.4.orig/src/classes/action/action_mapping.vala
+++ pdf-presenter-console-4.3.4/src/classes/action/action_mapping.vala
@@ -48,7 +48,7 @@ namespace pdfpc {
          * methods, and we need blank objects to call them.  Thus, this blank
          * constructor.
          */
-        public ActionMapping() {
+        protected ActionMapping() {
             base();
         }
 
--- pdf-presenter-console-4.3.4.orig/src/classes/action/movie.vala
+++ pdf-presenter-console-4.3.4/src/classes/action/movie.vala
@@ -46,7 +46,7 @@ namespace pdfpc {
     /**
      * Make a non-NULL gstreamer element, or raise an error.
      */
-    public Gst.Element gst_element_make(string factoryname, string? name) throws PipelineError {
+    public Gst.Element gst_element_make(string factoryname, string name) throws PipelineError {
         var element = Gst.ElementFactory.make(factoryname, name);
         if (element == null) {
             throw new PipelineError.ElementConstruction(
@@ -791,8 +791,8 @@ namespace pdfpc {
             dynamic Gst.Element overlay;
             Gst.Element adaptor;
             try {
-                adaptor = gst_element_make("videoconvert", null);
-                overlay = gst_element_make("cairooverlay", null);
+                adaptor = gst_element_make("videoconvert", "converter");
+                overlay = gst_element_make("cairooverlay", "controls");
                 bin.add_many(adaptor, overlay);
                 if (!source.link_many(overlay, adaptor)) {
                     throw new PipelineError.Linking("Could not link pipeline.");
--- pdf-presenter-console-4.3.4.orig/src/classes/drawings/storage.vala
+++ pdf-presenter-console-4.3.4/src/classes/drawings/storage.vala
@@ -35,7 +35,7 @@ namespace pdfpc.Drawings.Storage {
          */
         protected Metadata.Pdf metadata;
 
-        public Base(Metadata.Pdf metadata) {
+        protected Base(Metadata.Pdf metadata) {
             this.metadata = metadata;
         }
 
--- pdf-presenter-console-4.3.4.orig/src/classes/renderer/cache/base.vala
+++ pdf-presenter-console-4.3.4/src/classes/renderer/cache/base.vala
@@ -37,7 +37,7 @@ namespace pdfpc.Renderer.Cache {
         /**
          * Initialize the cache store
          */
-        public Base(Metadata.Pdf metadata) {
+        protected Base(Metadata.Pdf metadata) {
             this.metadata = metadata;
         }
 
--- pdf-presenter-console-4.3.4.orig/src/classes/timer_label.vala
+++ pdf-presenter-console-4.3.4/src/classes/timer_label.vala
@@ -95,7 +95,7 @@ namespace pdfpc {
          * Default constructor taking the initial time as argument, as well as
          * the time to countdown until the talk actually starts.
          */
-        public TimerLabel(PresentationController controller, time_t start_time = 0) {
+        protected TimerLabel(PresentationController controller, time_t start_time = 0) {
             this.controller = controller;
             this.start_time = start_time;
         }
--- pdf-presenter-console-4.3.4.orig/src/classes/view/behaviour/base.vala
+++ pdf-presenter-console-4.3.4/src/classes/view/behaviour/base.vala
@@ -41,7 +41,7 @@ namespace pdfpc.View {
         /**
          * Base constructor not taking any arguments
          */
-        public Base() {
+        protected Base() {
             // Nothing to do here
         }
 
