Codebase list magicrescue / 0448cdf
Imported Upstream version 1.1.8 Joao Eriberto Mota Filho 9 years ago
8 changed file(s) with 53 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
00 For less detailed change information, see the NEWS file
11
2 ------------------------------------------------------------------------
3 r824 | jbj | 2009-11-03 10:00:58 +0100 (Tue, 03 Nov 2009) | 1 line
4 Changed paths:
5 M /magicrescue/trunk/new_NEWS
6 A /magicrescue/trunk/recipes/mbox
7 A /magicrescue/trunk/recipes/mbox-mozilla-inbox
8 A /magicrescue/trunk/recipes/mbox-mozilla-sent
9
10 New mbox recipes
11 ------------------------------------------------------------------------
12 r822 | jbj | 2009-10-01 21:13:49 +0200 (Thu, 01 Oct 2009) | 1 line
13 Changed paths:
14 M /magicrescue/trunk/new_NEWS
15 M /magicrescue/trunk/src/magicrescue.c
16
17 It appears that there exists a program named safecat. Move tools dir to beginning of path so our safecat takes precedence.
18 ------------------------------------------------------------------------
19 r821 | jbj | 2009-10-01 14:53:12 +0200 (Thu, 01 Oct 2009) | 1 line
20 Changed paths:
21 M /magicrescue/trunk/config.d/50getrlimit
22 M /magicrescue/trunk/new_NEWS
23
24 Raise maximum virtual memory usage for helper programs from 50MB to 1024MB.
25 ------------------------------------------------------------------------
26 r820 | jbj | 2009-09-04 22:22:31 +0200 (Fri, 04 Sep 2009) | 1 line
27 Changed paths:
28 M /magicrescue/trunk/recipes/zip
29
30 fix a small oops in release
31 ------------------------------------------------------------------------
32 r818 | jbj | 2009-09-04 19:48:26 +0200 (Fri, 04 Sep 2009) | 1 line
33 Changed paths:
34 M /magicrescue/trunk/NEWS
35 M /magicrescue/trunk/new_NEWS
36
37 Release 1.1.7
238 ------------------------------------------------------------------------
339 r817 | jbj | 2009-09-04 19:44:36 +0200 (Fri, 04 Sep 2009) | 1 line
440 Changed paths:
0 Version 1.1.8: Wed Nov 4 16:12:53 CET 2009
1 - Add mbox recipes, contributed by Jeff Bucove.
2 - Raise maximum virtual memory usage for helper programs from 50MB to 1024MB.
3 It turns out that mencoder needs around 150MB on 64-bit systems.
4 - Place tools directory first in path to avoid name clashes with other
5 programs.
6
07 Version 1.1.7: Fri Sep 4 19:48:14 CEST 2009
18 - Update zip recipe to work with latest version of Zip and latest
29 OpenOffice.org file formats (thanks to Fernando)
99 }
1010 EOF
1111 if conftest_define HAVE_GETRLIMIT "Checking for getrlimit..."; then
12 echo "#define MAX_MEMORY 50*1024*1024" >> config.h
12 echo "#define MAX_MEMORY 1024*1024*1024" >> config.h
1313 fi
123123 .\" ========================================================================
124124 .\"
125125 .IX Title "DUPEMAP 1"
126 .TH DUPEMAP 1 "2008-06-26" "1.1.7" "Magic Rescue"
126 .TH DUPEMAP 1 "2008-06-26" "1.1.8" "Magic Rescue"
127127 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
128128 .\" way too many mistakes in technical documents.
129129 .if n .ad l
123123 .\" ========================================================================
124124 .\"
125125 .IX Title "MAGICRESCUE 1"
126 .TH MAGICRESCUE 1 "2008-10-29" "1.1.7" "Magic Rescue"
126 .TH MAGICRESCUE 1 "2008-10-29" "1.1.8" "Magic Rescue"
127127 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
128128 .\" way too many mistakes in technical documents.
129129 .if n .ad l
123123 .\" ========================================================================
124124 .\"
125125 .IX Title "MAGICSORT 1"
126 .TH MAGICSORT 1 "2008-06-26" "1.1.7" "Magic Rescue"
126 .TH MAGICSORT 1 "2008-06-26" "1.1.8" "Magic Rescue"
127127 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
128128 .\" way too many mistakes in technical documents.
129129 .if n .ad l
1515 # This command takes a 50MB chunk of the file and tries to repair it. If the
1616 # zip files you are looking for are less than 50MB, you can lower the value of
1717 # the count= parameter for performance.
18 command dd bs=1024k count=10 of="$1.tmp" 2>/dev/null; zip -qF "$1.tmp" --out "$1" ; rm -f "$1.tmp"
18 command dd bs=1024k count=50 of="$1.tmp" 2>/dev/null; zip -qF "$1.tmp" --out "$1" ; rm -f "$1.tmp"
1919
2020 # Try to guess if it's a JAR archive or an OpenOffice.org file, and rename
2121 # accordingly
551551
552552 buf = malloc(bufsize);
553553
554 sprintf(buf, "PATH=%s:%s", getenv("PATH"), "tools");
554 sprintf(buf, "PATH=%s%s%s:%s", "tools",
555555 #ifdef COMMAND_PATH
556 sprintf(buf + strlen(buf), ":%s", COMMAND_PATH);
556 ":", COMMAND_PATH,
557 #else
558 "", "",
557559 #endif
560 getenv("PATH"));
558561 putenv(strdup(buf));
559562
560563 while ((c = getopt(argc, argv, "b:d:r:I:M:O:")) >= 0) {