--- mp3wrap-0.5.orig/mp3wrap.c +++ mp3wrap-0.5/mp3wrap.c @@ -70,8 +70,8 @@ FILE *file_output, *file_input; unsigned long splitpoints[MAXNUMFILE+1], begin=0, end, len=0, crc, fcrc; unsigned char filename[512], *wrapindex, c, ext[512]; - char option, *ptr; - int i = 0, j = 0, files, oldfiles = 0, indexsize=0, id3offset=0; + char *ptr; + int option, i = 0, j = 0, files, oldfiles = 0, indexsize=0, id3offset=0; short optoffset = 0, addoption = 0, listoption = 0, verboption = 0, ismp3wrap = 0; printf (NAME" Version "VERSION" "DATE". See README and COPYING for more!\n"); --- mp3wrap-0.5.orig/debian/docs +++ mp3wrap-0.5/debian/docs @@ -0,0 +1,4 @@ +README +AUTHORS +doc/man.html +doc/faq.html --- mp3wrap-0.5.orig/debian/copyright +++ mp3wrap-0.5/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Paul Melnikow on +Mon, 13 Sep 2004 12:47:52 -0400. + +It was downloaded from http://mp3wrap.sourceforge.net/ + +Upstream Author: 2002 M. Trotta - + +Copyright (c) 2002 M. Trotta - + +License: + + This package 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; version 2 dated June, 1991. + + This package 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 package; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- mp3wrap-0.5.orig/debian/watch +++ mp3wrap-0.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/mp3wrap/mp3wrap-(.*)-src\.tar\.gz --- mp3wrap-0.5.orig/debian/changelog +++ mp3wrap-0.5/debian/changelog @@ -0,0 +1,35 @@ +mp3wrap (0.5-3) unstable; urgency=low + + * QA upload. + * Add debian/watch (Closes: #493717). + * Fix typo in long description. + * Bumped Standards Version. + + -- Emanuele Rocca Mon, 11 Aug 2008 20:21:02 +0200 + +mp3wrap (0.5-2) unstable; urgency=low + + * QA upload. + * Set maintainer to QA group. + * Bumped Standards Version, set Homepage tag as control field. + * Ack NMU (Closes: #386119). + * Bumped compat leven and adjusted debhelper dependency. + * Fixed broken copyright file. + * Fix debian-rules-ignores-make-clean-error lintian warning. + + -- Nico Golde Sun, 13 Jan 2008 01:58:24 +0100 + +mp3wrap (0.5-1.1) unstable; urgency=high + + * Non-maintainer Upload + * Add patch by Alexander for make mp3wrap work correctly + on ppc again (Closes: #384995) + + -- Michael Ablassmeier Tue, 5 Sep 2006 13:40:51 +0200 + +mp3wrap (0.5-1) unstable; urgency=low + + * Initial Release. + + -- Paul Melnikow Mon, 13 Sep 2004 12:45:52 -0400 + --- mp3wrap-0.5.orig/debian/control +++ mp3wrap-0.5/debian/control @@ -0,0 +1,22 @@ +Source: mp3wrap +Section: sound +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>= 5.0.0) +Standards-Version: 3.8.0 +Homepage: http://mp3wrap.sourceforge.net/ + + +Package: mp3wrap +Architecture: any +Depends: ${shlibs:Depends} +Recommends: mp3splt +Description: Utility for MP3 wrapping (rolling multiple MP3s into one) + Command-line utility that wraps multiple MP3 files into a single, playable + MP3, without losing filenames or ID3 information, and without reencoding. Also + supports archiving non-audio data such as playlists, info files, and cover + images inside the MP3. These files can be unpacked later (using mp3splt, e.g.); + ordinary MP3 decoders can play the entire audio stream as one long track. + . + This is a free, independent alternative to AlbumWrap: + http://www.infamus.com/albumwrap/ --- mp3wrap-0.5.orig/debian/compat +++ mp3wrap-0.5/debian/compat @@ -0,0 +1 @@ +5 --- mp3wrap-0.5.orig/debian/dirs +++ mp3wrap-0.5/debian/dirs @@ -0,0 +1 @@ +usr/bin --- mp3wrap-0.5.orig/debian/rules +++ mp3wrap-0.5/debian/rules @@ -0,0 +1,99 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + +build: build-stamp + +build-stamp: config.status + dh_testdir + +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 + + # Add here commands to compile the package. + $(MAKE) + #/usr/bin/docbook-to-man debian/mp3wrap.sgml > mp3wrap.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + # the package ships with config.status -- this causes configure not to run + # and breaks the build + rm -f config.status + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/mp3wrap. + $(MAKE) install DESTDIR=$(CURDIR)/debian/mp3wrap + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +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