Codebase list magicrescue / aaa0ee6
debian directory - first commit. Joao Eriberto Mota Filho 9 years ago
9 changed file(s) with 138 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 magicrescue (1.1.4-2) unstable; urgency=low
1
2 * Do not install ELF binaries in /usr/share/ anymore.
3
4 -- Torsten Werner <twerner@debian.org> Fri, 6 Oct 2006 00:24:16 +0200
5
6 magicrescue (1.1.4-1) unstable; urgency=low
7
8 [ Varun Hiremath ]
9 * Initial release (Closes: #384637)
10 * debian/copyright: added more copyright owners
11
12 [ Torsten Werner ]
13 * add myself to Uploaders in debian/control
14
15 -- Torsten Werner <twerner@debian.org> Fri, 1 Sep 2006 00:06:25 +0530
16
0 Source: magicrescue
1 Section: utils
2 Priority: optional
3 Maintainer: Varun Hiremath <varunhiremath@gmail.com>
4 Uploaders: Torsten Werner <twerner@debian.org>
5 Build-Depends: debhelper (>= 5), cdbs
6 Standards-Version: 3.7.2
7
8 Package: magicrescue
9 Architecture: any
10 Depends: ${shlibs:Depends}, ${misc:Depends}
11 Description: recovers files by looking for magic bytes
12 Magic Rescue scans a block device for file types it knows how to recover
13 and calls an external program to extract them. It looks at "magic bytes"
14 in file contents, so it can be used both as an undelete utility and for
15 recovering a corrupted drive or partition. As long as the file data is
16 there, it will find it.
17 .
18 Homepage: http://jbj.rapanden.dk/magicrescue/
0 This package was debianized by Varun Hiremath <varunhiremath@gmail.com> on
1 Fri, 25 Aug 2006 23:59:00 +0530.
2
3 It was downloaded from <http://jbj.rapanden.dk/magicrescue/>
4
5 Upstream Authors:
6
7 Jonas Jensen <jbj@knef.dk>,
8 Martin Schwartz
9
10 Copyright:
11
12 (C) 2004-2006 Jonas Jensen <jbj@knef.dk>,
13 (C) 1996,1997 Martin Schwartz
14
15 License:
16
17 This program is free software; you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
19 the Free Software Foundation; either version 2 of the License, or
20 (at your option) any later version.
21
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
26
27 The Debian packaging is (C) 2006, Varun Hiremath <varunhiremath@gmail.com> and
28 is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
0 NEWS
1 README
0 /usr/lib/magicrescue/tools /usr/share/magicrescue/tools
0 doc/dupemap.1
1 doc/magicrescue.1
2 doc/magicsort.1
0 Index: magicrescue-1.1.4/Makefile.in
1 ===================================================================
2 --- magicrescue-1.1.4.orig/Makefile.in 2004-08-15 00:36:37.000000000 +0200
3 +++ magicrescue-1.1.4/Makefile.in 2006-10-06 00:27:47.000000000 +0200
4 @@ -57,34 +57,26 @@
5 maintainer-clean: distclean docs-clean
6
7 install: all
8 - [ -d $(PREFIX) ]
9 + mkdir -p $(DESTDIR)/usr/lib/magicrescue/tools \
10 + $(DESTDIR)/usr/share/magicrescue/recipes \
11 + $(DESTDIR)/usr/bin
12
13 - mkdir -p $(PREFIX)/share/magicrescue/tools \
14 - $(PREFIX)/share/magicrescue/recipes \
15 - $(PREFIX)/man/man1 \
16 - $(PREFIX)/bin
17 -
18 - cp magicrescue$(EXE) dupemap$(EXE) magicsort $(PREFIX)/bin/
19 - cp recipes/* $(PREFIX)/share/magicrescue/recipes/
20 - cp $(DOCS) $(PREFIX)/man/man1
21 + cp magicrescue$(EXE) dupemap$(EXE) magicsort $(DESTDIR)/usr/bin/
22 + cp recipes/* $(DESTDIR)/usr/share/magicrescue/recipes/
23
24 for f in tools/*; do \
25 if [ -x "$$f" ]; then \
26 - cp -f "$$f" $(PREFIX)/share/magicrescue/tools/; \
27 + cp -f "$$f" $(DESTDIR)/usr/lib/magicrescue/tools/; \
28 fi; \
29 done
30
31 uninstall:
32 - [ -d $(PREFIX) ]
33 - rm -f $(PREFIX)/bin/magicrescue$(EXE)
34 - rm -f $(PREFIX)/bin/dupemap$(EXE)
35 - rm -f $(PREFIX)/bin/magicsort
36 - for f in $(DOCS); do \
37 - rm -f "$(PREFIX)/man/man1/`basename $$f`"; \
38 - done
39 - rm -rf $(PREFIX)/share/magicrescue/tools
40 - rm -rf $(PREFIX)/share/magicrescue/recipes
41 - -rmdir $(PREFIX)/share/magicrescue
42 + rm -f $(DESTDIR)/usr/bin/magicrescue$(EXE)
43 + rm -f $(DESTDIR)/usr/bin/dupemap$(EXE)
44 + rm -f $(DESTDIR)/usr/bin/magicsort
45 + rm -rf $(DESTDIR)/usr/share/magicrescue/tools
46 + rm -rf $(DESTDIR)/usr/share/magicrescue/recipes
47 + -rmdir $(DESTDIR)/usr/share/magicrescue
48
49 .PHONY: all clean distclean docs-clean maintainer-clean install uninstall docs
50
51 Index: magicrescue-1.1.4/tools/laola.pl
52 ===================================================================
53 --- magicrescue-1.1.4.orig/tools/laola.pl 2004-04-30 19:47:27.000000000 +0200
54 +++ magicrescue-1.1.4/tools/laola.pl 2006-10-06 00:26:35.000000000 +0200
55 @@ -1,4 +1,4 @@
56 -#
57 +#!/usr/bin/env perl
58 # $Id: laola.pl,v 0.5.1.5 1997/07/01 00:06:42 schwartz Rel $
59 #
60 # laola.pl, LAOLA filesystem.
0 #!/usr/bin/make -f
1
2 include /usr/share/cdbs/1/rules/debhelper.mk
3 include /usr/share/cdbs/1/class/autotools.mk
4 include /usr/share/cdbs/1/rules/simple-patchsys.mk