diff options
Diffstat (limited to 'debian/_base/applications/kftpgrabber')
18 files changed, 879 insertions, 0 deletions
diff --git a/debian/_base/applications/kftpgrabber/debian/README.Debian b/debian/_base/applications/kftpgrabber/debian/README.Debian new file mode 100644 index 000000000..b0302c211 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/README.Debian @@ -0,0 +1,107 @@ +Debian kde-extras Team +---------------------- + +1. Contacts +----------- + +General help requests + <debian-kde@lists.debian.org> mailing list + #debian-kde on irc + +Packaging queries + <debian-qt-kde@lists.debian.org> mailing list + #debian-qt-kde on irc + +Maintainers + <pkg-kde-extras@lists.alioth.debian.org> mailing list + + +2. Subversion repository +------------------------ + +You can browse it only at: + +http://svn.debian.org/wsvn/pkg-kde/kde-extras/ + +To "checkout" the repository use these commands: + + $ svn co svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras + +Authorized SSH keys are controlled at https://alioth.debian.org/account/ + +The repository layout is: + +- packagename/ + - trunk/ + - branches/ + - tags/ + - 0.7.2-1/ + - 0.7.2-2/ + - 0.7.2-2ubuntu1/ + - 0.7.2-2ubuntu2/ + - 0.7.2-2ubuntu3/ + - 0.8.0/ + ... + +If only one version of the package is available at the time, development must +be made at trunk/ dir, copying the dir to tags/'pkg-version' each time a new +release is made. + +When, at some point, the need to have two different versions at the same time +arises (for example, if we need a version to be in unstable and a different one +to be in experimental), experimental development will be made in trunk/ and +if a new unstable package needs to be cooked, copying +tag/'latest_version_in_sid' to tag/'latest_version_in_sid'+1 will make the +trick. + +3. Using svn-buildpackage +-------------------------- + +Packages with an upstream tarball will require you to set the mergeWithUpstream +property first (from the package root) so that svn-buildpackage will look for +the .orig.tar.gz in the ../tarballs directory. + + % svn propset mergeWithUpstream 1 debian + +Please note that this only works for packages which have only the debian/ +directory committed. Consequently, you must use CDBS's simple-patchsys.mk or +dpatch to modify the upstream sources. + +After you have finished and committed your Debian patches via + + % svn commit [PACKAGE] + +as well as copying the orig.tar.gz to ../tarballs/ if necessary, you may build +your package with the following commands: + + % svn-buildpackage --svn-ignore-new -rfakeroot + +Please, don't commit tarballs/ or build-area/ directories to SVN. + +4. Tarballs and Build-area directories +------------------------------------ + +During pkg development before uploaded to debian the tarballs can be found at: + + http://pkg-kde.alioth.debian.org/kde-extra/orig.tar.gz/ + +You need to place those dirs in the parent directory of the one from which you're +running svn-buildpackage. Usually this means placing tarballs/ and build-area/ dirs +in 'pkgname'/ dir, at the same level as trunk/ + +If you want to compile inside one version in tags/ dir, you'll need to place those +dirs inside that dir. Of course the easiest and cleanest way of doing it is +by making a symlink of those dirs inside tags/ dir. + +5. Using svn-inject +------------------- + +To inject a new package into the Debian KDE Extras svn archive you should use svn-inject(1) +as follows: + + svn-inject -o <package>.dsc svn+ssh://${ALIOTH_USERNAME}@svn.debian.org/svn/pkg-kde/kde-extras + +Type in your alioth password a few hundred times :-) and your package should be +uploaded to the archive. Note you will also need to manually copy the +package.orig.tar.gz to your tarballs directory. The -o option is important as +this ensures that we 'Only keep modified files under SVN control' diff --git a/debian/_base/applications/kftpgrabber/debian/cdbs/debian-qt-kde.mk b/debian/_base/applications/kftpgrabber/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..9f8f97776 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,115 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in +ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" + cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh +endif +ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" + cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh +endif + $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) + +ifndef _cdbs_rules_patchsys_quilt +DEB_PATCHDIRS := debian/patches/common debian/patches +endif + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \ + done + +clean:: + if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \ + cd $(DEB_SRCDIR); \ + find . -name Makefile.in -print | \ + xargs --no-run-if-empty rm -f; \ + rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \ + configure configure.files configure.in stamp-h.in \ + subdirs; \ + fi + rm -f debian/stamp-cvs-make + +endif diff --git a/debian/_base/applications/kftpgrabber/debian/cdbs/kde.mk b/debian/_base/applications/kftpgrabber/debian/cdbs/kde.mk new file mode 100644 index 000000000..1ac26c4b7 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/cdbs/kde.mk @@ -0,0 +1,89 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <ccheney@debian.org> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# This program 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, or (at +# your option) any later version. +# +# This program 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 program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/tde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/tde" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/debian/_base/applications/kftpgrabber/debian/cdbs/versions.pl b/debian/_base/applications/kftpgrabber/debian/cdbs/versions.pl new file mode 100644 index 000000000..1b110f7af --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "TDE-Version3=$version3\n"; +print "TDE-Version2=$version2\n"; +print "TDE-Next-Version3=$version3_next\n"; +print "TDE-Next-Version2=$version2_next\n"; diff --git a/debian/_base/applications/kftpgrabber/debian/changelog b/debian/_base/applications/kftpgrabber/debian/changelog new file mode 100644 index 000000000..9db00359a --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/changelog @@ -0,0 +1,80 @@ +kftpgrabber-trinity (0.8.1-2) unstable; urgency=low + + * Initial Release for TDE + + -- Slávek Banko <slavek.banko@axis.cz> Fri, 26 Jul 2013 08:28:38 +0200 + +kftpgrabber (0.8.1-2) unstable; urgency=low + + [ Mark Purcell ] + * Remove get-orig-source targets. sf.net sillyness. + + [ Michael Meskes ] + * Added myself as uploader. + * Added patch by Thijs Kinkhorst <thijs@debian.org> to make default encoding + UTF-8, closes: #431438 + * Bumped Standards-Version to 3.7.3. + * Added command to delete *.gmo file to clean target, closes: #442614 + * Moved homepage from description to its own field. + * Changed menu section to Applications/Network/File Transfer. + + -- Michael Meskes <meskes@debian.org> Sat, 19 Apr 2008 19:09:05 +0200 + +kftpgrabber (0.8.1-1) unstable; urgency=low + + * New upstream release. + + -- Fathi Boudra <fboudra@free.fr> Tue, 15 May 2007 20:26:16 +0200 + +kftpgrabber (0.8.0-2) unstable; urgency=low + + * Update debian/watch + + -- Mark Purcell <msp@debian.org> Thu, 29 Mar 2007 22:01:50 +0100 + +kftpgrabber (0.8.0-1) experimental; urgency=low + + * New upstream release. + * Add debian/rules get-orig-source target for http://buildserver.net. + * Merge kdepot patch from kubuntu. + + -- Fathi Boudra <fboudra@free.fr> Fri, 5 Jan 2007 08:21:01 +0100 + +kftpgrabber (0.8.0~beta2-1) unstable; urgency=low + + * New upstream release + * Remove branch pull up to r596782 + + -- Fathi Boudra <fboudra@free.fr> Thu, 9 Nov 2006 11:11:15 +0100 + +kftpgrabber (0.8.0~beta1-1) unstable; urgency=low + + * New upstream release + * Add menu file (Closes: #390212) + * Branch pull up to r596782 + + -- Fathi Boudra <fboudra@free.fr> Wed, 18 Oct 2006 15:27:49 +0200 + +kftpgrabber (0.8.0~alpha2-1) unstable; urgency=low + + * New upstream release + + -- Fathi Boudra <fboudra@free.fr> Wed, 20 Sep 2006 17:59:57 +0200 + +kftpgrabber (0.7.99-1) unstable; urgency=low + + * New upstream release (Closes: #376668) + * compat: bumped to 5 + * control: + * bumped Standards-Version to 3.7.2 + * updated description + * copyright: added Martin Filser, Tobias Ussing and Tim Kosse + + -- Fathi Boudra <fboudra@free.fr> Tue, 5 Sep 2006 16:15:05 +0200 + +kftpgrabber (0.7-beta1-1) unstable; urgency=low + + * Initial release Closes: #276068 + + -- Fathi Boudra <fboudra@free.fr> Fri, 17 Mar 2006 23:48:32 +0100 + diff --git a/debian/_base/applications/kftpgrabber/debian/compat b/debian/_base/applications/kftpgrabber/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/_base/applications/kftpgrabber/debian/control b/debian/_base/applications/kftpgrabber/debian/control new file mode 100644 index 000000000..2f32adb10 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/control @@ -0,0 +1,35 @@ +Source: kftpgrabber-trinity +Section: tde +Priority: optional +Maintainer: Debian TDE Extras Team <pkg-tde-extras@lists.alioth.debian.org> +Uploaders: Fathi Boudra <fabo@debian.org>, Mark Purcell <msp@debian.org>, Michael Meskes <meskes@debian.org> +Build-Depends: cdbs, debhelper (>= 7.0.50~), quilt, automake, libtool, tdelibs14-trinity-dev, docbook2x, docbook-xml +Standards-Version: 3.8.3 +Homepage: http://www.kftp.org + +Package: kftpgrabber-trinity +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ftp client for TDE + KFTPgrabber is a graphical FTP client for the Trinity Desktop Environment. It + implements many features required for usable FTP interaction. + . + Feature list: + - Multiple simultaneous FTP sessions in separate tabs + - A tree-oriented transfer queue + - TLS/SSL support for the control connection and the data channel + - X509 certificate support for authentication + - FXP site-to-site transfer support + - One-time password (OTP) support using S/KEY, MD5, RMD160 or SHA1 + - Site bookmarks with many options configurable per-site + - Distributed FTP daemon support (implementing the PRET command) + - Can use Zeroconf for local site discovery + - Bookmark import plugins from other FTP clients + - Support for the SFTP protocol + - A nice traffic graph + - Ability to limit upload and download speed + - Priority and skip lists + - Integrated SFV checksum verifier + - Direct viewing/editing of remote files + - Advanced default "on file exists" action configuration + - Filter displayed files/directories as you type diff --git a/debian/_base/applications/kftpgrabber/debian/copyright b/debian/_base/applications/kftpgrabber/debian/copyright new file mode 100644 index 000000000..1be4077df --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/copyright @@ -0,0 +1,196 @@ +This package was debianized by Fathi Boudra <fboudra@free.fr> on +Fri, 17 Mar 2006 23:48:32 +0100. + +It was downloaded from http://www.kftp.org + +Upstream Authors: + Jernej Kos <kostko@jweb-network.net> + Markus Brueffer <markus@brueffer.de> + Martin Filser <blacknator@yahoo.de> + Tobias Ussing <thehole@mail.seriesdb.com> + +Copyright Holders: + (C) 2003-2005 Jernej Kos <kostko@jweb-network.net> + (C) 2003-2005 Markus Brueffer <markus@brueffer.de> + +Copyright for server management code: + (C) Martin Filser <blacknator@yahoo.de> + +Copyright for SSH Library (libssh): + (C) 2003-2004 Aris Adamantiadis <aris@0xbadc0de.be> + +Copyright for OTP generator code (otpCalc): + (C) 2001-2004 Anthony D. Urso <anthonyu@killa.net> + +Copyright for sidebar widget copied from amarok: + (C) AmaroK Developers <amarok-devel@lists.sf.net> + (C) 2004-2005 Max Howell <max.howell@methylblue.com> + +Copyright for multitabbar widget copied from amarok: + (C) AmaroK Developers + (C) 2001-2003 Joseph Wenninger <jowenn@kde.org> + (C) 2005 Mark Kretschmann <markey@web.de> + +Copyright for systray icon copied from Konversation: + (C) 2003 Dario Abatianni <eisfuchs@tigress.com> + (C) 2003 Peter Simonsson <psn@linux.se> + +Copyright for ballon popup code copied from kopete: + (C) Kopete Developers <kopete-devel@kde.org> + +Copyright for traffic graph widget copied from ksysguard: + (C) KSysGuard Developers <cs@kde.org> + +Copyright for OpenSSL: + (C) 1995-1998 Eric Young <eay@cryptsoft.com> + +Copyright for directory code parser (FileZilla): + (C) Tim Kosse <tim.kosse@gmx.de> + +KFTPGrabber 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'. + +OpenSSL License: + + LICENSE ISSUES + ============== + + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of + the OpenSSL License and the original SSLeay license apply to the toolkit. + See below for the actual license texts. Actually both licenses are BSD-style + Open Source licenses. In case of any license issues related to OpenSSL + please contact openssl-core@openssl.org. + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. + * + * 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. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED 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 OpenSSL PROJECT OR + * ITS 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. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * 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 above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``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 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 licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + diff --git a/debian/_base/applications/kftpgrabber/debian/docs b/debian/_base/applications/kftpgrabber/debian/docs new file mode 100644 index 000000000..e845566c0 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/_base/applications/kftpgrabber/debian/kftpgrabber-trinity.lintian-overrides b/debian/_base/applications/kftpgrabber/debian/kftpgrabber-trinity.lintian-overrides new file mode 100644 index 000000000..db696c984 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/kftpgrabber-trinity.lintian-overrides @@ -0,0 +1,4 @@ +# It isn't a library or a development package and no other packages uses libkftpinterfaces +# kftpgrabber-trinity needs it and maybe a split can happen later if needed +kftpgrabber-trinity: non-dev-pkg-with-shlib-symlink opt/trinity/lib/libkftpinterfaces.so.0.0.0 usr/lib/libkftpinterfaces.so +kftpgrabber-trinity: package-name-doesnt-match-sonames libkftpinterfaces0 diff --git a/debian/_base/applications/kftpgrabber/debian/kftpgrabber.xml b/debian/_base/applications/kftpgrabber/debian/kftpgrabber.xml new file mode 100644 index 000000000..ae9a1cc32 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/kftpgrabber.xml @@ -0,0 +1,167 @@ +<?xml version='1.0' encoding='ISO-8859-1'?> +<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" +"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [ + <!ENTITY dhfirstname "<firstname>Fathi</firstname>"> + <!ENTITY dhsurname "<surname>Boudra</surname>"> + <!ENTITY dhdate "<date>mars 17, 2006</date>"> + <!ENTITY dhsection "<manvolnum>1</manvolnum>"> + <!ENTITY dhemail "<email>fboudra@free.fr</email>"> + <!ENTITY dhusername "Fathi Boudra"> + <!ENTITY dhucpackage "<refentrytitle>kftpgrabber</refentrytitle>"> + <!ENTITY dhpackage "kftpgrabber"> + <!ENTITY debian "<productname>Debian</productname>"> + <!ENTITY gnu "<acronym>GNU</acronym>"> + <!ENTITY gpl "&gnu; <acronym>GPL</acronym>"> +]> + +<refentry> + <refentryinfo> + <address> + &dhemail; + </address> + <author> + &dhfirstname; + &dhsurname; + </author> + <copyright> + <year>2006</year> + <holder>&dhusername;</holder> + </copyright> + &dhdate; + </refentryinfo> + <refmeta> + &dhucpackage; + + &dhsection; + </refmeta> + <refnamediv> + <refname>&dhpackage;</refname> + + <refpurpose>ftp client for TDE</refpurpose> + </refnamediv> + <refsynopsisdiv> + <cmdsynopsis> + <command>&dhpackage;</command> + + <arg><option><replaceable>options</replaceable></option></arg> + + </cmdsynopsis> + </refsynopsisdiv> + <refsect1> + <title>DESCRIPTION</title> + + <para><command>&dhpackage;</command> is a graphical ftp client for TDE. + It supports technologies like ZeroConf, TLS/SSL and FXP</para> + + <para>Some features: + <simplelist> + <member>- Multiple FTP sessions (tabs)</member> + <member>- Transfer queue</member> + <member>- TLS/SSL support for encrypted connections (implicit and explicit)</member> + <member>- Partial X509 certificate support for authentication</member> + <member>- File eXchange Protocol (FXP) transfer support</member> + <member>- One Time Password (OTP) support - S/Key, MD5, RMD160, SHA1</member> + <member>- Drag and Drop support</member> + <member>- Site bookmarking</member> + <member>- Encrypted bookmark support (password can be saved to TDEWallet)</member> + <member>- Distributed FTP support (PRET)</member> + <member>- SSCN and CPSV support</member> + <member>- Skiplist</member> + <member>- ZeroConf (aka. Rendezvous) support for local site discovery</member> + <member>- Bookmark sharing with Kopete contacts</member> + <member>- Bookmark import plugins</member> + <member>- Support for SFTP protocol</member> + <member>- Traffic graph</member> + <member>- Speed limiting</member> + <member>- Priority and skip lists</member> + <member>- Fast directory listings via control channel on servers that support STAT</member> + <member>- Integrated SFV checksum verifier</member> + <member>- Ability to view/edit remote files</member> + <member>- Exporting of directory listings into text files</member> + <member>- "On file exists" action matrix for Download, Upload and FXP transfers</member> + </simplelist> + </para> + + </refsect1> + <refsect1> + <title>OPTIONS</title> + + <para>All TDE and Qt programs accept some common command-line options. + <command>&dhpackage;</command> has no application-specific options.</para> + + <variablelist> + <varlistentry> + <term> + <option>--help</option> + </term> + <listitem> + <para>Show help about options</para> + </listitem> + </varlistentry> + <varlistentry> + <term> + <option>--help-qt</option> + </term> + <listitem> + <para>Show Qt specific options</para> + </listitem> + </varlistentry> + <varlistentry> + <term> + <option>--help-tde</option> + </term> + <listitem> + <para>Show TDE specific options</para> + </listitem> + </varlistentry> + <varlistentry> + <term> + <option>--help-all</option> + </term> + <listitem> + <para>Show all options</para> + </listitem> + </varlistentry> + <varlistentry> + <term> + <option>--author</option> + </term> + <listitem> + <para>Show author information</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-v</option> + <option>--version</option> + </term> + <listitem> + <para>Show version information</para> + </listitem> + </varlistentry> + <varlistentry> + <term> + <option>--license</option> + </term> + <listitem> + <para>Show license information</para> + </listitem> + </varlistentry> + </variablelist> + </refsect1> + <refsect1> + <title>AUTHOR</title> + + <para>This manual page was written by &dhusername; <&dhemail;> for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; General Public License, Version 2 any + later version published by the Free Software Foundation. + </para> + <para> + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL. + </para> + + </refsect1> +</refentry> + diff --git a/debian/_base/applications/kftpgrabber/debian/manpages b/debian/_base/applications/kftpgrabber/debian/manpages new file mode 100644 index 000000000..ac7779c7e --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/manpages @@ -0,0 +1 @@ +kftpgrabber.1 diff --git a/debian/_base/applications/kftpgrabber/debian/menu b/debian/_base/applications/kftpgrabber/debian/menu new file mode 100644 index 000000000..03baaac09 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/menu @@ -0,0 +1,7 @@ +?package(kftpgrabber-trinity):\ + needs="X11" \ + hints="TDE" \ + section="Applications/Network/File Transfer"\ + title="kftpgrabber" \ + longtitle="kftpgrabber - ftp client" \ + command="/opt/trinity/bin/kftpgrabber" diff --git a/debian/_base/applications/kftpgrabber/debian/patches/series b/debian/_base/applications/kftpgrabber/debian/patches/series new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/patches/series diff --git a/debian/_base/applications/kftpgrabber/debian/rules b/debian/_base/applications/kftpgrabber/debian/rules new file mode 100755 index 000000000..b7b5591da --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/rules @@ -0,0 +1,48 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include debian/cdbs/kde.mk +#include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/utils.mk + +DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include +DEB_CONFIGURE_MANDIR := /opt/trinity/share/man +DEB_CONFIGURE_PREFIX := /opt/trinity +DEB_CONFIGURE_INFODIR := /opt/trinity/share/info + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +post-patches:: debian/stamp-bootstrap + +debian/stamp-bootstrap: + dh_testdir + + # Regenerate build system +ifneq "$(wildcard /usr/share/libtool/ltmain.sh)" "" + cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh +endif +ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" + cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh +endif +ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" + cp -f /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh +endif + cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + + autoreconf --install && automake -f && \ + $(MAKE) -f admin/Makefile.common && \ + touch debian/stamp-bootstrap + +build/kftpgrabber-trinity:: + /usr/bin/docbook2x-man debian/kftpgrabber.xml + +binary-install/kftpgrabber-trinity:: + install -D -p -m644 debian/kftpgrabber-trinity.lintian-overrides \ + debian/kftpgrabber-trinity/usr/share/lintian/overrides/kftpgrabber-trinity + mv debian/$(cdbs_curpkg)/usr/share/man debian/$(cdbs_curpkg)/opt/trinity/share/ + +clean:: + rm -f kftpgrabber.1 + rm -f translations/*/messages/*.gmo + rm -f debian/stamp-bootstrap diff --git a/debian/_base/applications/kftpgrabber/debian/source/format b/debian/_base/applications/kftpgrabber/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/_base/applications/kftpgrabber/debian/source/options b/debian/_base/applications/kftpgrabber/debian/source/options new file mode 100644 index 000000000..72f1f5450 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/source/options @@ -0,0 +1,6 @@ +# Use xz instead of gzip +compression = "xz" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/debian/_base/applications/kftpgrabber/debian/watch b/debian/_base/applications/kftpgrabber/debian/watch new file mode 100644 index 000000000..a0f049d56 --- /dev/null +++ b/debian/_base/applications/kftpgrabber/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.kftp.org/misc/downloads/ /uploads/files/kftpgrabber-(.*)\.tar\.bz2 debian svn-upgrade |