This is a Debian patch file for "httrack" 3.33.15. This patch file was obtained originally from: http://ftp.debian.org/debian/pool/main/h/httrack/\ httrack_3.33.15-1.diff.gz The contents are unchanged except for these comments. --- httrack-3.33.15.orig/INSTALL.Linux +++ httrack-3.33.15/INSTALL.Linux @@ -0,0 +1,10 @@ +HTTrack Website Copier - Install notes +-------------------------------------- + +On most systems (including GNU/Linux), installing can be easily acheived using the following command: + +./configure && make && make install +-or- (if not compiling as root) +./configure && make && su -c 'make install' + +See also the INSTALL generic help file. --- httrack-3.33.15.orig/INSTALL.FreeBSD +++ httrack-3.33.15/INSTALL.FreeBSD @@ -0,0 +1,10 @@ +HTTrack Website Copier - Install notes +-------------------------------------- + +FreeBSD systems not including libpthread.so (-lpthread) must use the -pthread gcc flag: + +./configure CC='gcc -pthread' && make && make install +-or- (if not compiling as root) +./configure CC='gcc -pthread' && make && su -c 'make install' + +See also the INSTALL generic help file. --- httrack-3.33.15.orig/debian/webhttrack.files +++ httrack-3.33.15/debian/webhttrack.files @@ -0,0 +1,13 @@ +usr/share/man/man1/webhttrack.1 +usr/share/man/man1/htsserver.1 +usr/share/doc/httrack/html/server +usr/lib/httrack/htsserver +usr/bin/webhttrack +usr/share/httrack/lang +usr/share/httrack/lang.def +usr/share/httrack/lang.indexes +usr/share/gnome/apps/Internet +usr/share/applications +usr/share/httrack/icons +usr/share/pixmaps +usr/share/httrack/html --- httrack-3.33.15.orig/debian/webhttrack.menu +++ httrack-3.33.15/debian/webhttrack.menu @@ -0,0 +1,3 @@ +?package(webhttrack):needs="x11" section="Apps/Net" \ + title="WebHTTrack" command="webhttrack" hints="Offline browsers" \ + icon=/usr/share/pixmaps/httrack.xpm --- httrack-3.33.15.orig/debian/httrack-doc.doc-base +++ httrack-3.33.15/debian/httrack-doc.doc-base @@ -0,0 +1,9 @@ +Document: httrack-doc +Title: httrack website copier documentation +Author: Xavier Roche +Abstract: This document describes and discuss on httrack website copier +Section: Apps/Net + +Format: HTML +Index: /usr/share/doc/httrack/httrack-doc.html +Files: /usr/share/doc/httrack/html/*.html --- httrack-3.33.15.orig/debian/libhttrack-swf1.files +++ httrack-3.33.15/debian/libhttrack-swf1.files @@ -0,0 +1,2 @@ +usr/lib/libhtsswf.so.1.0.0 +usr/lib/libhtsswf.so.1 --- httrack-3.33.15.orig/debian/libhttrack-dev.files +++ httrack-3.33.15/debian/libhttrack-dev.files @@ -0,0 +1,3 @@ +usr/include/httrack +usr/lib/libhttrack.{a,la,so} +usr/share/httrack/libtest --- httrack-3.33.15.orig/debian/libhttrack1.files +++ httrack-3.33.15/debian/libhttrack1.files @@ -0,0 +1,3 @@ +usr/lib/libhttrack.so.1.0.33 +usr/lib/libhttrack.so.1 +usr/share/httrack/templates --- httrack-3.33.15.orig/debian/httrack-doc.files +++ httrack-3.33.15/debian/httrack-doc.files @@ -0,0 +1,2 @@ +usr/share/doc/httrack/html +usr/share/doc/httrack/httrack-doc.html --- httrack-3.33.15.orig/debian/rules +++ httrack-3.33.15/debian/rules @@ -0,0 +1,117 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatibility version to use. +export DH_COMPAT=3 + +# *** Patch for s390, mips, hppa.. +# It seems that htscore.c can not compile on several archs, due to compiler +# capacity limits. These lines shall be removed when gcc is upgraded. +# See discussions on 'Assembler messages: Branch out of range' +# Addition (04/2004): gcc-3.3 on arm fcks up with htscoremain.c and -O3 (..) +ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH),s390 mips mipsel hppa m68k arm)) + CFLAGS += -DNOSTRDEBUG +endif + +# DEB_BUILD_OPTIONS flags +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g3 -O0 +else + CFLAGS += -g -O3 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + + ./configure \ + --prefix=/usr \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --mandir=\$${prefix}/share/man \ + --sysconfdir=/etc \ + CFLAGS="$(CFLAGS)" + + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/httrack + + mkdir -p $(CURDIR)/debian/httrack/usr/lib/httrack + mv $(CURDIR)/debian/httrack/usr/bin/htsserver \ + $(CURDIR)/debian/httrack/usr/lib/httrack/ + rm -f $(CURDIR)/debian/httrack/usr/lib/httrack/*.a + rm -f $(CURDIR)/debian/httrack/usr/lib/httrack/*.la + mv $(CURDIR)/debian/httrack/usr/lib/httrack/lib* \ + $(CURDIR)/debian/httrack/usr/share/httrack/libtest/ + # Duplicate entry for legacy /usr/share/applications support + # to be removed soon + mkdir -p $(CURDIR)/debian/httrack/usr/share/gnome/apps/Internet + ln -s ../../../applications/WebHTTrack.desktop \ + $(CURDIR)/debian/httrack/usr/share/gnome/apps/Internet/ + ln -s ../../../applications/WebHTTrack-Websites.desktop \ + $(CURDIR)/debian/httrack/usr/share/gnome/apps/Internet/ + dh_movefiles --sourcedir=debian/httrack + find debian -type d | xargs rmdir -p --ignore-fail-on-non-empty + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir -i + dh_testroot -i + dh_installdocs -i + dh_installchangelogs -i history.txt + dh_link -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installdocs -a + dh_installmenu -a + dh_installchangelogs -a history.txt + dh_link -a + dh_strip -a + dh_compress -a + dh_fixperms -a + dh_makeshlibs -a + dh_installdeb -a + dh_shlibdeps -a -ldebian/libhttrack1/usr/lib + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- httrack-3.33.15.orig/debian/control +++ httrack-3.33.15/debian/control @@ -0,0 +1,77 @@ +Source: httrack +Section: web +Priority: optional +Maintainer: Xavier Roche +Standards-Version: 3.6.1 +Build-Depends: debhelper (>> 4.0.0), zlib1g, zlib1g-dev + +Package: httrack +Architecture: any +Section: web +Depends: ${shlibs:Depends} +Suggests: webhttrack, httrack-doc +Description: Copy websites to your computer (Offline browser) + HTTrack is an offline browser utility, allowing you to download a World + Wide website from the Internet to a local directory, building recursively + all directories, getting html, images, and other files from the server to + your computer. + . + HTTrack arranges the original site's relative link-structure. Simply + open a page of the "mirrored" website in your browser, and you can + browse the site from link to link, as if you were viewing it online. + HTTrack can also update an existing mirrored site, and resume + interrupted downloads. HTTrack is fully configurable, and has an + integrated help system. + . + Homepage: http://www.httrack.com + +Package: webhttrack +Architecture: any +Section: web +Depends: ${shlibs:Depends}, mozilla | www-browser +Suggests: httrack, httrack-doc +Description: Copy websites to your computer, httrack with a Web interface + WebHTTrack is an offline browser utility, allowing you to download a World + Wide website from the Internet to a local directory, building recursively + all directories, getting html, images, and other files from the server to + your computer, using a step-by-step web interface. + . + WebHTTrack arranges the original site's relative link-structure. Simply + open a page of the "mirrored" website in your browser, and you can + browse the site from link to link, as if you were viewing it online. + HTTrack can also update an existing mirrored site, and resume + interrupted downloads. WebHTTrack is fully configurable, and has an + integrated help system. + . + Homepage: http://www.httrack.com + Snapshots: http://www.httrack.com/page.php?p=21 + +Package: libhttrack1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends} +Recommends: libssl0.9.7 +Description: Httrack website copier library + This package is the library part of httrack, website copier and mirroring + utility + . + Homepage: http://www.httrack.com + +Package: libhttrack-dev +Architecture: any +Section: libdevel +Depends: libhttrack1 (= ${Source-Version}), zlib1g, zlib1g-dev +Recommends: libssl0.9.7 +Description: Httrack website copier includes and development files + This package adds supplemental files for using the httrack website copier + library + . + Homepage: http://www.httrack.com + +Package: httrack-doc +Architecture: all +Section: doc +Description: Httrack website copier additional documentation + This package adds supplemental documentation for httrack + . + Homepage: http://www.httrack.com --- httrack-3.33.15.orig/debian/copyright +++ httrack-3.33.15/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Xavier Roche on +Fri, 27 Sep 2002 16:42:26 +0200 + +Upstream author: Xavier Roche + +This software is Copyright (C) Xavier Roche and other contributors + +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 +of the License, or any later version. + +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL file. + +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. + +In addition, as a special exception, Xavier Roche gives permission to +link the code of this program with the openSSL library (or with +modified versions of openSSL that use the same license as openSSL), +and distribute linked combinations including the two. You must obey +the GNU General Public License in all respects for all of the code +used other than openSSL. If you modify this file, you may extend this +exception to your version of the file, but you are not obligated to do +so. If you do not wish to do so, delete this exception statement from +your version. --- httrack-3.33.15.orig/debian/changelog +++ httrack-3.33.15/debian/changelog @@ -0,0 +1,600 @@ +httrack (3.33.15-1) unstable; urgency=low + + * Updated to 3.33.15 + + -- Xavier Roche Sat, 5 Feb 2005 09:32:29 +0100 + +httrack (3.33.14-1) unstable; urgency=low + + * Updated to 3.33.14 + + -- Xavier Roche Sat, 22 Jan 2005 16:01:53 +0100 + +httrack (3.33.13-1) unstable; urgency=low + + * Updated to 3.33.13 + + -- Xavier Roche Sat, 8 Jan 2005 13:29:13 +0100 + +httrack (3.33.11-1) unstable; urgency=low + + * Updated to 3.33.11 + + -- Xavier Roche Thu, 23 Dec 2004 08:39:45 +0100 + +httrack (3.33.10-1) unstable; urgency=low + + * Updated to 3.33.10 + + -- Xavier Roche Mon, 20 Dec 2004 20:05:00 +0100 + +httrack (3.33.09-1) unstable; urgency=low + + * Updated to 3.33.09 + + -- Xavier Roche Sat, 18 Dec 2004 19:32:07 +0100 + +httrack (3.33.08-1) unstable; urgency=low + + * Updated to 3.33.08 + + -- Xavier Roche Sun, 12 Dec 2004 17:04:55 +0100 + +httrack (3.33.07-1) unstable; urgency=low + + * Updated to 3.33.07 + + -- Xavier Roche Sat, 4 Dec 2004 16:48:15 +0100 + +httrack (3.33.06-1) unstable; urgency=low + + * Updated to 3.33.06 + + -- Xavier Roche Sat, 27 Nov 2004 13:10:28 +0100 + +httrack (3.33.05-1) unstable; urgency=low + + * Updated to 3.33.05 + + -- Xavier Roche Mon, 15 Nov 2004 20:56:07 +0100 + +httrack (3.33.04-1) unstable; urgency=low + + * Updated to 3.33.04 + + -- Xavier Roche Fri, 12 Nov 2004 17:01:26 +0100 + +httrack (3.33.03-1) unstable; urgency=low + + * Updated to 3.33.03 + + -- Xavier Roche Sun, 10 Oct 2004 11:11:29 +0200 + +httrack (3.33.02-1) unstable; urgency=low + + * Updated to 3.33.02 + + -- Xavier Roche Sat, 28 Aug 2004 12:36:18 +0200 + +httrack (3.33.01-1) unstable; urgency=low + + * Updated to 3.33.01 + + -- Xavier Roche Thu, 15 Jul 2004 10:04:28 +0200 + +httrack (3.32.03-1) unstable; urgency=medium + + * Fixed broken webhttrack script on (Linu|Uni)x + + -- root Thu, 20 May 2004 11:46:16 +0200 + +httrack (3.32.02-1) unstable; urgency=medium + + * Fixed broken engine on 64-bit archs (crash in hashtables) + + -- Xavier Roche Sat, 8 May 2004 11:53:12 +0200 + +httrack (3.32.01-1) unstable; urgency=low + + * Fixed broken ARM compiling (no source update) + + -- Xavier Roche Thu, 29 Apr 2004 09:17:49 +0200 + +httrack (3.32.00-1) unstable; urgency=low + + * Updated to 3.32.00 (hotfixes) + + -- Xavier Roche Sat, 10 Apr 2004 16:03:10 +0200 + +httrack (3.31.94-1) unstable; urgency=low + + * Updated to 3.31.94-1, fixed libtest/* compilation problems + + -- Xavier Roche Sat, 10 Apr 2004 11:53:13 +0200 + +httrack (3.31.93-1) unstable; urgency=low + + * Updated to 3.31.93-1, fixed src/minizip/* DOS files + + -- Xavier Roche Wed, 7 Apr 2004 21:24:31 +0200 + +httrack (3.31.92-1) unstable; urgency=low + + * Updated to 3.31.92-1, added .so plugin examples + + -- Xavier Roche Sun, 4 Apr 2004 09:59:26 +0200 + +httrack (3.31.91-1) unstable; urgency=low + + * Updated to 3.31.91-1 + + -- Xavier Roche Sat, 3 Apr 2004 18:05:56 +0200 + +httrack (3.31.90-1) unstable; urgency=low + + * Updated to final 3.31.90-1 + + -- Xavier Roche Sun, 28 Mar 2004 18:41:47 +0200 + +httrack (3.31.1-1) unstable; urgency=low + + * Removed vcproj file + + -- Xavier Roche Sun, 14 Mar 2004 01:07:29 +0100 + +httrack (3.31.0-2) unstable; urgency=low + + * Fixed Build-Depends missing zlib1g/zlib1g-dev + + -- Xavier Roche Sat, 13 Mar 2004 22:38:53 +0100 + +httrack (3.31.0-1) unstable; urgency=low + + * Updated to final 3.31.0-1 + + -- Xavier Roche Sat, 13 Mar 2004 08:30:16 +0100 + +httrack (3.30.102-1) unstable; urgency=low + + * Updated to 3.30.102-1 + + -- Xavier Roche Sat, 21 Feb 2004 10:14:45 +0100 + +httrack (3.30.101-1) unstable; urgency=low + + * Updated to 3.30.101-1 + + -- Xavier Roche Sun, 15 Feb 2004 11:13:43 +0100 + +httrack (3.30.100-1) unstable; urgency=low + + * Updated to 3.30.100-1 + + -- Xavier Roche Sun, 8 Feb 2004 09:06:05 +0100 + +httrack (3.30.99-1) unstable; urgency=low + + * Updated to 3.30.99-1 + + -- Xavier Roche Sun, 1 Feb 2004 10:49:40 +0100 + +httrack (3.30.98-1) unstable; urgency=low + + * Updated to 3.30.98-1 + + -- Xavier Roche Sat, 24 Jan 2004 19:28:42 +0100 + +httrack (3.30.97-1) unstable; urgency=low + + * Updated to 3.30.97-1 + + -- Xavier Roche Sat, 24 Jan 2004 08:50:23 +0100 + +httrack (3.30.96-1) unstable; urgency=low + + * Updated to 3.30.96-1 + + -- Xavier Roche Mon, 19 Jan 2004 21:33:22 +0100 + +httrack (3.30.95-1) unstable; urgency=low + + * Updated to 3.30.95-1 + + -- Xavier Roche Sat, 17 Jan 2004 17:15:38 +0100 + +httrack (3.30.94-1) unstable; urgency=low + + * Updated to 3.30.94-1 + + -- Xavier Roche Thu, 8 Jan 2004 16:46:27 +0100 + +httrack (3.30.93-1) unstable; urgency=low + + * Updated to 3.30.93-1 + + -- Xavier Roche Tue, 30 Dec 2003 15:29:16 +0100 + +httrack (3.30.92-1) unstable; urgency=low + + * Updated to 3.30.92-1 + + -- Xavier Roche Sat, 27 Dec 2003 15:54:31 +0100 + +httrack (3.30.91-1) unstable; urgency=low + + * Updated to 3.30.91-1 (testing release) + + -- Xavier Roche Sat, 22 Nov 2003 12:09:30 +0100 + +httrack (3.30.01-1) unstable; urgency=low + + * Updated to 3.30.01 (final 3.30 release) + + -- Xavier Roche Sat, 11 Oct 2003 09:03:04 +0200 + +httrack (3.29.39-1) unstable; urgency=low + + * Updated to 3.29.39 + + -- Xavier Roche Sat, 4 Oct 2003 14:57:18 +0200 + +httrack (3.29.38-1) unstable; urgency=low + + * Updated to 3.29.38 + + -- Xavier Roche Sun, 21 Sep 2003 10:09:29 +0200 + +httrack (3.29.37-1) unstable; urgency=low + + * Updated to 3.29.37 + + -- Xavier Roche Sat, 13 Sep 2003 18:04:12 +0200 + +httrack (3.29.36-1) unstable; urgency=low + + * Updated to 3.29.36 + + -- Xavier Roche Sun, 7 Sep 2003 11:39:46 +0200 + +httrack (3.29.35-1) unstable; urgency=low + + * Fixed missing space in control file, updated to 3.29.35 + + -- Xavier Roche Sat, 30 Aug 2003 10:43:49 +0200 + +httrack (3.29.34-1) unstable; urgency=low + + * Updated to 3.29.34 + + -- Xavier Roche Sun, 24 Aug 2003 14:44:46 +0200 + +httrack (3.29.33-1) unstable; urgency=low + + * Updated to 3.29.33 + + -- Xavier Roche Sat, 9 Aug 2003 17:21:09 +0200 + +httrack (3.29.32-1) unstable; urgency=low + + * Updated to 3.29.32 + + -- Xavier Roche Sat, 2 Aug 2003 16:34:42 +0200 + +httrack (3.29.31-1) unstable; urgency=low + + * Updated to 3.29.31 + + -- Xavier Roche Sat, 26 Jul 2003 11:13:16 +0200 + +httrack (3.29.30-1) unstable; urgency=low + + * Updated to 3.29.30 + + -- Xavier Roche Sun, 20 Jul 2003 16:49:30 +0200 + +httrack (3.29.29-1) unstable; urgency=low + + * Updated to 3.29.29 + + -- Xavier Roche Mon, 14 Jul 2003 15:25:43 +0200 + +httrack (3.29.28-1) unstable; urgency=low + + * Updated to 3.29.28 + + -- Xavier Roche Mon, 7 Jul 2003 23:00:07 +0200 + +httrack (3.29.27-1) unstable; urgency=low + + * Updated libtool things, updated to 3.29.27 + + -- Xavier Roche Sun, 6 Jul 2003 18:18:13 +0200 + +httrack (3.29.26-1) unstable; urgency=low + + * Updated to 3.29.26 + + -- Xavier Roche Sun, 29 Jun 2003 09:52:24 +0200 + +httrack (3.29.25-1) unstable; urgency=low + + * Updated to 3.29.25 + + -- Xavier Roche Sun, 22 Jun 2003 17:48:04 +0200 + +httrack (3.29.24-1) unstable; urgency=low + + * Updated to 3.29.24 + + -- Xavier Roche Sun, 15 Jun 2003 12:01:33 +0200 + +httrack (3.29.23-1) unstable; urgency=low + + * Updated to 3.29.23 + + -- Xavier Roche Mon, 9 Jun 2003 13:04:47 +0200 + +httrack (3.29.22-2) unstable; urgency=low + + * Fixed control file (description) and desktop entry + + -- Xavier Roche Tue, 3 Jun 2003 16:05:21 +0200 + +httrack (3.29.22-1) unstable; urgency=low + + * Fixed parser problems, updated to 3.29.22 + + -- Xavier Roche Mon, 2 Jun 2003 18:59:17 +0200 + +httrack (3.29.21-1) unstable; urgency=low + + * Fixed bogus desktop entry, updated to 3.29.21 + + -- Xavier Roche Mon, 2 Jun 2003 09:03:11 +0200 + +httrack (3.29.20-2) unstable; urgency=low + + * Fixed link problems, added menu entry for browse + + -- Xavier Roche Sun, 1 Jun 2003 18:10:03 +0200 + +httrack (3.29.20-1) unstable; urgency=low + + * Updated to 3.29.20 (RC-1) + + -- Xavier Roche Sun, 1 Jun 2003 17:30:47 +0200 + +httrack (3.29.19-1) unstable; urgency=low + + * Updated to 3.29.19 + + -- Xavier Roche Sun, 1 Jun 2003 10:04:04 +0200 + +httrack (3.29.18-1) unstable; urgency=low + + * Changed desktop entry location. Updated to 3.29.18 + + -- Xavier Roche Sat, 31 May 2003 14:41:49 +0200 + +httrack (3.29.17-1) unstable; urgency=low + + * Updated to 3.29.17 + + -- Xavier Roche Sun, 25 May 2003 22:02:49 +0200 + +httrack (3.29.16-1) unstable; urgency=low + + * Updated to 3.29.16 + + -- Xavier Roche Fri, 23 May 2003 15:39:46 +0200 + +httrack (3.29.15-1) unstable; urgency=low + + * Updated to 3.29.15, fixed webhttrack script problems + + -- Xavier Roche Sun, 18 May 2003 19:33:23 +0200 + +httrack (3.29.14-1) unstable; urgency=low + + * Updated to 3.29.14 + + -- Xavier Roche Sun, 11 May 2003 15:08:45 +0200 + +httrack (3.29.13-1) unstable; urgency=low + + * Changed library version number, updated to 3.29.13 + + -- Xavier Roche Thu, 1 May 2003 16:58:42 +0200 + +httrack (3.29.12-1) unstable; urgency=low + + * Updated to 3.29.12 + + -- Xavier Roche Sun, 27 Apr 2003 15:12:48 +0200 + +httrack (3.29.11-1) unstable; urgency=low + + * Updated to 3.29.11 + + -- Xavier Roche Mon, 21 Apr 2003 23:26:50 +0200 + +httrack (3.29.10-1) unstable; urgency=low + + * Updated to 3.29.10 + + -- Xavier Roche Fri, 18 Apr 2003 11:25:40 +0200 + +httrack (3.29.09-1) unstable; urgency=low + + * Updated to 3.29.09 + + -- Xavier Roche Thu, 17 Apr 2003 23:24:44 +0200 + +httrack (3.29.08-1) unstable; urgency=low + + * Updated to 3.29.08 + + -- Xavier Roche Sun, 13 Apr 2003 19:29:37 +0200 + +httrack (3.29.07-1) unstable; urgency=low + + * Updated to 3.29.07, splitted swf module + + -- Xavier Roche Mon, 7 Apr 2003 11:58:35 +0200 + +httrack (3.29.06-2) unstable; urgency=low + + * Changed swf module location + + -- Xavier Roche Mon, 7 Apr 2003 09:01:51 +0200 + +httrack (3.29.06-1) unstable; urgency=low + + * Updated to 3.29.06 + + -- Xavier Roche Sun, 30 Mar 2003 11:25:44 +0200 + +httrack (3.29.05-2) unstable; urgency=low + + * Fixed control, fixed webhttrack script + + -- Xavier Roche Sat, 29 Mar 2003 11:28:06 +0100 + +httrack (3.29.05-1) unstable; urgency=low + + * Updated to 3.29.05 + + -- Xavier Roche Sun, 23 Mar 2003 16:33:01 +0100 + +httrack (3.29.04-1) unstable; urgency=low + + * Updated to 3.29.04 + + -- Xavier Roche Sat, 22 Mar 2003 16:20:18 +0100 + +httrack (3.29.03-1) unstable; urgency=low + + * Updated to 3.29.03 + + -- Xavier Roche Thu, 20 Mar 2003 21:29:45 +0100 + +httrack (3.29.02-2) unstable; urgency=low + + * Fixed htsserver in /usr/lib/httrack + + -- Xavier Roche Thu, 20 Mar 2003 20:19:01 +0100 + +httrack (3.29.02-1) unstable; urgency=low + + * Updated to 3.29.02, fixed misplaced xpm + + -- Xavier Roche Thu, 20 Mar 2003 17:38:30 +0100 + +httrack (3.29.01-1) unstable; urgency=low + + * Updated to 3.29.01 + + -- Xavier Roche Sun, 9 Mar 2003 16:32:58 +0100 + +httrack (3.23.20-1) unstable; urgency=low + + * Updated to 3.23.20, modified control (directories), added doc-base + + -- Xavier Roche Sat, 8 Mar 2003 10:41:05 +0100 + +httrack (3.23.11-1) unstable; urgency=low + + * Updated to 3.23.11 + + -- Xavier Roche Sat, 22 Feb 2003 15:53:11 +0100 + +httrack (3.23.10-1) unstable; urgency=low + + * Updated to 3.23.10 + + -- Xavier Roche Wed, 29 Jan 2003 19:00:10 +0100 + +httrack (3.23.9-1) unstable; urgency=low + + * Updated to 3.23.9 + + -- Xavier Roche Thu, 23 Jan 2003 20:22:08 +0100 + +httrack (3.23.8-1) unstable; urgency=low + + * Updated to 3.23.8 + + -- Xavier Roche Fri, 17 Jan 2003 18:04:06 +0100 + +httrack (3.23.7-1) unstable; urgency=low + + * Updated to 3.23.7, removed gcc-3.2 changes + + -- Xavier Roche Sun, 12 Jan 2003 20:16:31 +0100 + +httrack (3.23.6-2) unstable; urgency=low + + * Modified dh_installchangelogs + + -- Xavier Roche Sun, 29 Dec 2002 20:41:37 +0100 + +httrack (3.23.6-1) unstable; urgency=low + + * Updated to 3.23.6 + + -- Xavier Roche Sun, 29 Dec 2002 19:45:22 +0100 + +httrack (3.23.4-1) unstable; urgency=low + + * Modified debian/rules for mips and mipsel (less optims) + + -- Xavier Roche Wed, 18 Dec 2002 19:19:00 +0100 + +httrack (3.23.3-2) unstable; urgency=low + + * Modified debian/rules for mips and mipsel (gcc-3.2) + + -- Xavier Roche Tue, 17 Dec 2002 22:56:33 +0100 + +httrack (3.23.3-1) unstable; urgency=low + + * httpmirror() more splitted for mips compiling problems + + -- Xavier Roche Fri, 13 Dec 2002 21:21:52 +0100 + +httrack (3.23.2-1) unstable; urgency=low + + * htscore.c splitted and now modular for mips compiling problems + + -- Xavier Roche Sat, 7 Dec 2002 12:08:15 +0100 + +httrack (3.22.3-5) unstable; urgency=low + + * Again modified debian/rules for s390, mips and mipsel (backend optimization) + + -- Xavier Roche Wed, 4 Dec 2002 21:25:11 +0100 + +httrack (3.22.3-4) unstable; urgency=low + + * Modified debian/rules for s390, mips and mipsel + + -- Xavier Roche Wed, 4 Dec 2002 07:48:18 +0100 + +httrack (3.22.3-3) unstable; urgency=low + + * Changed debian/rules for s390, mips and mipsel + + -- Xavier Roche Tue, 3 Dec 2002 22:00:10 +0100 + +httrack (3.22.3-2) unstable; urgency=low + + * Changed copyright file for openSSL + + -- Xavier Roche Sun, 1 Dec 2002 18:35:52 +0100 + +httrack (3.22-1) unstable; urgency=low + + * Initial Release. + + -- Xavier Roche Fri, 27 Sep 2002 16:42:25 +0200 +