--- rdd-2.0.7.orig/src/Makefile.am +++ rdd-2.0.7/src/Makefile.am @@ -5,7 +5,7 @@ else AM_CFLAGS = endif -AM_LDFLAGS = -static +AM_LDFLAGS = -dynamic bin_PROGRAMS = rdd-copy rdd-verify --- rdd-2.0.7.orig/src/writer.h +++ rdd-2.0.7/src/writer.h @@ -228,4 +228,6 @@ */ int rdd_writer_close(RDD_WRITER *w); +RDD_WRITER *rdd_test_get_writer(int argc, char **argv); + #endif /* __writer_h__ */ --- rdd-2.0.7.orig/src/Makefile.in +++ rdd-2.0.7/src/Makefile.in @@ -180,7 +180,7 @@ target_alias = @target_alias@ @GCC_COMPILER_FALSE@AM_CFLAGS = @GCC_COMPILER_TRUE@AM_CFLAGS = -pedantic -Wno-long-long -g3 -Wall -Wmissing-prototypes -AM_LDFLAGS = -static +AM_LDFLAGS = -dynamic noinst_LIBRARIES = librdd.a librdd_a_SOURCES = rdd.h rsysint.h \ strerror.c \ --- rdd-2.0.7.orig/debian/plot-entropy.1 +++ rdd-2.0.7/debian/plot-entropy.1 @@ -0,0 +1,39 @@ +.TH plot-entropy "1" "19 November 2006" "rdd 2.0" +.SH NAME +plot-entropy \- part of the rdd toolkit +.SH SYNOPSIS +.B plot-entropy <\fIOPTION\fR> infile [lo hi] + +.SH DESCRIPTION +.\" Add any additional description here +.PP + +.SH OPTIONS +.TP +\fB\-o \fR +output file. + +.TP +\fB\-t \fR +title. + +.TP +\fB\-b \fR +block size. + +.TP +\fB\-x \fR +exclude file. + + +.SH BUG REPORTS +Report bugs to . +.SH ACKNOWLEDGEMENTS +Many thanks to all who reported bugs and successes, and who +suggested improvements. +You know who you are. +.SH COPYRIGHT +Copyright \(co 2002-2003 Netherlands Forensic Institute +.br +This software comes with NO warranty; +not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --- rdd-2.0.7.orig/debian/copyright +++ rdd-2.0.7/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Danny van der Meeren on +Sun, 19 Nov 2006 19:25:40 +0100. + +It was downloaded from http://sourceforge.net/projects/rdd/ + +Upstream Author: NFI the Netherlands Forensic Intitute + +Copyright: (c) 2002-2006 Netherlands Forensic Institute + +License: BSD, see `/usr/share/common-licenses/BSD' + +The Debian packaging is (C) 2006, Danny van der Meeren and +is licensed under the BSD, see `/usr/share/common-licenses/BSD'. --- rdd-2.0.7.orig/debian/compat +++ rdd-2.0.7/debian/compat @@ -0,0 +1 @@ +5 --- rdd-2.0.7.orig/debian/control +++ rdd-2.0.7/debian/control @@ -0,0 +1,15 @@ +Source: rdd +Section: utils +Priority: optional +Maintainer: Danny van der Meeren +Build-Depends: debhelper (>= 5), autotools-dev, libssl-dev, zlib1g-dev +Standards-Version: 3.7.2 + +Package: rdd +Architecture: any +Depends: ${shlibs:Depends}, python +Description: a forensic copy program + A forensic copy program developed at and used by + the Netherlands Forensic Institute (NFI). Unlike most copy programs, rdd is + robust with respect to read errors, which is an important property in a + forensic operating environment. --- rdd-2.0.7.orig/debian/plot-md5.1 +++ rdd-2.0.7/debian/plot-md5.1 @@ -0,0 +1,31 @@ +.TH plot-md5 "1" "19 November 2006" "rdd 2.0" +.SH NAME +plot-md5 \- part of the rdd toolkit +.SH SYNOPSIS +.B plot-md5 <\fIOPTION\fR> infile + +.SH DESCRIPTION +.\" Add any additional description here +.PP + +.SH OPTIONS +.TP +\fB\-o \fR +output file. + +.TP +\fB\-t \fR +title. + + +.SH BUG REPORTS +Report bugs to . +.SH ACKNOWLEDGEMENTS +Many thanks to all who reported bugs and successes, and who +suggested improvements. +You know who you are. +.SH COPYRIGHT +Copyright \(co 2002-2003 Netherlands Forensic Institute +.br +This software comes with NO warranty; +not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --- rdd-2.0.7.orig/debian/changelog +++ rdd-2.0.7/debian/changelog @@ -0,0 +1,24 @@ +rdd (2.0.7-2build2) precise; urgency=low + + * No-change rebuild to drop spurious libsfgcc1 dependency on armhf. + + -- Adam Conrad Fri, 02 Dec 2011 21:17:56 -0700 + +rdd (2.0.7-2build1) oneiric; urgency=low + + * Rebuild for OpenSSL 1.0.0. + + -- Colin Watson Tue, 17 May 2011 11:45:29 +0100 + +rdd (2.0.7-2) unstable; urgency=low + + * Added patch from Dann Frazier to fix missing prototype + (Closes: #400125) + + -- Danny van der Meeren Fri, 24 Nov 2006 21:16:33 +0100 + +rdd (2.0.7-1) unstable; urgency=low + + * Initial release (Closes: #399472, #399449) + + -- Danny van der Meeren Sun, 19 Nov 2006 19:25:40 +0100 --- rdd-2.0.7.orig/debian/rules +++ rdd-2.0.7/debian/rules @@ -0,0 +1,42 @@ +#!/usr/bin/make -f + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --mandir=\$${prefix}/share/man\ + --enable-raw-device + $(MAKE) + touch $@ + +install: build + dh_clean -k + $(MAKE) install prefix=$(CURDIR)/debian/rdd/usr + +clean: + rm -f build-stamp + dh_clean + -$(MAKE) distclean + +binary-indep: + +binary-arch binary: build install + dh_install -a + dh_installchangelogs -a + dh_installdocs -a + dh_installman -a debian/plot-entropy.1 debian/plot-md5.1 debian/rddi.1 + dh_compress -a + dh_fixperms -a + dh_strip -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +.PHONY: build binary binary-arch binary-indep clean install --- rdd-2.0.7.orig/debian/rddi.1 +++ rdd-2.0.7/debian/rddi.1 @@ -0,0 +1,28 @@ +.TH rddi "1" "19 November 2006" "rdd 2.0" +.SH NAME +rddi \- interactive shell, part of the rdd toolkit +.SH SYNOPSIS +.B rddi + +.SH DESCRIPTION +.PP +This is the rdd command-line wizard. It will help you construct a +sensible rdd command line. The wizard will ask a series of questions +and will eventually print a command line that is based on your answers. +Optionally, the wizard will also run this command. +.PP + +.SH OPTIONS +No arguments can be given + +.SH BUG REPORTS +Report bugs to . +.SH ACKNOWLEDGEMENTS +Many thanks to all who reported bugs and successes, and who +suggested improvements. +You know who you are. +.SH COPYRIGHT +Copyright \(co 2002-2003 Netherlands Forensic Institute +.br +This software comes with NO warranty; +not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --- rdd-2.0.7.orig/debian/docs +++ rdd-2.0.7/debian/docs @@ -0,0 +1 @@ +README