[Forensics-changes] [SCM] debian-forensics/scrounge-ntfs branch, debian, updated. e3b7a9f97ae966f69f88aab2eccf682f6f25cb6b

Daniel Baumann daniel at debian.org
Sun Feb 17 06:11:26 UTC 2008


The following commit has been merged in the debian branch:
commit e3b7a9f97ae966f69f88aab2eccf682f6f25cb6b
Author: Juan Angulo Moreno <juan at apuntale.com>
Date:   Sun Feb 17 07:07:55 2008 +0100

    Initial release.

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9b5daa5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+scrounge-ntfs (0.9-1) unstable; urgency=low
+
+  * Initial release (Closes: #466163).
+
+ -- Juan Angulo Moreno <juan at apuntale.com>  Sat, 16 Feb 2008 18:53:12 -0430
+
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..dfe9af4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,18 @@
+Source: scrounge-ntfs
+Section: admin
+Priority: optional
+Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org>
+Uploaders: Juan Angulo Moreno <juan at apuntale.com>
+Homepage: http://memberwebs.com/stef/software/scrounge/
+Build-Depends: debhelper (>= 6), autotools-dev
+Standards-Version: 3.7.3
+Vcs-Browser: http://git.debian.org/?p=forensics/scrounge-ntfs.git
+Vcs-Git: git://git.debian.org/git/forensics/scrounge-ntfs.git
+
+Package: scrounge-ntfs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Data recovery program for NTFS file systems
+ Utility that can rescue data from corrupted NTFS partitions writes 
+ the files retrieved to another working file system.
+ .
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..391f98a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,57 @@
+Author: Stef Walter <stef at memberwebs.com>
+Download: http://memberwebs.com/stef/software/scrounge/
+
+Files: *
+Copyright: (C) 2004-2008 Stef Walter <stef at memberwebs.com>
+License: Other
+    Redistribution and use in source and binary forms, with or without 
+    modification, are permitted provided that the following conditions 
+    are met:
+    .
+    * Redistributions of source code must retain the above copyright 
+      notice, this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright
+      notice, this list of conditions and the following disclaimer in
+      the documentation and/or other materials provided with the 
+      distribution.
+    * The names of contributors to this software may not be used to 
+      endorse or promote products derived from this software without
+      specific prior written permission.
+    .
+    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
+    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
+    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
+    FOR PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
+    COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
+    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
+    BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 
+    OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
+    AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
+    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 
+    THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 
+    DAMAGE.
+    
+
+Files: debian/*
+Copyright: (C) 2008 Juan Angulo Moreno <juan at apuntale.com>
+License: GPL-2+
+ 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.
+
+This package was debianized by Juan Angulo Moreno <juan at apuntale.com> on
+Sat, 16 Feb 2008 18:53:12 -0430.
+
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..236670a
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/sbin
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..50bd824
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+NEWS
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..281e1b0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,66 @@
+#!/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)
+
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+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 $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	-[ ! -f Makefile ] || $(MAKE) distclean
+	rm -f config.sub config.guess
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	$(MAKE) DESTDIR=$(CURDIR)/debian/scrounge-ntfs install
+
+binary-indep: build install
+
+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: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..d0ac3d9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://memberwebs.com/stef/software/scrounge/scrounge-ntfs-(.*)\.tar\.gz

-- 
debian-forensics/scrounge-ntfs



More information about the forensics-changes mailing list