[Forensics-changes] [steghide] 02/02: Import Debian patch 0.4.2-0

Giovani Augusto Ferreira giovani-guest at moszumanska.debian.org
Wed Dec 28 03:46:26 UTC 2016


This is an automated email from the git hooks/post-receive script.

giovani-guest pushed a commit to branch debian
in repository steghide.

commit 69b84d9135833a4608b0e31eb64a9d70736a6dc4
Author: Brian Russo <wolfie at debian.org>
Date:   Wed Jan 30 14:40:23 2002 -1000

    Import Debian patch 0.4.2-0
---
 debian/changelog | 36 +++++++++++++++++++++++++++++++++++
 debian/control   | 21 +++++++++++++++++++++
 debian/copyright | 15 +++++++++++++++
 debian/dirs      |  1 +
 debian/docs      |  5 +++++
 debian/rules     | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 135 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..23c62d4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,36 @@
+steghide (0.4.2-0) unstable; urgency=low
+
+  * New upstream version (Closes: #123761)
+  * Removed README.Debian, no longer really useful
+  * Updated standards version
+
+ -- Brian Russo <wolfie at debian.org>  Wed, 30 Jan 2002 14:40:23 -1000
+
+steghide (0.3.1-4) unstable; urgency=low
+
+  * Adopting package (Closes: #100264)
+  * Updated maintainer field in control.. hurrah
+
+ -- Brian Russo <wolfie at debian.org>  Thu, 14 Jun 2001 14:02:54 +1100
+
+steghide (0.3.1-3) unstable; urgency=low
+
+  * Corrected typo in copyright file. 
+  * Removed installation of INSTALL file to fix lintian warning.
+
+ -- Dr. Guenter Bechly <gbechly at debian.org>  Thu, 29 Mar 2001 15:20:56 +0200
+
+steghide (0.3.1-2) unstable; urgency=low
+
+  * Corrected the Section in control, and the following;
+    closes: #81013
+
+ -- Dr. Guenter Bechly <gbechly at debian.org>  Fri,  9 Feb 2001 21:20:07 +0100
+
+steghide (0.3.1-1) unstable; urgency=low
+
+  * Initial Release, closes: Bug #81013.
+  * Included the test-image testimage.bmp.gz from the steghide website.
+  * Commented out the installation of docs in Makefile.am.
+
+ -- Dr. Guenter Bechly <gbechly at debian.org>  Mon,  1 Jan 2001 20:24:27 +0100
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..bf34dae
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: steghide
+Section: non-US
+Priority: optional
+Maintainer: Brian Russo <wolfie at debian.org>
+Build-Depends: debhelper, libmcrypt-dev, libmhash-dev
+Standards-Version: 3.5.6.0
+
+Package: steghide
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: A steganography tool
+ Steghide is steganography program which hides
+ bits of a data file in some of the least
+ significant bits of another file in such a way
+ that the existence of the data file is not
+ visible and cannot be proven. Steghide is
+ designed to be portable and configurable and
+ features hiding data in bmp, wav and au files,
+ blowfish encryption, MD5 hashing of passphrases
+ to blowfish keys, and pseudo-random distribution
+ of hidden bits in the container data.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7bcf73b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,15 @@
+This package was debianized by Dr. Guenter Bechly <gbechly at debian.org> on
+Mon,  1 Jan 2001 20:24:27 +0100.
+
+It was downloaded from http://steghide.sourceforge.net/download/
+
+Upstream Author(s): Stefan Hetzl <shetzl at teleweb.at>
+
+Copyright: GPL
+
+This software is copyright (c) by Stefan Hetzl
+
+You are free to distribute this software under the terms of
+the GNU General Public Licence.
+On Debian systems, the complete text of the GNU General Public
+Licence can be found in /usr/share/common-licenses/GPL file.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..e772481
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/bin
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..3b2e5d9
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,5 @@
+BUGS
+CREDITS
+HISTORY
+README
+TODO
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..96207ee
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,57 @@
+#!/usr/bin/make -f
+# debian/rules for steghide
+
+# This is the debhelper compatability version to use.
+export DH_COMPAT=1
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+	touch configure-stamp
+
+build: configure-stamp build-stamp
+build-stamp:
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	-$(MAKE) distclean
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install prefix=`pwd`/debian/tmp/usr
+	rm -rf `pwd`/debian/tmp/usr/doc
+
+binary-indep: build install
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installmenu
+	dh_installmanpages
+	dh_installchangelogs HISTORY 
+	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 configure

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/steghide.git



More information about the forensics-changes mailing list