parent
242566a137
commit
01e4bc8c4c
@ -0,0 +1,30 @@
|
|||||||
|
kio-ftps (0.1-0ubuntu3+build2) hardy; urgency=low
|
||||||
|
|
||||||
|
* Ported to hardy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:28 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu3) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Changed distribution to gutsy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:18 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu2) feisty; urgency=low
|
||||||
|
|
||||||
|
[ Marcus Czeslinski ]
|
||||||
|
* debian/rules: add --libdir=/usr/lib/kde3 to DEB_CONFIGURE_EXTRA_FLAGS
|
||||||
|
to install into kde3 Libs directory
|
||||||
|
|
||||||
|
[ Jakub Dvorak ]
|
||||||
|
*
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Tue, 18 Dec 2007 10:05:23 +0100
|
||||||
|
|
||||||
|
kio-ftps (0.1-0k
|
||||||
|
ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Marcus Czeslinski <kubuntu@czessi.net> Tue, 17 Apr 2007 15:56:22 +0200
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,19 @@
|
|||||||
|
Source: tdeio-ftps-trinity
|
||||||
|
Section: tde
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>= 5), cdbs, autotools-dev, tdelibs4-trinity-dev
|
||||||
|
Standards-Version: 3.8.3
|
||||||
|
|
||||||
|
Package: tdeio-ftps-trinity
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: an ftps TDEIO slave for TDE
|
||||||
|
tdeio-ftps-trinity is an ftps TDEIO slave for TDE, based on rfc4217 and
|
||||||
|
build upon the ftp TDEIO-slave sources. tdeio-ftps-trinity should work
|
||||||
|
yet with most server implementations It issues an "AUTH TLS"
|
||||||
|
command after connecting and refuses to continue, when it's
|
||||||
|
not supported.
|
||||||
|
.
|
||||||
|
Homepage: http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
@ -0,0 +1,34 @@
|
|||||||
|
This package was debianized by Marcus Czeslinski <kubuntu@czessi.net> on
|
||||||
|
Tue, 17 Apr 2007 15:56:22 +0200.
|
||||||
|
|
||||||
|
It was downloaded from http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
||||||
|
Upstream Author: David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
Copyright: 2006, David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
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'.
|
||||||
|
|
||||||
|
The Debian packaging is (C) 2007, Marcus Czeslinski <kubuntu@czessi.net> and
|
||||||
|
is licensed under the GPL, see above.
|
||||||
|
|
||||||
|
|
||||||
|
# Please also look if there are files or directories which have a
|
||||||
|
# different copyright/license attached and list them here.
|
@ -0,0 +1 @@
|
|||||||
|
README
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
cdbs_kde_enable_debug = --disable-debug
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/kde.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath --libdir=/usr/lib/kde3
|
||||||
|
|
||||||
|
build-stamp:
|
||||||
|
dh_testdir
|
||||||
|
|
||||||
|
/usr/bin/libtoolize -f
|
||||||
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||||
|
cp -f /usr/share/misc/config.guess admin/config.guess
|
||||||
|
cp -f /usr/share/misc/config.sub admin/config.sub
|
||||||
|
|
||||||
|
$(MAKE) -f admin/Makefile.common
|
||||||
|
|
||||||
|
QTDIR=/usr/share/tqt3 ./configure $(configkde) --disable-final
|
||||||
|
$(MAKE)
|
||||||
|
touch build-stamp
|
@ -0,0 +1,30 @@
|
|||||||
|
kio-ftps (0.1-0ubuntu3+build2) hardy; urgency=low
|
||||||
|
|
||||||
|
* Ported to hardy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:28 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu3) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Changed distribution to gutsy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:18 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu2) feisty; urgency=low
|
||||||
|
|
||||||
|
[ Marcus Czeslinski ]
|
||||||
|
* debian/rules: add --libdir=/usr/lib/kde3 to DEB_CONFIGURE_EXTRA_FLAGS
|
||||||
|
to install into kde3 Libs directory
|
||||||
|
|
||||||
|
[ Jakub Dvorak ]
|
||||||
|
*
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Tue, 18 Dec 2007 10:05:23 +0100
|
||||||
|
|
||||||
|
kio-ftps (0.1-0k
|
||||||
|
ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Marcus Czeslinski <kubuntu@czessi.net> Tue, 17 Apr 2007 15:56:22 +0200
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,19 @@
|
|||||||
|
Source: tdeio-ftps-trinity
|
||||||
|
Section: tde
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>= 5), cdbs, autotools-dev, tdelibs4-trinity-dev
|
||||||
|
Standards-Version: 3.8.3
|
||||||
|
|
||||||
|
Package: tdeio-ftps-trinity
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: an ftps TDEIO slave for TDE
|
||||||
|
tdeio-ftps-trinity is an ftps TDEIO slave for TDE, based on rfc4217 and
|
||||||
|
build upon the ftp TDEIO-slave sources. tdeio-ftps-trinity should work
|
||||||
|
yet with most server implementations It issues an "AUTH TLS"
|
||||||
|
command after connecting and refuses to continue, when it's
|
||||||
|
not supported.
|
||||||
|
.
|
||||||
|
Homepage: http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
@ -0,0 +1,34 @@
|
|||||||
|
This package was debianized by Marcus Czeslinski <kubuntu@czessi.net> on
|
||||||
|
Tue, 17 Apr 2007 15:56:22 +0200.
|
||||||
|
|
||||||
|
It was downloaded from http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
||||||
|
Upstream Author: David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
Copyright: 2006, David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
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'.
|
||||||
|
|
||||||
|
The Debian packaging is (C) 2007, Marcus Czeslinski <kubuntu@czessi.net> and
|
||||||
|
is licensed under the GPL, see above.
|
||||||
|
|
||||||
|
|
||||||
|
# Please also look if there are files or directories which have a
|
||||||
|
# different copyright/license attached and list them here.
|
@ -0,0 +1 @@
|
|||||||
|
README
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
cdbs_kde_enable_debug = --disable-debug
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/kde.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath --libdir=/usr/lib/kde3
|
||||||
|
|
||||||
|
build-stamp:
|
||||||
|
dh_testdir
|
||||||
|
|
||||||
|
/usr/bin/libtoolize -f
|
||||||
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||||
|
cp -f /usr/share/misc/config.guess admin/config.guess
|
||||||
|
cp -f /usr/share/misc/config.sub admin/config.sub
|
||||||
|
|
||||||
|
$(MAKE) -f admin/Makefile.common
|
||||||
|
|
||||||
|
QTDIR=/usr/share/tqt3 ./configure $(configkde) --disable-final
|
||||||
|
$(MAKE)
|
||||||
|
touch build-stamp
|
@ -0,0 +1,30 @@
|
|||||||
|
kio-ftps (0.1-0ubuntu3+build2) hardy; urgency=low
|
||||||
|
|
||||||
|
* Ported to hardy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:28 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu3) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Changed distribution to gutsy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:18 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu2) feisty; urgency=low
|
||||||
|
|
||||||
|
[ Marcus Czeslinski ]
|
||||||
|
* debian/rules: add --libdir=/usr/lib/kde3 to DEB_CONFIGURE_EXTRA_FLAGS
|
||||||
|
to install into kde3 Libs directory
|
||||||
|
|
||||||
|
[ Jakub Dvorak ]
|
||||||
|
*
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Tue, 18 Dec 2007 10:05:23 +0100
|
||||||
|
|
||||||
|
kio-ftps (0.1-0k
|
||||||
|
ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Marcus Czeslinski <kubuntu@czessi.net> Tue, 17 Apr 2007 15:56:22 +0200
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,19 @@
|
|||||||
|
Source: tdeio-ftps-trinity
|
||||||
|
Section: tde
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>= 5), cdbs, autotools-dev, tdelibs4-trinity-dev
|
||||||
|
Standards-Version: 3.8.3
|
||||||
|
|
||||||
|
Package: tdeio-ftps-trinity
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: an ftps TDEIO slave for TDE
|
||||||
|
tdeio-ftps-trinity is an ftps TDEIO slave for TDE, based on rfc4217 and
|
||||||
|
build upon the ftp TDEIO-slave sources. tdeio-ftps-trinity should work
|
||||||
|
yet with most server implementations It issues an "AUTH TLS"
|
||||||
|
command after connecting and refuses to continue, when it's
|
||||||
|
not supported.
|
||||||
|
.
|
||||||
|
Homepage: http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
@ -0,0 +1,34 @@
|
|||||||
|
This package was debianized by Marcus Czeslinski <kubuntu@czessi.net> on
|
||||||
|
Tue, 17 Apr 2007 15:56:22 +0200.
|
||||||
|
|
||||||
|
It was downloaded from http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
||||||
|
Upstream Author: David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
Copyright: 2006, David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
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'.
|
||||||
|
|
||||||
|
The Debian packaging is (C) 2007, Marcus Czeslinski <kubuntu@czessi.net> and
|
||||||
|
is licensed under the GPL, see above.
|
||||||
|
|
||||||
|
|
||||||
|
# Please also look if there are files or directories which have a
|
||||||
|
# different copyright/license attached and list them here.
|
@ -0,0 +1 @@
|
|||||||
|
README
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
cdbs_kde_enable_debug = --disable-debug
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/kde.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath --libdir=/usr/lib/kde3
|
||||||
|
|
||||||
|
build-stamp:
|
||||||
|
dh_testdir
|
||||||
|
|
||||||
|
/usr/bin/libtoolize -f
|
||||||
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||||
|
cp -f /usr/share/misc/config.guess admin/config.guess
|
||||||
|
cp -f /usr/share/misc/config.sub admin/config.sub
|
||||||
|
|
||||||
|
$(MAKE) -f admin/Makefile.common
|
||||||
|
|
||||||
|
QTDIR=/usr/share/tqt3 ./configure $(configkde) --disable-final
|
||||||
|
$(MAKE)
|
||||||
|
touch build-stamp
|
@ -0,0 +1,30 @@
|
|||||||
|
kio-ftps (0.1-0ubuntu3+build2) hardy; urgency=low
|
||||||
|
|
||||||
|
* Ported to hardy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:28 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu3) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Changed distribution to gutsy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:18 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu2) feisty; urgency=low
|
||||||
|
|
||||||
|
[ Marcus Czeslinski ]
|
||||||
|
* debian/rules: add --libdir=/usr/lib/kde3 to DEB_CONFIGURE_EXTRA_FLAGS
|
||||||
|
to install into kde3 Libs directory
|
||||||
|
|
||||||
|
[ Jakub Dvorak ]
|
||||||
|
*
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Tue, 18 Dec 2007 10:05:23 +0100
|
||||||
|
|
||||||
|
kio-ftps (0.1-0k
|
||||||
|
ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Marcus Czeslinski <kubuntu@czessi.net> Tue, 17 Apr 2007 15:56:22 +0200
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,19 @@
|
|||||||
|
Source: tdeio-ftps-trinity
|
||||||
|
Section: tde
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>= 5), cdbs, autotools-dev, tdelibs4-trinity-dev
|
||||||
|
Standards-Version: 3.8.3
|
||||||
|
|
||||||
|
Package: tdeio-ftps-trinity
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: an ftps TDEIO slave for TDE
|
||||||
|
tdeio-ftps-trinity is an ftps TDEIO slave for TDE, based on rfc4217 and
|
||||||
|
build upon the ftp TDEIO-slave sources. tdeio-ftps-trinity should work
|
||||||
|
yet with most server implementations It issues an "AUTH TLS"
|
||||||
|
command after connecting and refuses to continue, when it's
|
||||||
|
not supported.
|
||||||
|
.
|
||||||
|
Homepage: http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
@ -0,0 +1,34 @@
|
|||||||
|
This package was debianized by Marcus Czeslinski <kubuntu@czessi.net> on
|
||||||
|
Tue, 17 Apr 2007 15:56:22 +0200.
|
||||||
|
|
||||||
|
It was downloaded from http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
||||||
|
Upstream Author: David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
Copyright: 2006, David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
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'.
|
||||||
|
|
||||||
|
The Debian packaging is (C) 2007, Marcus Czeslinski <kubuntu@czessi.net> and
|
||||||
|
is licensed under the GPL, see above.
|
||||||
|
|
||||||
|
|
||||||
|
# Please also look if there are files or directories which have a
|
||||||
|
# different copyright/license attached and list them here.
|
@ -0,0 +1 @@
|
|||||||
|
README
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
cdbs_kde_enable_debug = --disable-debug
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/kde.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath --libdir=/usr/lib/kde3
|
||||||
|
|
||||||
|
build-stamp:
|
||||||
|
dh_testdir
|
||||||
|
|
||||||
|
/usr/bin/libtoolize -f
|
||||||
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||||
|
cp -f /usr/share/misc/config.guess admin/config.guess
|
||||||
|
cp -f /usr/share/misc/config.sub admin/config.sub
|
||||||
|
|
||||||
|
$(MAKE) -f admin/Makefile.common
|
||||||
|
|
||||||
|
QTDIR=/usr/share/tqt3 ./configure $(configkde) --disable-final
|
||||||
|
$(MAKE)
|
||||||
|
touch build-stamp
|
@ -0,0 +1,30 @@
|
|||||||
|
kio-ftps (0.1-0ubuntu3+build2) hardy; urgency=low
|
||||||
|
|
||||||
|
* Ported to hardy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:28 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu3) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Changed distribution to gutsy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:18 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu2) feisty; urgency=low
|
||||||
|
|
||||||
|
[ Marcus Czeslinski ]
|
||||||
|
* debian/rules: add --libdir=/usr/lib/kde3 to DEB_CONFIGURE_EXTRA_FLAGS
|
||||||
|
to install into kde3 Libs directory
|
||||||
|
|
||||||
|
[ Jakub Dvorak ]
|
||||||
|
*
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Tue, 18 Dec 2007 10:05:23 +0100
|
||||||
|
|
||||||
|
kio-ftps (0.1-0k
|
||||||
|
ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Marcus Czeslinski <kubuntu@czessi.net> Tue, 17 Apr 2007 15:56:22 +0200
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,19 @@
|
|||||||
|
Source: tdeio-ftps-trinity
|
||||||
|
Section: tde
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>= 5), cdbs, autotools-dev, tdelibs4-trinity-dev
|
||||||
|
Standards-Version: 3.8.3
|
||||||
|
|
||||||
|
Package: tdeio-ftps-trinity
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: an ftps TDEIO slave for TDE
|
||||||
|
tdeio-ftps-trinity is an ftps TDEIO slave for TDE, based on rfc4217 and
|
||||||
|
build upon the ftp TDEIO-slave sources. tdeio-ftps-trinity should work
|
||||||
|
yet with most server implementations It issues an "AUTH TLS"
|
||||||
|
command after connecting and refuses to continue, when it's
|
||||||
|
not supported.
|
||||||
|
.
|
||||||
|
Homepage: http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
@ -0,0 +1,34 @@
|
|||||||
|
This package was debianized by Marcus Czeslinski <kubuntu@czessi.net> on
|
||||||
|
Tue, 17 Apr 2007 15:56:22 +0200.
|
||||||
|
|
||||||
|
It was downloaded from http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
||||||
|
Upstream Author: David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
Copyright: 2006, David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
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'.
|
||||||
|
|
||||||
|
The Debian packaging is (C) 2007, Marcus Czeslinski <kubuntu@czessi.net> and
|
||||||
|
is licensed under the GPL, see above.
|
||||||
|
|
||||||
|
|
||||||
|
# Please also look if there are files or directories which have a
|
||||||
|
# different copyright/license attached and list them here.
|
@ -0,0 +1 @@
|
|||||||
|
README
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
cdbs_kde_enable_debug = --disable-debug
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/kde.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath --libdir=/usr/lib/kde3
|
||||||
|
|
||||||
|
build-stamp:
|
||||||
|
dh_testdir
|
||||||
|
|
||||||
|
/usr/bin/libtoolize -f
|
||||||
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||||
|
cp -f /usr/share/misc/config.guess admin/config.guess
|
||||||
|
cp -f /usr/share/misc/config.sub admin/config.sub
|
||||||
|
|
||||||
|
$(MAKE) -f admin/Makefile.common
|
||||||
|
|
||||||
|
QTDIR=/usr/share/tqt3 ./configure $(configkde) --disable-final
|
||||||
|
$(MAKE)
|
||||||
|
touch build-stamp
|
@ -0,0 +1,30 @@
|
|||||||
|
kio-ftps (0.1-0ubuntu3+build2) hardy; urgency=low
|
||||||
|
|
||||||
|
* Ported to hardy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:28 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu3) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Changed distribution to gutsy
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Sat, 26 Jul 2008 20:45:18 +0200
|
||||||
|
|
||||||
|
kio-ftps (0.1-0ubuntu2) feisty; urgency=low
|
||||||
|
|
||||||
|
[ Marcus Czeslinski ]
|
||||||
|
* debian/rules: add --libdir=/usr/lib/kde3 to DEB_CONFIGURE_EXTRA_FLAGS
|
||||||
|
to install into kde3 Libs directory
|
||||||
|
|
||||||
|
[ Jakub Dvorak ]
|
||||||
|
*
|
||||||
|
|
||||||
|
-- Jakub Dvorak <nytmyn@gmail.com> Tue, 18 Dec 2007 10:05:23 +0100
|
||||||
|
|
||||||
|
kio-ftps (0.1-0k
|
||||||
|
ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Marcus Czeslinski <kubuntu@czessi.net> Tue, 17 Apr 2007 15:56:22 +0200
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
5
|
@ -0,0 +1,19 @@
|
|||||||
|
Source: tdeio-ftps-trinity
|
||||||
|
Section: tde
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>= 5), cdbs, autotools-dev, tdelibs4-trinity-dev
|
||||||
|
Standards-Version: 3.8.3
|
||||||
|
|
||||||
|
Package: tdeio-ftps-trinity
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: an ftps TDEIO slave for TDE
|
||||||
|
tdeio-ftps-trinity is an ftps TDEIO slave for TDE, based on rfc4217 and
|
||||||
|
build upon the ftp TDEIO-slave sources. tdeio-ftps-trinity should work
|
||||||
|
yet with most server implementations It issues an "AUTH TLS"
|
||||||
|
command after connecting and refuses to continue, when it's
|
||||||
|
not supported.
|
||||||
|
.
|
||||||
|
Homepage: http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
@ -0,0 +1,34 @@
|
|||||||
|
This package was debianized by Marcus Czeslinski <kubuntu@czessi.net> on
|
||||||
|
Tue, 17 Apr 2007 15:56:22 +0200.
|
||||||
|
|
||||||
|
It was downloaded from http://kasablanca.berlios.de/kio-ftps/
|
||||||
|
|
||||||
|
Upstream Author: David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
Copyright: 2006, David Faure <faure@kde.org>, Magnus Kulke <magnus.kulke@radicalapproach.de>
|
||||||
|
|
||||||
|
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'.
|
||||||
|
|
||||||
|
The Debian packaging is (C) 2007, Marcus Czeslinski <kubuntu@czessi.net> and
|
||||||
|
is licensed under the GPL, see above.
|
||||||
|
|
||||||
|
|
||||||
|
# Please also look if there are files or directories which have a
|
||||||
|
# different copyright/license attached and list them here.
|
@ -0,0 +1 @@
|
|||||||
|
README
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
cdbs_kde_enable_debug = --disable-debug
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/kde.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath --libdir=/usr/lib/kde3
|
||||||
|
|
||||||
|
build-stamp:
|
||||||
|
dh_testdir
|
||||||
|
|
||||||
|
/usr/bin/libtoolize -f
|
||||||
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
||||||
|
cp -f /usr/share/misc/config.guess admin/config.guess
|
||||||
|
cp -f /usr/share/misc/config.sub admin/config.sub
|
||||||
|
|
||||||
|
$(MAKE) -f admin/Makefile.common
|
||||||
|
|
||||||
|
QTDIR=/usr/share/tqt3 ./configure $(configkde) --disable-final
|
||||||
|
$(MAKE)
|
||||||
|
touch build-stamp
|
Loading…
Reference in new issue