--- daa2iso-0.1.7e.orig/src/Makefile +++ daa2iso-0.1.7e/src/Makefile @@ -1,7 +1,7 @@ EXE = daa2iso CFLAGS += -O2 -s PREFIX = /usr/local -BINDIR = $(PREFIX)/bin +BINDIR = $(DESTDIR)$(PREFIX)/bin SRC = $(EXE).c all: --- daa2iso-0.1.7e.orig/debian/daa2iso.1 +++ daa2iso-0.1.7e/debian/daa2iso.1 @@ -0,0 +1,30 @@ +.TH DAA2ISO "1" "December 2009" "daa2iso " "User Commands" +.SH NAME +daa2iso \- converts daa and gbi files to iso format. +.SH SYNOPSIS +.B daa2iso +\fI \fR +.SH DESCRIPTION +.PP +DAA2ISO converts single and multipart DAA (Direct Access Archive) +images (generated by the PowerISO program) to their original format. +.SH USAGE +Using it then it's simple, just specify the input file and the ISO +file you want to create like the following example: + + daa2iso "my file.daa" output.iso +or + daa2iso "my file.part01.daa" output.iso +.SH SEE ALSO +For more information regarding why this tool is needed and what the output +formats are, see the daa2iso.txt file provided along with this program. +.SH AUTHOR +daa2iso was written by Luigi Auriemma +.br +e\-mail: aluigi@autistici.org +.br +web: http://www.aluigi.org +.PP +This manual page was written by Juan Angulo Moreno , +for the Debian project (and may be used by others). + --- daa2iso-0.1.7e.orig/debian/compat +++ daa2iso-0.1.7e/debian/compat @@ -0,0 +1 @@ +7 --- daa2iso-0.1.7e.orig/debian/control +++ daa2iso-0.1.7e/debian/control @@ -0,0 +1,17 @@ +Source: daa2iso +Section: utils +Priority: extra +Maintainer: Juan Angulo Moreno +Build-Depends: debhelper (>= 7), zlib1g-dev +Standards-Version: 3.8.3 +Homepage: http://aluigi.org/mytoolz.htm#daa2iso + +Package: daa2iso +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: The DAA files (Direct Access Archive) to ISO converting tool + DAA2ISO is an open source command-line tool for converting + single and multipart DAA file images to the original ISO format. + . + The DAA image (Direct Access Archive) in fact is just a compressed ISO + which can be created through the commercial program PowerISO. --- daa2iso-0.1.7e.orig/debian/changelog +++ daa2iso-0.1.7e/debian/changelog @@ -0,0 +1,9 @@ +daa2iso (0.1.7e-1) unstable; urgency=low + + * Initial release (Closes: #463166) + * Repackaged upstream since it came in a zipped file with no parent + directory. + * Remove daa2iso.exe file from upstream. + * Added debian/daa2iso.1 (manpages). + + -- Juan Angulo Moreno Tue, 29 Dec 2009 20:17:52 -0430 --- daa2iso-0.1.7e.orig/debian/manpages +++ daa2iso-0.1.7e/debian/manpages @@ -0,0 +1 @@ +debian/daa2iso.1 --- daa2iso-0.1.7e.orig/debian/copyright +++ daa2iso-0.1.7e/debian/copyright @@ -0,0 +1,48 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Upstream-Name: DAA2ISO +Upstream-Maintainer: Luigi Auriemma +Upstream-Source: http://aluigi.org/mytoolz/daa2iso.zip + +Files: * +Copyright: Copyright 2007-2009, Luigi Auriemma +License: GPL-2 + On Debian systems the full text of the GNU General Public License can be + found in the `/usr/share/common-licenses/GPL' file. + +Files: tinf.h, tinflate.c +Copyright: Copyright 2003, Joergen Ibsen +License: BSD + This software is provided 'as-is', without any express + or implied warranty. In no event will the authors be + held liable for any damages arising from the use of + this software. + + Permission is granted to anyone to use this software + for any purpose, including commercial applications, + and to alter it and redistribute it freely, subject to + the following restrictions: + + 1. The origin of this software must not be + misrepresented; you must not claim that you + wrote the original software. If you use this + software in a product, an acknowledgment in + the product documentation would be appreciated + but is not required. + + 2. Altered source versions must be plainly marked + as such, and must not be misrepresented as + being the original software. + + 3. This notice may not be removed or altered from + any source distribution. + +Files: LzmaDec.c, LzmaDec.h, Types.h +Copyright: Copyright 2008-2009 Igor Pavlov +License: PD (Public Domain) + This code may be freely distributed. + +Files: debian/* +Copyright: Copyright 2009, Juan Angulo Moreno +License: GPL-2+ + On Debian systems the full text of the GNU General Public License can be + found in the `/usr/share/common-licenses/GPL' file. --- daa2iso-0.1.7e.orig/debian/docs +++ daa2iso-0.1.7e/debian/docs @@ -0,0 +1 @@ +daa2iso.txt --- daa2iso-0.1.7e.orig/debian/rules +++ daa2iso-0.1.7e/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +export DH_VERBOSE=0 + +build: build-stamp +build-stamp: + dh build --before auto_configure + make -C src PREFIX=/usr + dh build --after auto_build + touch build-stamp + +clean: + dh clean --before auto_clean + rm -f src/*.o src/*.exe src/daa2iso + dh clean --after auto_clean + +install: build install-stamp +install-stamp: + dh install --before auto_install + make -C src PREFIX=/usr DESTDIR=$(CURDIR)/debian/daa2iso install + echo $DESTDIR + dh install --after auto_install + touch install-stamp + +binary-arch: install + dh binary-arch + +binary-indep: install + dh binary-indep + +binary: binary-arch binary-indep