diff options
Diffstat (limited to 'graphics/cthumb/files')
-rw-r--r-- | graphics/cthumb/files/patch-Makefile.in | 30 | ||||
-rw-r--r-- | graphics/cthumb/files/patch-configure.in | 11 | ||||
-rw-r--r-- | graphics/cthumb/files/patch-cthumb.in | 22 |
3 files changed, 0 insertions, 63 deletions
diff --git a/graphics/cthumb/files/patch-Makefile.in b/graphics/cthumb/files/patch-Makefile.in deleted file mode 100644 index 98180b0794f1..000000000000 --- a/graphics/cthumb/files/patch-Makefile.in +++ /dev/null @@ -1,30 +0,0 @@ ---- Makefile.in.orig 2002-08-13 17:24:05 UTC -+++ Makefile.in -@@ -13,13 +13,7 @@ bindir=@bindir@ - mandir=@mandir@ - themedir=@themedir@ - --all: cthumb cthumb.spec -- --cthumb.spec: cthumb.spec.in Makefile VERSION -- ./configure --prefix=$(prefix) -- --cthumb.1: cthumb.1.in configure -- ./configure --prefix=$(prefix) -+all: cthumb - - install: cthumb - install -d $(bindir) $(prefix)/share $(themedir) $(mandir)/man1 -@@ -27,12 +21,6 @@ install: cthumb - install cthumb.1 $(mandir)/man1 - $(CPR) themes/* $(themedir) - --Makefile: Makefile.in VERSION configure -- ./configure --prefix=/usr -- --cthumb: cthumb.in VERSION configure -- ./configure --prefix=/usr -- - dist: cthumb.spec cthumb - # make prefix=$(shell pwd)/$(DD) install - install -d $(DD) diff --git a/graphics/cthumb/files/patch-configure.in b/graphics/cthumb/files/patch-configure.in deleted file mode 100644 index 4bb7b7c72ce6..000000000000 --- a/graphics/cthumb/files/patch-configure.in +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.in.orig 2002-08-13 17:24:05 UTC -+++ configure.in -@@ -8,7 +8,7 @@ AC_CANONICAL_HOST - dnl Checks for programs. - AC_PATH_PROGS(perl_path, perl5 perl, no) - AC_PROG_INSTALL --AC_CHECK_PROG(CPR, rsync, rsync -avqC, cp -r) -+AC_CHECK_PROG(CPR, cp, cp -Rf) - AC_SUBST(CPR) - - dnl Checks for libraries. diff --git a/graphics/cthumb/files/patch-cthumb.in b/graphics/cthumb/files/patch-cthumb.in deleted file mode 100644 index ff139f174875..000000000000 --- a/graphics/cthumb/files/patch-cthumb.in +++ /dev/null @@ -1,22 +0,0 @@ ---- cthumb.in.orig 2002-08-13 17:24:05 UTC -+++ cthumb.in -@@ -476,6 +476,7 @@ sub initial_checks { - if ($CheckThumbnails) { - eval "require Image::Size"; - if (defined $Image::Size::VERSION) { -+ $Image::Size::VERSION = $Image::Size::VERSION; - $HaveImageSizePerlModule=1; - } - } -@@ -579,7 +580,10 @@ sub do_file { - if ($NoMainIndex) { - unlink($indextmp); - } else { -- if (system ("diff $indextmp $MainIndexName >/dev/null 2>/dev/null")) { -+ local $ENV{SHELL}='/bin/sh'; -+ system ("diff $indextmp $MainIndexName >/dev/null 2>/dev/null"); -+ my $difret = $? >> 8; -+ if ($difret != 0) { - print "Index for $descfname in: $MainIndexName\n"; - my $cmd = "mv $indextmp $MainIndexName"; - if (system($cmd)) { print "cthumb warning: command '$cmd' failed: $!\n"; } |