debian/0000755000000000000000000000000011747011524007170 5ustar debian/compat0000644000000000000000000000000211653056526010375 0ustar 7 debian/rules0000755000000000000000000000145111653066206010254 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ --with-quilt override_dh_auto_install: mkdir -p debian/imageindex/usr/share/man/man1 mkdir -p debian/imageindex/usr/bin pod2man imageindex.pod > imageindex.1 $(MAKE) install PREFIX=$(CURDIR)/debian/imageindex/usr mkdir -p debian/imageindex/usr/share/doc/imageindex/tools mv debian/imageindex/usr/bin/autocaption debian/imageindex/usr/share/doc/imageindex/tools debian/source/0000755000000000000000000000000011653056526010477 5ustar debian/source/format0000644000000000000000000000001411653056526011705 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000364511747011524011052 0ustar imageindex (1.1-2.1) unstable; urgency=low * Non-maintainer upload. * Depend on libperl4-corelibs-perl (Closes: #659424) -- Dominic Hargreaves Sat, 28 Apr 2012 16:55:33 +0100 imageindex (1.1-2) unstable; urgency=low * 4 Years after last upload, re-package with new V3 base and use quilt. * Add Patch for correct processing of image files with multiple dots (Closes: #492934) * Add Patch for fixing HTML SCRIPT Tag (Closes: #474112) * Add patch for making default charset configurable (Closes: #322552) -- Michael Ablassmeier Sat, 29 Oct 2011 22:20:06 +0200 imageindex (1.1-1) unstable; urgency=low * New upstream release * Add suggest on mplayer, imageindex can now deal with video files aswell, add note to Description * Conforms with latest Standards Version 3.7.2 -- Michael Ablassmeier Thu, 05 Apr 2007 09:56:06 +0200 imageindex (1.0.9-2) unstable; urgency=low * Move debhelper/cdbs from B-D-I to B-D (Policy 7.6) * New Maintainer E-Mail. -- Michael Ablassmeier Mon, 24 Apr 2006 16:15:31 +0200 imageindex (1.0.9-1) unstable; urgency=low * New upstream release * Update debian/copyright (FSF address) -- Michael Ablassmeier Tue, 20 Sep 2005 11:02:05 +0200 imageindex (1.0.8-1) unstable; urgency=low * New upstream release * Bump up standards version. * Depend on at least imagemagick 6:6.2.3.0-2 (otherwise montage generation fails due to changed options (-borderwith -> -border)) -- Michael Ablassmeier Tue, 5 Jul 2005 22:46:22 +0200 imageindex (1.0.7-2) unstable; urgency=medium * Install tools into their proper place (Closes: #283422) -- Michael Ablassmeier Mon, 29 Nov 2004 19:07:15 +0100 imageindex (1.0.7-1) unstable; urgency=low * Initial Release. (Closes: #274215) -- Michael Ablassmeier Thu, 30 Sep 2004 13:03:56 +0200 debian/patches/0000755000000000000000000000000011653066211010616 5ustar debian/patches/series0000644000000000000000000000015411653066211012033 0ustar fix-dotfiles.patch make-charset-configurable.patch make-charset-configurable-pod.patch fix-javascript.patch debian/patches/make-charset-configurable.patch0000644000000000000000000000505211653064020016637 0ustar Description: Make default charset used configurable, set to UTF-8, see: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=322552 --- a/imageindex +++ b/imageindex @@ -290,6 +290,10 @@ $thumbxmetatag = 'ThumbnailX'; $thumbymetatag = 'ThumbnailY'; +# which charset to use +#$file_charset = 'ISO-8859-1'; +$file_charset = 'UTF-8'; + # Any of the above can be overridden in an rc file in the user's home dir $rcfile = "$ENV{'HOME'}/.imageindexrc"; @@ -1430,7 +1434,7 @@ print "\n"; $verstring = &versionstring(); printf ("\n", $verstring); - printf ("\n"); + printf ("\n"); print "$current_titletext - $filename\n"; print "\n"; print "\n\n"; @@ -2276,7 +2280,7 @@ print "\n"; $verstring = &versionstring(); printf ("\n", $verstring); - printf ("\n"); + printf ("\n"); if (defined ($write_meta_tag{$titlemetatag})) { print "\n"; } @@ -2628,7 +2632,7 @@ print "\n"; $verstring = &versionstring(); printf ("\n", $verstring); - printf ("\n"); + printf ("\n"); print ""; print "$current_titletext\n"; print "\n"; @@ -2658,7 +2662,7 @@ print "\n"; $verstring = &versionstring(); printf ("\n", $verstring); - printf ("\n"); + printf ("\n"); print "\n"; print "$current_titletext\n"; print "\n\n"; debian/patches/fix-dotfiles.patch0000644000000000000000000000253411653063500014236 0ustar Description: Fix Processing of dotfiles, see: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=492934 --- a/imageindex +++ b/imageindex @@ -611,10 +611,10 @@ if (defined($prev)) { my ($name,$path,$suffix); - ($name,$path,$suffix) = fileparse($prev,'\.\S+'); + ($name,$path,$suffix) = fileparse($prev,'\.[^.]+'); $back{$pathname} = "$name.html"; - ($name,$path,$suffix) = fileparse($pathname,'\.\S+'); + ($name,$path,$suffix) = fileparse($pathname,'\.[^.]+'); $forward{$prev} = "$name.html"; } $prev = $pathname; @@ -1848,7 +1848,7 @@ $info{$pathname}{'format'} = $info{$pathname}{'video_format'}; - my ($name,$path,$suffix) = fileparse($filename,'\.\S+'); + my ($name,$path,$suffix) = fileparse($filename,'\.[^.]+'); if (-e "${name}.txt") { my $text; @@ -1942,7 +1942,7 @@ $info{$pathname}{'comment'} = $image->Get('comment'); - my ($name,$path,$suffix) = fileparse($filename,'\.\S+'); + my ($name,$path,$suffix) = fileparse($filename,'\.[^.]+'); if ($info{$pathname}{'format'} =~ /JFIF/i) { @@ -2783,7 +2783,7 @@ $ctime,$blksize,$blocks) = stat($file); my $posix_mtime = POSIX::strftime ("%Y%m%d%H%M.%S",localtime($mtime)); - my ($name,$path,$suffix) = fileparse($file,'\.\S+'); + my ($name,$path,$suffix) = fileparse($file,'\.[^.]+'); my $thumb; my $medium; debian/patches/fix-javascript.patch0000644000000000000000000000065311653064317014602 0ustar Description: fix SCRIPT Tag, see: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=322552 --- a/imageindex +++ b/imageindex @@ -2325,7 +2325,7 @@ print "\n"; # Break out of frames - print "