debian/0000775000000000000000000000000012321476150007171 5ustar debian/patches/0000775000000000000000000000000012321476130010616 5ustar debian/patches/upstream_libkipi-2.x.diff0000664000000000000000000001154512172236116015430 0ustar Author: Rex Dieter Author: Sando Mani Description: Support for libkipi 2.x Origin: upstream, commit:a0aec903b36b52bda1a9a5d2e875af1063747a86, commit:9f32257a1e930b16e64508e6fbfa9390fc0322ee --- a/src/kamoso.cpp +++ b/src/kamoso.cpp @@ -45,6 +45,7 @@ #include #endif +#include #include #include #include @@ -77,6 +78,7 @@ #include #include +#include #include const int max_exponential_value = 50; @@ -189,7 +191,13 @@ connect(mTracker, SIGNAL(urlsChanged(KUrl::List)), SLOT(updateThumbnails(KUrl::List))); QMetaObject::invokeMethod(this, "initialize"); +#if (KIPI_VERSION >= 0x020000) + mPluginLoader = new KIPI::PluginLoader(); + mPluginLoader->setInterface(new KIPIInterface(this)); + mPluginLoader->init(); +#else mPluginLoader = new KIPI::PluginLoader(QStringList(), new KIPIInterface(this), ""); +#endif } KUrl::List Kamoso::selectedItems() --- a/src/kamoso.h +++ b/src/kamoso.h @@ -36,6 +36,7 @@ class WebcamRetriever; class CountdownWidget; class KDirOperator; +class QItemSelection; class QStackedLayout; class QSplitter; class QPushButton; --- a/src/kipiaction.cpp +++ b/src/kipiaction.cpp @@ -19,7 +19,7 @@ #include "kipiaction.h" #include -#include +#include "plugins/exportinterface.h" #include #include "kamoso.h" #include "kamosojobtracker.h" @@ -33,7 +33,7 @@ void KipiAction::runJob() { KIPI::Plugin* p=pluginInfo->plugin(); - KIPI::ExportInterface* ep=dynamic_cast(p); + ExportInterface* ep=dynamic_cast(p); KJob* job=ep->exportFiles(i18n("Kamoso")); mKamoso->tracker()->registerJob(job, mKamoso->selectedItems(), icon()); --- a/src/pluginTester/fakekipiaction.cpp +++ b/src/pluginTester/fakekipiaction.cpp @@ -20,10 +20,10 @@ #include "fakekipiaction.h" #include -#include #include #include #include +#include "../plugins/exportinterface.h" FakeKipiAction::FakeKipiAction(KIPI::PluginLoader::Info* pluginInfo, QObject* parent) : QAction(pluginInfo->icon(), pluginInfo->name(), parent), pluginInfo(pluginInfo) @@ -39,7 +39,7 @@ void FakeKipiAction::runJob() { KIPI::Plugin* p=pluginInfo->plugin(); - KIPI::ExportInterface* ep = dynamic_cast(p); + ExportInterface* ep = dynamic_cast(p); m_job = ep->exportFiles(i18n("Kamoso")); KIO::getJobTracker()->registerJob(m_job); --- a/src/pluginTester/pluginTester.cpp +++ b/src/pluginTester/pluginTester.cpp @@ -26,6 +26,7 @@ #include #include #include +#include PluginTester::PluginTester(QObject *parent) : QObject(parent) { @@ -41,7 +42,13 @@ kurlList.append(KUrl(args->arg(i))); } +#if (KIPI_VERSION >= 0x020000) + m_pluginLoader = new KIPI::PluginLoader(); + m_pluginLoader->setInterface(new FakeKIPIInterface(kurlList)); + m_pluginLoader->init(); +#else m_pluginLoader = new KIPI::PluginLoader(QStringList(), new FakeKIPIInterface(kurlList), ""); +#endif bool found = false; Q_FOREACH(KIPI::PluginLoader::Info *pluginInfo, m_pluginLoader->pluginList()) { @@ -58,4 +65,4 @@ PluginTester::~PluginTester() { delete m_action; -} \ No newline at end of file +} --- a/src/plugins/CMakeLists.txt +++ b/src/plugins/CMakeLists.txt @@ -30,5 +30,5 @@ # MACRO_OPTIONAL_FIND_PACKAGE(KdepimLibs) # For Calendar (libkcal). # MACRO_OPTIONAL_FIND_PACKAGE(QCA2) # For Shwup. -include_directories(${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/plugins/youtube) +include_directories(${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/plugins ${CMAKE_SOURCE_DIR}/src/plugins/youtube) add_subdirectory(youtube) --- /dev/null +++ b/src/plugins/exportinterface.h @@ -0,0 +1,15 @@ +#ifndef EXPORTINTERFACE_H +#define EXPORTINTERFACE_H + +class KJob; + +class ExportInterface +{ +public: + + virtual ~ExportInterface() {} + + virtual KJob* exportFiles(const QString& albumname)=0; +}; + +#endif // EXPORTINTERFACE_H --- a/src/plugins/youtube/kipiplugin_youtube.h +++ b/src/plugins/youtube/kipiplugin_youtube.h @@ -22,12 +22,11 @@ #include #include #include -#include +#include -class YoutubePlugin : public KIPI::Plugin, public KIPI::ExportInterface +class YoutubePlugin : public KIPI::Plugin, public ExportInterface { Q_OBJECT - Q_INTERFACES(KIPI::ExportInterface) public: YoutubePlugin(QObject* parent, const QVariantList& args); // virtual QAction* thumbnailsAction(const QList& url); debian/patches/series0000664000000000000000000000027212321472624012040 0ustar about_dialog.diff proper_version_kaboutdata.diff dont_build_plugin_tester.diff upstream_add-include.patch upstream_libkipi-2.x.diff upstream_rename-icons.diff kubuntu_avoid-phonon.patch debian/patches/kubuntu_avoid-phonon.patch0000664000000000000000000001611112321476130016015 0ustar Author: Harald Sitter Description: disable phonon usage Kubuntu 14.04's phonon uses gstreamer1, whereas kamoso uses gstreamer 0.10. To avoid runtime symbol clashes when both gstreamers are loaded all phonon usage has been disabled. This only affects audible feedback when taking a photo, so overall functionality should continue to work. This patch only comments out lines to preseve line count for backtraces. Please note that applying this patch upstream would not make much sense as the ultimate solution here is to have qtgstreamer ported to gstreamer1 and subsequently port kamoso to qtgstreamer1. Reviewed-By: Aleix Pol Forwarded: not-needed Index: kamoso-2.0.2/src/kamoso.cpp =================================================================== --- kamoso-2.0.2.orig/src/kamoso.cpp 2014-04-10 12:26:50.000000000 +0200 +++ kamoso-2.0.2/src/kamoso.cpp 2014-04-10 12:44:16.167862907 +0200 @@ -65,7 +65,7 @@ #include #include #include -#include +// #include #include #include #include @@ -177,8 +177,8 @@ connect(m_countdown, SIGNAL(finished()), SLOT(takePhoto())); const KUrl soundFile = KStandardDirs::locate("sound", "KDE-Im-User-Auth.ogg"); - player = Phonon::createPlayer(Phonon::NotificationCategory); - player->setCurrentSource(soundFile); +// player = Phonon::createPlayer(Phonon::NotificationCategory); +// player->setCurrentSource(soundFile); //TODO: find a better place to init this m_exponentialValue = 0; @@ -399,7 +399,7 @@ */ Kamoso::~Kamoso() { - delete player; +// delete player; Settings::self()->writeConfig(); } @@ -448,7 +448,7 @@ } m_webcam->takePhoto(photoPlace); - player->play(); +// player->play(); } void Kamoso::stopCountdown() Index: kamoso-2.0.2/src/kamoso.h =================================================================== --- kamoso-2.0.2.orig/src/kamoso.h 2014-04-10 12:44:56.803863670 +0200 +++ kamoso-2.0.2/src/kamoso.h 2014-04-10 12:50:31.239869948 +0200 @@ -49,7 +49,7 @@ class KamosoJob; class WebcamDialog; namespace Ui { class mainWidget; class webcamConfigWidget;} -namespace Phonon { class MediaObject; } +// namespace Phonon { class MediaObject; } class Kamoso : public KMainWindow { Q_OBJECT @@ -119,7 +119,7 @@ WhiteWidgetManager *whiteWidgetManager; WebcamWidget *m_webcam; CountdownWidget *m_countdown; - Phonon::MediaObject *player; +// Phonon::MediaObject *player; Ui::mainWidget *mainWidgetUi; Ui::webcamConfigWidget *pageWebcam; QWidget *mainWidget; Index: kamoso-2.0.2/src/webcamwidget.cpp =================================================================== --- kamoso-2.0.2.orig/src/webcamwidget.cpp 2011-05-25 00:34:42.000000000 +0200 +++ kamoso-2.0.2/src/webcamwidget.cpp 2014-04-10 12:48:55.095868143 +0200 @@ -35,10 +35,10 @@ #include #include #include -#include -#include -#include -#include +// #include +// #include +// #include +// #include #include #include @@ -335,29 +335,29 @@ d->m_recording = false; } -#if PHONON_VERSION < PHONON_VERSION_CHECK(4, 4, 3) -namespace Phonon { - typedef QPair DeviceAccess; - typedef QList DeviceAccessList; -} -Q_DECLARE_METATYPE(Phonon::DeviceAccessList) -#endif - -QByteArray WebcamWidget::phononCaptureDevice() -{ - const QList &m_modelData = Phonon::BackendCapabilities::availableAudioCaptureDevices(); - QVariant variantList = m_modelData.first().property("deviceAccessList"); - Phonon::DeviceAccessList accessList = variantList.value(); - - Phonon::DeviceAccessList::const_iterator i, iEnd=accessList.constEnd(); - for(i=accessList.constBegin(); i!=iEnd; ++i) { - if(i->first == "alsa" && !i->second.contains("phonon")) { - return i->second.toAscii(); - } - } - - return QByteArray(); -} +// #if PHONON_VERSION < PHONON_VERSION_CHECK(4, 4, 3) +// namespace Phonon { +// typedef QPair DeviceAccess; +// typedef QList DeviceAccessList; +// } +// Q_DECLARE_METATYPE(Phonon::DeviceAccessList) +// #endif +// +// QByteArray WebcamWidget::phononCaptureDevice() +// { +// const QList &m_modelData = Phonon::BackendCapabilities::availableAudioCaptureDevices(); +// QVariant variantList = m_modelData.first().property("deviceAccessList"); +// Phonon::DeviceAccessList accessList = variantList.value(); +// +// Phonon::DeviceAccessList::const_iterator i, iEnd=accessList.constEnd(); +// for(i=accessList.constBegin(); i!=iEnd; ++i) { +// if(i->first == "alsa" && !i->second.contains("phonon")) { +// return i->second.toAscii(); +// } +// } +// +// return QByteArray(); +// } QByteArray WebcamWidget::basicPipe() { Index: kamoso-2.0.2/src/webcamwidget.h =================================================================== --- kamoso-2.0.2.orig/src/webcamwidget.h 2011-05-25 00:34:42.000000000 +0200 +++ kamoso-2.0.2/src/webcamwidget.h 2014-04-10 12:49:03.943868309 +0200 @@ -60,7 +60,7 @@ private: WebcamWidget(QWidget* parent); - QByteArray phononCaptureDevice(); +// QByteArray phononCaptureDevice(); QByteArray basicPipe(); void setDevice(const Device &device); float convertAdjustValue(int level); Index: kamoso-2.0.2/CMakeLists.txt =================================================================== --- kamoso-2.0.2.orig/CMakeLists.txt 2011-05-25 00:36:54.000000000 +0200 +++ kamoso-2.0.2/CMakeLists.txt 2014-04-10 12:49:56.671869299 +0200 @@ -4,7 +4,7 @@ find_package(KDE4 REQUIRED) find_package(Kipi REQUIRED) -find_package(Phonon REQUIRED) +# find_package(Phonon REQUIRED) find_package(GLIB2 REQUIRED) find_package(GStreamer REQUIRED) find_package(QtGStreamer REQUIRED) Index: kamoso-2.0.2/src/CMakeLists.txt =================================================================== --- kamoso-2.0.2.orig/src/CMakeLists.txt 2014-04-10 12:26:50.000000000 +0200 +++ kamoso-2.0.2/src/CMakeLists.txt 2014-04-10 12:50:12.259869592 +0200 @@ -50,7 +50,9 @@ endif(${KDE_VERSION} VERSION_LESS 4.6.0) target_link_libraries(kamoso ${KDE4_KDEUI_LIBS} ${KDE4_KFILE_LIBS} ${KDE4_KIO_LIBS} - ${KDE4_SOLID_LIBS} ${KDE4_PHONON_LIBS} ${KDE4_KUTILS_LIBS} ${KIPI_LIBRARIES} ${SolidControl} ${QTGSTREAMER_LIBRARY} ${QTGSTREAMER_UI_LIBRARY} ${GSTREAMER_BASE_LIBRARY}) + ${KDE4_SOLID_LIBS} +# ${KDE4_PHONON_LIBS} + ${KDE4_KUTILS_LIBS} ${KIPI_LIBRARIES} ${SolidControl} ${QTGSTREAMER_LIBRARY} ${QTGSTREAMER_UI_LIBRARY} ${GSTREAMER_BASE_LIBRARY}) if(HAVE_NEPOMUK) target_link_libraries(kamoso ${NEPOMUK_LIBRARIES}) debian/patches/proper_version_kaboutdata.diff0000664000000000000000000000144412172234216016727 0ustar Author: José Manuel Santamaría Lema Forwarded: no Description: Set the proper number version, used in the bug reporting assistant. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/src/main.cpp +++ b/src/main.cpp @@ -24,7 +24,7 @@ int main(int argc, char *argv[]) { - KAboutData about("kamoso", 0, ki18n(("Kamoso")), "1.90", ki18n("Webcam picture retriever"), + KAboutData about("kamoso", 0, ki18n(("Kamoso")), "2.0.2", ki18n("Webcam picture retriever"), KAboutData::License_GPL, ki18n("(C) 2008-2010 Alex Fiestas and Aleix Pol")); about.addAuthor( ki18n("Aleix Pol Gonzalez"), ki18n("Semaphore hacker"), "aleixpol@kde.org" ); about.addAuthor( ki18n("Alex Fiestas"), ki18n("Coffee drinker"), "alex@eyeos.org" ); debian/patches/dont_build_plugin_tester.diff0000664000000000000000000000143312172234216016541 0ustar Author: José Manuel Santamaría Lema Forwarded: no Description: Avoids building the plugin tester. --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -8,7 +8,7 @@ if (NEPOMUK_FOUND) endif(NEPOMUK_FOUND) add_subdirectory(plugins) -add_subdirectory(pluginTester) +#add_subdirectory(pluginTester) set(kamoso_SRCS burstshootmode.cpp @@ -58,4 +58,4 @@ endif(HAVE_NEPOMUK) install(TARGETS kamoso ${INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES kamoso.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) -install(FILES kamosoplugin.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR}) \ No newline at end of file +install(FILES kamosoplugin.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR}) debian/patches/upstream_add-include.patch0000664000000000000000000000122712172235020015725 0ustar From d3c5946f9f48f5d7a5249995424228fc51c84b67 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Wed, 8 Feb 2012 00:39:31 +0100 Subject: [PATCH] add include --- src/plugins/youtube/kipiplugin_youtube.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/youtube/kipiplugin_youtube.cpp b/src/plugins/youtube/kipiplugin_youtube.cpp index 07fe1c4..7ebabf8 100644 --- a/src/plugins/youtube/kipiplugin_youtube.cpp +++ b/src/plugins/youtube/kipiplugin_youtube.cpp @@ -36,6 +36,7 @@ #include #include #include +#include using KWallet::Wallet; -- 1.7.10.4 debian/patches/about_dialog.diff0000664000000000000000000000151612172234216014105 0ustar commit 990462363724a09cfbc314d7e6451a4000db548e Author: José Manuel Santamaría Lema Date: Fri Jul 22 20:09:22 2011 +0200 Make the About dialog work. diff --git a/src/kamoso.cpp b/src/kamoso.cpp index ae4c048..6026bdd 100644 --- a/src/kamoso.cpp +++ b/src/kamoso.cpp @@ -670,7 +670,8 @@ void Kamoso::settingsMenu(bool ) m.addSeparator(); } m.addAction(KIcon("configure"), i18n("Settings"), this, SLOT(configuration())); - m.addMenu(customHelpMenu()); + KMenu *help = helpMenu(); + m.addMenu(help); m.exec(mainWidgetUi->configure->parentWidget()->mapToGlobal(mainWidgetUi->configure->geometry().bottomLeft())); } @@ -726,4 +727,4 @@ void Kamoso::updateThumbnails(const KUrl::List& urls) mainWidgetUi->thumbnailView->update(idx); } -} \ No newline at end of file +} debian/patches/upstream_rename-icons.diff0000664000000000000000000000116512172236334015757 0ustar Author: Rex Dieter Description: rename icons to avoid conflict . kamoso's youtube.* icons conflict with kdeplasma-addons' youtube krunner plugin. Avoid that via simple rename here for now. Origin: upstream, commit:b8b03322d58a920deac198c2360d65deddccd610 --- a/src/plugins/youtube/kipiplugin_youtube.desktop +++ b/src/plugins/youtube/kipiplugin_youtube.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Type=Service Exec=blubb -Icon=youtube +Icon=kipiplugin_youtube Comment=Upload videos directly to YouTube Comment[cs]=Nahrát videa přímo na YouTube Comment[da]=Upload videoer direkte til YouTube debian/rules0000775000000000000000000000051512172240162010246 0ustar #!/usr/bin/make -f export DEB_LDFLAGS_MAINT_APPEND := -Wl,--as-needed %: dh $@ --parallel --with kde override_dh_auto_install: dh_auto_install for icon in `find debian/kamoso -regextype posix-egrep -regex '.*/youtube\.(png|svgz)'`; do \ mv --verbose $$icon `echo $$icon | sed -r -e 's,\,kipiplugin_\0,g'`; \ done debian/source/0000775000000000000000000000000012172233516010472 5ustar debian/source/format0000664000000000000000000000001412172233516011700 0ustar 3.0 (quilt) debian/changelog0000664000000000000000000000375112321474046011053 0ustar kamoso (2.0.2-2ubuntu2) trusty; urgency=medium * Add kubuntu_avoid-phonon.patch to not use Phonon anywhere. In trusty phonon-backend-gstreamer uses gstreamer1 whereas kamoso still uses 0.10. This causes runtime symbol clashes when both gstreamers are loaded. Phonon is only used for audbile feedback when taking a snapshot, which is not a particularly important feature to the application at large. This patch also drops unused code portions elsewhere. The patch takes care to only comment out lines, to preserve line count for consistency of backtraces. -- Harald Sitter Thu, 10 Apr 2014 12:50:49 +0200 kamoso (2.0.2-2ubuntu1) trusty; urgency=low * Demote kipi-plugins from recommends to suggests. Pulls in all sorts of nonesense on the ISO. -- Harald Sitter Sat, 23 Nov 2013 16:59:29 +0100 kamoso (2.0.2-2) unstable; urgency=low * Team upload. [ José Manuel Santamaría Lema ] * Bump debhelper compatibility level to 9. This enables the hardening flags. [ Pino Toscano ] * Fix the Vcs-* headers. * Backport upstream commit d3c5946f9f48f5d7a5249995424228fc51c84b67 to include a needed header; patch upstream_add-include.patch. * Backport upstream commits a0aec903b36b52bda1a9a5d2e875af1063747a86 and 9f32257a1e930b16e64508e6fbfa9390fc0322ee to fix compatibility with libkipi 2.x; patch upstream_libkipi-2.x.diff. * Backport part of upstream commit b8b03322d58a920deac198c2360d65deddccd610 to rename the youtube icon to kipiplugin_youtube; patch upstream_rename-icons.diff. Since renaming sources is not viable, rename the actual icons at installation time. * Bump Standards-Version to 3.9.4, no changes required. * Link in as-needed mode. -- Pino Toscano Fri, 19 Jul 2013 15:42:37 +0200 kamoso (2.0.2-1) unstable; urgency=low * Initial release (Closes: #577639) -- José Manuel Santamaría Lema Sun, 24 Jul 2011 01:20:38 +0200 debian/copyright0000664000000000000000000000501212172233516011123 0ustar Upstream-Name: Kamoso Upstream-Contact: Aleix Pol Source: ftp://ftp.kde.org/pub/kde/stable/kamoso/ Files: * Copyright: Copyright 2008-2011, Aleix Pol Copyright: Copyright 2008-2011, Alex Fiestas License: GPL-2+ Files: cmake/FindLibV4L2.cmake Copyright: Copyright 2009, Jaroslav Reznik License: BSD-C3 Files: cmake/FindVLC.cmake Copyright: Copyright 2009, Fathi Boudra Copyright: Copyright 2008, Tanguy Krotoff Copyright: Copyright 2008, Lukas Durfina License: BSD-C3 Files: FindGLIB2.cmake Copyright: Copyright 2008, Laurent Montel License: BSD-C3 Files FindGStreamer.cmake Copyright: Copyright 2006, Tim Beaulen Copyright: Copyright 2008, Helio Chissini de Castro License: BSD-C3 Files: debian/* Copyright: Copyright 2009, Harald Sitter Copyright: Copyright 2010-2011, José Manuel Santamaría Lema License: GPL-2+ License: BSD-C3 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 copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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 License: GPL-2+ On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/watch0000664000000000000000000000013212172234352010216 0ustar version=3 ftp://ftp.kde.org/pub/kde/stable/kamoso/([\d\.]+)/src/kamoso-([\d\.]+).tar.bz2 debian/control0000664000000000000000000000217612244150473010603 0ustar Source: kamoso Section: kde Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian KDE Extras Team Uploaders: José Manuel Santamaría Lema Build-Depends: debhelper (>= 9), pkg-kde-tools (>= 0.5.0), cmake, kdelibs5-dev, libkipi-dev, shared-desktop-ontologies, libqtgstreamer-dev, libgstreamer0.10-dev, libgstreamer-plugins-base0.10-dev, libglib2.0-dev Standards-Version: 3.9.4 Homepage: http://www.kde-apps.org/content/show.php/Kamoso?content=111750 Vcs-Git: git://anonscm.debian.org/pkg-kde/kde-extras/kamoso.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-kde/kde-extras/kamoso.git;a=summary Package: kamoso Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, gstreamer0.10-x, gstreamer0.10-plugins-good Suggests: kipi-plugins Description: tool to take pictures and videos from your webcam Kamoso is a utility that does the very simple actions a webcam offers, like taking pictures or recording videos and adds some extra features that will make the webcam usage both funnier and more useful. debian/manpages0000664000000000000000000000002012172233516010700 0ustar debian/kamoso.1 debian/compat0000664000000000000000000000000212172234374010373 0ustar 9 debian/kamoso.10000664000000000000000000000654212172233516010554 0ustar .\" This file was generated by kdemangen.pl .TH KAMOSO 1 "Sep 2009" "K Desktop Environment" "Webcam picture retriever" .SH NAME kamoso \- Webcam picture retriever .SH SYNOPSIS kamoso [Qt\-options] [KDE\-options] .SH DESCRIPTION Kamoso is a utility that does the very simple actions a webcam offers, like taking pictures or recording videos and adds some extra features that will make the webcam usage both funnier and more useful. .SH OPTIONS .SS Generic options: .TP .B \-\-help Show help about options .TP .B \-\-help\-qt Show Qt specific options .TP .B \-\-help\-kde Show KDE specific options .TP .B \-\-help\-all Show all options .TP .B \-\-author Show author information .TP .B \-v, \-\-version Show version information .TP .B \-\-license Show license information .TP .B \-\- End of options .SS .SS KDE options: .TP .B \-\-caption Use 'caption' as name in the titlebar .TP .B \-\-icon Use 'icon' as the application icon .TP .B \-\-config Use alternative configuration file .TP .B \-\-nocrashhandler Disable crash handler, to get core dumps .TP .B \-\-waitforwm Waits for a WM_NET compatible windowmanager .TP .B \-\-style