[Forensics-changes] [SCM] debian-daniel/dc3dd branch, debian-sid, updated. 35e7e2da65daa4574996ee6a82f18e76ac0165ef

Christophe Monniez christophe.monniez at fccu.be
Tue Feb 12 13:40:22 UTC 2008


The following commit has been merged in the debian-sid branch:
commit 35e7e2da65daa4574996ee6a82f18e76ac0165ef
Author: Christophe Monniez <christophe.monniez at fccu.be>
Date:   Tue Feb 12 14:48:06 2008 +0100

    Initial debianization

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a4130b0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+dc3dd-beta (6.9.91-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Christophe Monniez <christophe.monniez at fccu.be>  Thu, 24 Jan 2008 12:05:28 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..1e8b314
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+6
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7f17bbc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: dc3dd-beta
+Section: utils
+Priority: optional
+Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org> 
+Uploaders: Christophe Monniez <christophe.monniez at fccu.be>
+Build-Depends: debhelper (>= 6), autotools-dev
+Standards-Version: 3.7.3
+Homepage: http://dc3dd.sourceforge.net/
+Vcs-Git: git://git.debian.org/git/forensics/dc3dd.git
+Vcs-Browser: http://git.debian.org/?p=forensics/dc3dd.git
+
+Package: dc3dd
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: A patched version of GNU dd with forensic features
+ dc3dd is a patched version of GNU dd with added features
+ for computer forensics.
+ It was developed at the DoD Cyber Crime Center by Jesse Kornblum. 
+ support :
+  * on the fly hashing (md5,sha-1,sha-256 and sha-512)
+  * possibility to write errors to a file
+  * group errors in the error log
+  * pattern wiping
+  * progress report
+  * possiblity to split output
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..95ba58b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,48 @@
+Author: Jesse Kornblum
+Download: http://dc3dd.sourceforge.net/
+
+Files: *
+Copyright: 
+ These improvements were made (and are now maintained) by the DoD Cyber Crime Center, an agency of the United States Government.
+ By law, works of the United States Government are not eligible for copyright protection (17 USC 105).
+ In accordance with the the GPL FAQ, the improvements made by the DoD Cyber Crime Center are public domain and the project as a whole remains licensed under the GPL.
+License: GPL-3
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+ On Debian systems, the complete text of the GNU General Public License version 3
+ can be found in /usr/share/common-licenses/GPL-3 file.
+
+Files: debian/*
+Copyright:
+ (C) 2008 Christophe Monniez <christophe.monniez at fccu.be>
+ (C) 2008 Daniel Baumann <daniel at debian.org>
+License: GPL2+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+ On Debian systems, the complete text of the GNU General Public License
+ can be found in /usr/share/common-licenses/GPL-2 file.
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..5502ed8
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,3 @@
+NEWS
+README
+TODO
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..03cbbe1
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,64 @@
+#!/usr/bin/make -f
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	[ ! -f Makefile ] || $(MAKE) distclean
+	rm -f config.sub config.guess
+
+	dh_clean 
+
+config.status: configure
+	dh_testdir
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	$(MAKE)
+
+	touch $@
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	$(MAKE) DESTDIR=$(CURDIR)/debian/dc3dd install
+
+binary: binary-indep binary-arch
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installexamples
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-indep: build install
+
+.PHONY: clean build binary binary-arch binary-indep install 

-- 
debian-daniel/dc3dd



More information about the forensics-changes mailing list