--- vinetto-0.6.0~alpha.orig/debian/docs +++ vinetto-0.6.0~alpha/debian/docs @@ -0,0 +1 @@ +README --- vinetto-0.6.0~alpha.orig/debian/copyright +++ vinetto-0.6.0~alpha/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Danny van der Meeren on +Sun, 10 Dec 2006 15:33:08 +0100. + +It was downloaded from + +Upstream Author: Michel Roukine + +Copyright: (C) 2005, 2006 by Michel Roukine + +License: + 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 + +The Debian packaging is (C) 2006, Danny van der Meeren and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- vinetto-0.6.0~alpha.orig/debian/compat +++ vinetto-0.6.0~alpha/debian/compat @@ -0,0 +1 @@ +5 --- vinetto-0.6.0~alpha.orig/debian/control +++ vinetto-0.6.0~alpha/debian/control @@ -0,0 +1,14 @@ +Source: vinetto +Section: utils +Priority: optional +Maintainer: Danny van der Meeren +Build-Depends: debhelper (>= 5), python (>= 2.3), python-support (>= 0.3) +Standards-Version: 3.7.2 + +Package: vinetto +Architecture: all +Depends: ${python:Depends} +Description: A forensics tool to examine Thumbs.db files + A tool intended for forensics examinations. It is a console program to extract + thumbnail images and their metadata from those thumbs.db files generated under + Windows. Used in forensic environments. --- vinetto-0.6.0~alpha.orig/debian/rules +++ vinetto-0.6.0~alpha/debian/rules @@ -0,0 +1,36 @@ +#!/usr/bin/make -f + +PREFIX := debian/vinetto + +build: + +install: build + python ./setup.py install --no-compile \ + --install-lib=$(PREFIX)/usr/share/python-support/vinetto \ + --install-scripts=$(PREFIX)/usr/bin \ + --prefix=$(PREFIX) + +install: build + +clean: + dh_clean + find . -name \*.pyc | xargs rm -f + rm -rf debian/vinetto + rm -rf build + +binary-arch binary: binary-indep + +binary-indep: build install + dh_pysupport + dh_install + dh_installchangelogs + dh_installdocs + dh_installman debian/vinetto.1 + dh_installdeb + dh_compress + dh_fixperms + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: build binary binary-arch binary-indep clean install --- vinetto-0.6.0~alpha.orig/debian/vinetto.1 +++ vinetto-0.6.0~alpha/debian/vinetto.1 @@ -0,0 +1,37 @@ +.TH vinetto "1" "19 November 2006" "vinetto" +.SH NAME +vinetto \- Extract images from Microsoft thumb.db files +.SH SYNOPSIS +.B vinetto [OPTION] [-o DIR] file + +.SH DESCRIPTION +Vinetto is a tool intended for forensics examinations. It is a console program to extract thumbnail images and their metadata from those thumbs.db files generated under Windows. Used in forensic environments. +.PP + +.SH OPTIONS +.TP +\fB\--version \fR +show program's version number and exit. + +.TP +\fB\-h, --help \fR +show help message and exit. + +.TP +\fB\-o DIR \fR +write thumbnails to DIR + +.TP +\fB\-H \fR +write html report to DIR + +.SH BUG REPORTS +Report bugs to +.SH COPYRIGHT +Copyright (C) 2005, 2006 by Michel Roukine +.br +.SH AUTHOR +Vinetto was written by: Michel Roukine +.PP +This manual page was written by Danny van der Meeren , for the +Debian project (but may be used by others). --- vinetto-0.6.0~alpha.orig/debian/changelog +++ vinetto-0.6.0~alpha/debian/changelog @@ -0,0 +1,7 @@ +vinetto (0.6.0~alpha-1) unstable; urgency=low + + * Changed setup.py to use relative paths + * Add manpage vinetto.1 + * Initial release (Closes: #402092) + + -- Danny van der Meeren Sun, 10 Dec 2006 15:33:08 +0100 --- vinetto-0.6.0~alpha.orig/setup.py +++ vinetto-0.6.0~alpha/setup.py @@ -3,7 +3,7 @@ version='0.06alpha', scripts=['vinetto'], py_modules=['vinutils', 'vinreport'], - data_files=[('/usr/share/vinetto', ['res/header', 'res/huffman', \ + data_files=[('usr/share/vinetto', ['res/header', 'res/huffman', \ 'res/quantization', \ 'res/HtRepTemplate.html'])], description='vinetto : a forensics tool to examine Thumbs.db files.',