debian/0000775000000000000000000000000012104446572007175 5ustar debian/pdf-presenter-console.install0000664000000000000000000000020612104446032014770 0ustar debian/pdf-presenter-console.desktop usr/share/applications/ debian/pdf-presenter-console.svg /usr/share/icons/hicolor/scalable/apps/ debian/pdf-presenter-console.menu0000664000000000000000000000022512053262065014274 0ustar ?package(pdf-presenter-console):needs="X11" section="Applications/Viewers"\ title="Pdf-Presenter-Console" command="/usr/bin/pdf_presenter_console" debian/pdf-presenter-console.desktop0000664000000000000000000000034512104446032014777 0ustar [Desktop Entry] Name=PDF Presenter Console Comment=Presentation program for PDF files Type=Application Exec=pdf-presenter-console %f Icon=pdf-presenter-console MimeType=application/pdf; Categories=Graphics;Viewer; NoDisplay=true debian/rules0000775000000000000000000000031412053262065010247 0ustar #!/usr/bin/make -f %: dh $@ --parallel override_dh_auto_configure: dh_auto_configure -- -DSYSCONFDIR=/etc override_dh_auto_test: echo skipping dh_auto_test as it seems to go into infinite recursion debian/compat0000664000000000000000000000000212053262065010367 0ustar 9 debian/patches/0000755000000000000000000000000012104446572010622 5ustar debian/patches/debian-changes0000644000000000000000000004125212104446572013401 0ustar Description: 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 (3.1.1-2) unstable; urgency=low . * Add NoDisplay to .desktop file: filename arg is mandatory (closes: #699829) * Remove .mime file; mime information is generated from desktop files * Install scalable icon Author: Barak A. Pearlmutter Bug-Debian: http://bugs.debian.org/699829 --- 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: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- /dev/null +++ pdf-presenter-console-3.1.1/cmake/Vala_CMake/README.rst @@ -0,0 +1,173 @@ +========== +Vala CMake +========== +:Author: + Jakob Westhoff +:Version: + Draft + + +Overview +======== + +Vala CMake is a collection of macros for the CMake_ build system to allow the +creation and management of projects developed using the Vala_ programming +language or its "Genie" flavor (less tested). + + +Installation +============ + +To use the Vala macros in your own project you need to copy the macro files to +an arbitrary folder in your projects directory and reference them in your +``CMakeLists.txt`` file. + +Assuming the macros are stored under ``cmake/vala`` in your projects folder you +need to add the following information to your base ``CMakeLists.txt``:: + + list(APPEND CMAKE_MODULE_PATH + ${CMAKE_SOURCE_DIR}/cmake/vala + ) + +After the new module path as been added you can simply include the provided +modules or use the provided find routines. + + +Finding Vala +============ + +The find module for vala works like any other Find module in CMake. +You can use it by simply calling the usual ``find_package`` function. Default +parameters like ``REQUIRED`` and ``QUIETLY`` are supported. + +:: + + find_package(Vala REQUIRED) + +After a successful call to the find_package function the following variables +will be set: + +VALA_FOUND + Whether the vala compiler has been found or not + +VALA_EXECUTABLE + Full path to the valac executable if it has been found + +VALA_VERSION + Version number of the available valac + + +Precompiling Vala sources +========================= + +CMake is mainly supposed to handle c or c++ based projects. Luckily every vala +program is translated into plain c code using the vala compiler, followed by +normal compilation of the generated c program using gcc. + +The macro ``vala_precompile`` uses that fact to create c files from your .vala +sources for further CMake processing. + +The first parameter provided is a variable, which will be filled with a list of +c files outputted by the vala compiler. This list can than be used in +conjunction with functions like ``add_executable`` or others to create the +necessary compile rules with CMake. + +The initial variable is followed by a list of .vala files to be compiled. +Please take care to add every vala file belonging to the currently compiled +project or library as Vala will otherwise not be able to resolve all +dependencies. + +The following sections may be specified afterwards to provide certain options +to the vala compiler: + +PACKAGES + A list of vala packages/libraries to be used during the compile cycle. The + package names are exactly the same, as they would be passed to the valac + "--pkg=" option. + +OPTIONS + A list of optional options to be passed to the valac executable. This can be + used to pass "--thread" for example to enable multi-threading support. + +DIRECTORY + Specify the directory where the output source files will be stored. If + ommitted, the source files will be stored in CMAKE_CURRENT_BINARY_DIR. + +CUSTOM_VAPIS + A list of custom vapi files to be included for compilation. This can be + useful to include freshly created vala libraries without having to install + them in the system. + +GENERATE_VAPI + Pass all the needed flags to the compiler to create an internal vapi for + the compiled library. The provided name will be used for this and a + .vapi file will be created. + +GENERATE_HEADER + Let the compiler generate a header file for the compiled code. There will + be a header file as well as an internal header file being generated called + .h and _internal.h + +The following call is a simple example to the vala_precompile macro showing an +example to every of the optional sections:: + + vala_precompile(VALA_C + source1.vala + source2.vala + source3.vala + PACKAGES + gtk+-2.0 + gio-1.0 + posix + OPTIONS + --thread + CUSTOM_VAPIS + some_vapi.vapi + GENERATE_VAPI + myvapi + GENERATE_HEADER + myheader + ) + +Most important is the variable VALA_C which will contain all the generated c +file names after the call. The easiest way to use this information is to tell +CMake to create an executable out of it. + +:: + + add_executable(myexecutable ${VALA_C}) + + +Further reading +=============== + +The `Pdf Presenter Console`__ , which is a vala based project of mine, makes +heavy usage of the here described macros. To look at a real world example of +these macros the mentioned project is the right place to take a look. The svn +trunk of it can be found at:: + + svn://pureenergy.cc/pdf_presenter_console/trunk + + +__ http://westhoffswelt.de/projects/pdf_presenter_console.html + + +Acknowledgments +=============== + +Thanks go out to Florian Sowade, a fellow local PHP-Usergroupie, who helped me +a lot with the initial version of this macros and always answered my mostly +dumb CMake questions. + +.. _CMake: http://cmake.org +.. _Vala: http://live.gnome.org/Vala +.. _Genie: http://live.gnome.org/Genie + + + +.. + Local Variables: + mode: rst + fill-column: 79 + End: + vim: et syn=rst tw=79 --- /dev/null +++ pdf-presenter-console-3.1.1/cmake/Vala_CMake/vala/FindVala.cmake @@ -0,0 +1,69 @@ +## +# Find module for the Vala compiler (valac) +# +# This module determines wheter a Vala compiler is installed on the current +# system and where its executable is. +# +# Call the module using "find_package(Vala) from within your CMakeLists.txt. +# +# The following variables will be set after an invocation: +# +# VALA_FOUND Whether the vala compiler has been found or not +# VALA_EXECUTABLE Full path to the valac executable if it has been found +# VALA_VERSION Version number of the available valac +# VALA_USE_FILE Include this file to define the vala_precompile function +## + +## +# Copyright 2009-2010 Jakob Westhoff. All rights reserved. +# Copyright 2010-2011 Daniel Pfeifer +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY JAKOB WESTHOFF ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL JAKOB WESTHOFF OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# The views and conclusions contained in the software and documentation are those +# of the authors and should not be interpreted as representing official policies, +# either expressed or implied, of Jakob Westhoff +## + +# Search for the valac executable in the usual system paths. +find_program(VALA_EXECUTABLE valac) +mark_as_advanced(VALA_EXECUTABLE) + +# Determine the valac version +if(VALA_EXECUTABLE) + execute_process(COMMAND ${VALA_EXECUTABLE} "--version" + OUTPUT_VARIABLE VALA_VERSION + OUTPUT_STRIP_TRAILING_WHITESPACE) + string(REPLACE "Vala " "" VALA_VERSION "${VALA_VERSION}") +endif(VALA_EXECUTABLE) + +# Handle the QUIETLY and REQUIRED arguments, which may be given to the find call. +# Furthermore set VALA_FOUND to TRUE if Vala has been found (aka. +# VALA_EXECUTABLE is set) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Vala + REQUIRED_VARS VALA_EXECUTABLE + VERSION_VAR VALA_VERSION) + +set(VALA_USE_FILE "${CMAKE_CURRENT_LIST_DIR}/UseVala.cmake") + --- /dev/null +++ pdf-presenter-console-3.1.1/cmake/Vala_CMake/vala/UseVala.cmake @@ -0,0 +1,180 @@ +## +# Compile vala files to their c equivalents for further processing. +# +# The "vala_precompile" function takes care of calling the valac executable on +# the given source to produce c files which can then be processed further using +# default cmake functions. +# +# The first parameter provided is a variable, which will be filled with a list +# of c files outputted by the vala compiler. This list can than be used in +# conjuction with functions like "add_executable" or others to create the +# neccessary compile rules with CMake. +# +# The following sections may be specified afterwards to provide certain options +# to the vala compiler: +# +# SOURCES +# A list of .vala files to be compiled. Please take care to add every vala +# file belonging to the currently compiled project or library as Vala will +# otherwise not be able to resolve all dependencies. +# +# PACKAGES +# A list of vala packages/libraries to be used during the compile cycle. The +# package names are exactly the same, as they would be passed to the valac +# "--pkg=" option. +# +# OPTIONS +# A list of optional options to be passed to the valac executable. This can be +# used to pass "--thread" for example to enable multi-threading support. +# +# CUSTOM_VAPIS +# A list of custom vapi files to be included for compilation. This can be +# useful to include freshly created vala libraries without having to install +# them in the system. +# +# GENERATE_VAPI +# Pass all the needed flags to the compiler to create an internal vapi for +# the compiled library. The provided name will be used for this and a +# .vapi file will be created. +# +# GENERATE_HEADER +# Let the compiler generate a header file for the compiled code. There will +# be a header file as well as an internal header file being generated called +# .h and _internal.h +# +# The following call is a simple example to the vala_precompile macro showing +# an example to every of the optional sections: +# +# find_package(Vala "0.12" REQUIRED) +# inlcude(${VALA_USE_FILE}) +# +# vala_precompile(VALA_C +# SOURCES +# source1.vala +# source2.vala +# source3.vala +# PACKAGES +# gtk+-2.0 +# gio-1.0 +# posix +# DIRECTORY +# gen +# OPTIONS +# --thread +# CUSTOM_VAPIS +# some_vapi.vapi +# GENERATE_VAPI +# myvapi +# GENERATE_HEADER +# myheader +# ) +# +# Most important is the variable VALA_C which will contain all the generated c +# file names after the call. +## + +## +# Copyright 2009-2010 Jakob Westhoff. All rights reserved. +# Copyright 2010-2011 Daniel Pfeifer +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY JAKOB WESTHOFF ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL JAKOB WESTHOFF OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# The views and conclusions contained in the software and documentation are those +# of the authors and should not be interpreted as representing official policies, +# either expressed or implied, of Jakob Westhoff +## + +include(CMakeParseArguments) + +function(vala_precompile output) + cmake_parse_arguments(ARGS "" "DIRECTORY;GENERATE_HEADER;GENERATE_VAPI" + "SOURCES;PACKAGES;OPTIONS;CUSTOM_VAPIS" ${ARGN}) + + if(ARGS_DIRECTORY) + set(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${ARGS_DIRECTORY}) + else(ARGS_DIRECTORY) + set(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif(ARGS_DIRECTORY) + include_directories(${DIRECTORY}) + set(vala_pkg_opts "") + foreach(pkg ${ARGS_PACKAGES}) + list(APPEND vala_pkg_opts "--pkg=${pkg}") + endforeach(pkg ${ARGS_PACKAGES}) + set(in_files "") + set(out_files "") + foreach(src ${ARGS_SOURCES} ${ARGS_UNPARSED_ARGUMENTS}) + list(APPEND in_files "${CMAKE_CURRENT_SOURCE_DIR}/${src}") + string(REPLACE ".vala" ".c" src ${src}) + string(REPLACE ".gs" ".c" src ${src}) + set(out_file "${DIRECTORY}/${src}") + list(APPEND out_files "${DIRECTORY}/${src}") + endforeach(src ${ARGS_SOURCES} ${ARGS_UNPARSED_ARGUMENTS}) + + set(custom_vapi_arguments "") + if(ARGS_CUSTOM_VAPIS) + foreach(vapi ${ARGS_CUSTOM_VAPIS}) + if(${vapi} MATCHES ${CMAKE_SOURCE_DIR} OR ${vapi} MATCHES ${CMAKE_BINARY_DIR}) + list(APPEND custom_vapi_arguments ${vapi}) + else (${vapi} MATCHES ${CMAKE_SOURCE_DIR} OR ${vapi} MATCHES ${CMAKE_BINARY_DIR}) + list(APPEND custom_vapi_arguments ${CMAKE_CURRENT_SOURCE_DIR}/${vapi}) + endif(${vapi} MATCHES ${CMAKE_SOURCE_DIR} OR ${vapi} MATCHES ${CMAKE_BINARY_DIR}) + endforeach(vapi ${ARGS_CUSTOM_VAPIS}) + endif(ARGS_CUSTOM_VAPIS) + + set(vapi_arguments "") + if(ARGS_GENERATE_VAPI) + list(APPEND out_files "${DIRECTORY}/${ARGS_GENERATE_VAPI}.vapi") + set(vapi_arguments "--internal-vapi=${ARGS_GENERATE_VAPI}.vapi") + + # Header and internal header is needed to generate internal vapi + if (NOT ARGS_GENERATE_HEADER) + set(ARGS_GENERATE_HEADER ${ARGS_GENERATE_VAPI}) + endif(NOT ARGS_GENERATE_HEADER) + endif(ARGS_GENERATE_VAPI) + + set(header_arguments "") + if(ARGS_GENERATE_HEADER) + list(APPEND out_files "${DIRECTORY}/${ARGS_GENERATE_HEADER}.h") + list(APPEND out_files "${DIRECTORY}/${ARGS_GENERATE_HEADER}_internal.h") + list(APPEND header_arguments "--header=${DIRECTORY}/${ARGS_GENERATE_HEADER}.h") + list(APPEND header_arguments "--internal-header=${DIRECTORY}/${ARGS_GENERATE_HEADER}_internal.h") + endif(ARGS_GENERATE_HEADER) + + add_custom_command(OUTPUT ${out_files} + COMMAND + ${VALA_EXECUTABLE} + ARGS + "-C" + ${header_arguments} + ${vapi_arguments} + "-b" ${CMAKE_CURRENT_SOURCE_DIR} + "-d" ${DIRECTORY} + ${vala_pkg_opts} + ${ARGS_OPTIONS} + ${in_files} + ${custom_vapi_arguments} + DEPENDS + ${in_files} + ${ARGS_CUSTOM_VAPIS} + ) + set(${output} ${out_files} PARENT_SCOPE) +endfunction(vala_precompile) debian/patches/series0000644000000000000000000000001712104446572012035 0ustar debian-changes debian/copyright0000664000000000000000000000711012053262065011123 0ustar This package was debianized by Barak A. Pearlmutter on Sat, 30 Jan 2010 16:40:33 +0100. It was downloaded from http://github.com/jakobwesthoff/Pdf-Presenter-Console X-Upstream-Vcs-Git: git://github.com/jakobwesthoff/Pdf-Presenter-Console.git X-Upstream-Vcs-Browser: http://github.com/jakobwesthoff/Pdf-Presenter-Console Version 3.0 was downloaded from the fork git://github.com/davvil/pdfpc.git Upstream Author: Jakob Westhoff With contributions from David Vilar (most of the post-2.0 work) Joachim Breitner (button press support) Matthias Larisch (bluetooth headset button support) Rene Wagner (cursor hiding; extra key bindings; window size option) Copyright: Copyright (C) 2009-2011 Jakob Westhoff Copyright (C) 2012 David Vilar License: This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. The files cmake/Vala_CMake/vala/*.cmake are BSD licensed: # Copyright 2009-2010 Jakob Westhoff. All rights reserved. # Copyright 2010-2011 Daniel Pfeifer # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # 1. Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright notice, # this list of conditions and the following disclaimer in the documentation # and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY JAKOB WESTHOFF ``AS IS'' AND ANY EXPRESS OR # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO # EVENT SHALL JAKOB WESTHOFF OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # The views and conclusions contained in the software and documentation are those # of the authors and should not be interpreted as representing official policies, # either expressed or implied, of Jakob Westhoff The Debian packaging is (C) 2010-2012, Barak A. Pearlmutter and is released to the public domain. debian/pdf-presenter-console.svg0000664000000000000000000046321612053262065014144 0ustar image/svg+xml debian/watch0000664000000000000000000000106212053262065010221 0ustar version=3 # true upstream: #http://githubredir.debian.net/github/jakobwesthoff/Pdf-Presenter-Console .*/release-(.*).tar.gz # my own "upstream", to treat upstream snapshots as releases #http://githubredir.debian.net/github/barak/Pdf-Presenter-Console .*/upstream/(.*).tar.gz # new upstream maintainer, official tarball download page #http://davvil.github.com/pdfpc/ \ # https://github.com/downloads/davvil/pdfpc/pdfpc-(.*).tgz # new upstream maintainer, repo tags http://githubredir.debian.net/github/davvil/pdfpc \ /github/davvil/pdfpc/v([0-9.]*)\.tar\.gz debian/changelog0000664000000000000000000001152412104446032011041 0ustar pdf-presenter-console (3.1.1-2) unstable; urgency=low * Add NoDisplay to .desktop file: filename arg is mandatory (closes: #699829) * Remove .mime file; mime information is generated from desktop files * Install scalable icon -- Barak A. Pearlmutter Wed, 06 Feb 2013 11:36:05 +0000 pdf-presenter-console (3.1.1-1) unstable; urgency=low * update debian/watch * New upstream release -- Barak A. Pearlmutter Sat, 07 Jul 2012 23:24:48 +0100 pdf-presenter-console (3.1-1) unstable; urgency=low * Move man page tweak to quilt patch * New upstream release -- Barak A. Pearlmutter Wed, 27 Jun 2012 12:13:08 +0100 pdf-presenter-console (3.0-1) unstable; urgency=low * New upstream release -- Barak A. Pearlmutter Mon, 18 Jun 2012 16:03:34 +0100 pdf-presenter-console (2.0-9) unstable; urgency=low * merge upstream countdown patch * allow valac-0.16 (closes: #675661) -- Barak A. Pearlmutter Sat, 02 Jun 2012 20:37:42 +0100 pdf-presenter-console (2.0-8) unstable; urgency=low * bump to dh9 * bump debian standards * change valac dependency for transition (closes: #663317) -- Barak A. Pearlmutter Wed, 14 Mar 2012 10:49:05 +0000 pdf-presenter-console (2.0-7) unstable; urgency=low * poppler 0.18 patch, thanks to David Vilar (closes: #651852) also thanks to Martin Pitt for the ping -- Barak A. Pearlmutter Sun, 12 Feb 2012 09:40:39 +0000 pdf-presenter-console (2.0-6) unstable; urgency=low * desktop file, thanks to Peter Eisentraut (closes: #648882) * update man page -- Barak A. Pearlmutter Wed, 16 Nov 2011 09:50:10 +0000 pdf-presenter-console (2.0-5) unstable; urgency=low * align stated priority with override (debian/control) * silence lintian regarding debian/rules targets * single debian patch source option (closes: #643239) * link pdf-presenter-console(1) to pdf_presenter_console(1) (closes: #641755) -- Barak A. Pearlmutter Thu, 06 Oct 2011 22:33:38 +0100 pdf-presenter-console (2.0-4) unstable; urgency=low * reverse valac disjunctive dependencies (closes: #609676) * bump debian standards -- Barak A. Pearlmutter Thu, 02 Jun 2011 14:04:31 +0100 pdf-presenter-console (2.0-3) unstable; urgency=low * alias for binary (debian/pdf-presenter-console.links) (closes: #597908) -- Barak A. Pearlmutter Tue, 01 Mar 2011 14:52:29 +0000 pdf-presenter-console (2.0-2) unstable; urgency=low * priority optional (debian/control) * allow valac-0.12 as valac build dependency -- Barak A. Pearlmutter Wed, 09 Feb 2011 00:57:39 +0000 pdf-presenter-console (2.0-1) experimental; urgency=low * New upstream release (closes: #610251) * bump version of valac build dependency (debian/control) -- Barak A. Pearlmutter Sun, 16 Jan 2011 16:51:21 +0000 pdf-presenter-console (1.1.1+git.02dfcf-3) unstable; urgency=low * GNU GPLv2+ in debian/copyright (closes: #609608) -- Barak A. Pearlmutter Tue, 11 Jan 2011 07:18:39 +0000 pdf-presenter-console (1.1.1+git.02dfcf-2) UNRELEASED; urgency=low * move upstream repo info (debian/control, debian/copyright) * bump standards version (debian/control) * bump valac build-depends to 0.9.7+ per README.rst (debian/control) * dh --parallel * dh 8 -- Barak A. Pearlmutter Tue, 30 Nov 2010 21:49:44 +0000 pdf-presenter-console (1.1.1+git.02dfcf-1) unstable; urgency=low * Merge upstream snaphot (closes: #589734) * Bump standards version -- Barak A. Pearlmutter Tue, 20 Jul 2010 15:37:46 +0100 pdf-presenter-console (1.1.1-4) unstable; urgency=low * Register support of pdf file display with mime subsystem (debian/*.mime) * mouse interaction patch, also in next upstream release (closes: #572354) * add TIMER section to man page in debian/pdf_presenter_console.1 -- Barak A. Pearlmutter Mon, 31 May 2010 22:41:10 +0100 pdf-presenter-console (1.1.1-3) unstable; urgency=low * Swizzle Vcs-* from upstream to debian collab-maint (debian/control) * Switch to dpkg-source 3.0 (quilt) format -- Barak A. Pearlmutter Thu, 25 Mar 2010 18:56:40 +0000 pdf-presenter-console (1.1.1-2) unstable; urgency=low * Man patch, thanks Joachim Breitner (closes: #572354) -- Barak A. Pearlmutter Thu, 04 Mar 2010 12:06:34 +0000 pdf-presenter-console (1.1.1-1) unstable; urgency=low * New upstream release - fixes build problem with valac 0.7.10 -- Barak A. Pearlmutter Mon, 22 Feb 2010 14:47:46 +0000 pdf-presenter-console (1.1-1) unstable; urgency=low * Initial release (Closes: #567685) -- Barak A. Pearlmutter Sat, 30 Jan 2010 16:40:33 +0100 debian/control0000664000000000000000000000200212075513702010567 0ustar Source: pdf-presenter-console Section: graphics Priority: extra Maintainer: Barak A. Pearlmutter Build-Depends: debhelper (>= 9), valac (>= 0.11.0), cmake (>= 2.6.3), librsvg2-dev, libgee-dev, libgtk2.0-dev (>= 2.18.3), libpoppler-glib-dev Standards-Version: 3.9.3 Homepage: http://westhoffswelt.de/projects/pdf_presenter_console.html Vcs-Git: git://git.debian.org/git/collab-maint/pdf-presenter-console.git Vcs-Browser: http://git.debian.org/?p=collab-maint/pdf-presenter-console.git Package: pdf-presenter-console Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: multi-monitor presentation tool (ala Keynote) for PDF files PPC is a viewer for PDF which uses Keynote-like multi-monitor output to provide meta information to the speaker. It can show a normal presentation window on one screen and a more sophisticated overview on the other, with information like a picture of the next slide and a clock with the time remaining. debian/source/0000775000000000000000000000000012053262065010471 5ustar debian/source/format0000664000000000000000000000001412053262065011677 0ustar 3.0 (quilt) debian/pdf-presenter-console.docs0000664000000000000000000000001312053262065014253 0ustar README.rst debian/pdf-presenter-console.links0000664000000000000000000000041212053262065014446 0ustar /usr/bin/pdf_presenter_console /usr/bin/pdf-presenter-console /usr/bin/pdfpc /usr/bin/pdf_presenter_console /usr/share/man/man1/pdfpc.1.gz /usr/share/man/man1/pdf_presenter_console.1.gz /usr/share/man/man1/pdfpc.1.gz /usr/share/man/man1/pdf-presenter-console.1.gz