[Forensics-changes] [SCM] Tool to recover deleted files on FAT filesystems branch, debian, updated. upstream/1.3-6-g4034de1

Daniel Baumann daniel at debian.org
Wed Jan 21 13:29:17 UTC 2009


The following commit has been merged in the debian branch:
commit e5f149efbac1b03a7f6c72aadc8c6d1bb48b26af
Author: Daniel Baumann <daniel at debian.org>
Date:   Wed Jan 21 14:15:32 2009 +0100

    Rewriting rules file.

diff --git a/debian/rules b/debian/rules
index b4a70ae..e34c276 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,62 +1,60 @@
 #!/usr/bin/make -f
-#export DH_VERBOSE=1
 
-DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_GNU_TYPE	?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE	?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
 ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
-CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
+	CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
 else
-CROSS= --build $(DEB_BUILD_GNU_TYPE)
+	CROSS= --build $(DEB_BUILD_GNU_TYPE)
 endif
 
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	rm -f config.guess config.sub
+
+	[ ! -f Makefile ] || $(MAKE) distclean
+
+	dh_clean
 
 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 $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
 
+	./configure $(CROSS) --prefix=/usr
 
 build: build-stamp
-
-build-stamp:  config.status
-	dh_testdir
-	touch $@
-
-clean:
+build-stamp: config.status
 	dh_testdir
-	dh_testroot
-	rm -f build-stamp
 
-	[ ! -f Makefile ] || $(MAKE) distclean
-	rm -f config.sub config.guess
+	$(MAKE)
 
-	dh_clean
+	touch build-stamp
 
 install: build
 	dh_testdir
 	dh_testroot
-	dh_clean -k
+	dh_prep
 	dh_installdirs
 
 	$(MAKE) DESTDIR=$(CURDIR)/debian/fatback install
 
-binary-indep: build install
+binary: binary-arch
 
-binary-arch: build install
+binary-arch: install
 	dh_testdir
 	dh_testroot
 	dh_installchangelogs ChangeLog
 	dh_installdocs
-	dh_installexamples
-#	dh_installinfo
 	dh_installman
-	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
@@ -66,5 +64,6 @@ binary-arch: build install
 	dh_md5sums
 	dh_builddeb
 
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+binary-indep:
+
+.PHONY: clean build install binary binary-arch binary-indep

-- 
Tool to recover deleted files on FAT filesystems



More information about the forensics-changes mailing list