--- mpc123-0.1.9+tla20060120.orig/debian/changelog +++ mpc123-0.1.9+tla20060120/debian/changelog @@ -0,0 +1,15 @@ +mpc123 (0.1.9+tla20060120-1) unstable; urgency=high + + * Update to Arch 2006-01-20 to fix the bug: + + unavailable output device -> infinite loop + * This release adds support for ESD + * Upgraded to Standards-Version 3.7.2 + + -- Daniele Sempione Sat, 3 Jun 2006 22:09:03 +0200 + +mpc123 (0.1.9-1) unstable; urgency=low + + * Initial release Closes: #347832 + + -- Daniele Sempione Fri, 6 Jan 2006 11:39:37 +0100 + --- mpc123-0.1.9+tla20060120.orig/debian/compat +++ mpc123-0.1.9+tla20060120/debian/compat @@ -0,0 +1 @@ +4 --- mpc123-0.1.9+tla20060120.orig/debian/dirs +++ mpc123-0.1.9+tla20060120/debian/dirs @@ -0,0 +1 @@ +usr/bin --- mpc123-0.1.9+tla20060120.orig/debian/control +++ mpc123-0.1.9+tla20060120/debian/control @@ -0,0 +1,19 @@ +Source: mpc123 +Section: sound +Priority: optional +Maintainer: Daniele Sempione +Build-Depends: debhelper (>= 4.0.0), libmpcdec-dev, libao-dev +Standards-Version: 3.7.2 + +Package: mpc123 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Command-line Musepack audio player + mpc123 is a command-line player for the Musepack audio compression + format. + . + MPC is a lossy compression format like MP3 or Ogg Vorbis. It is + based on the MPEG-1 Layer-2 / MP2 algorithms, but has vastly + improved. + . + Right now the player isn't able to play remote files. --- mpc123-0.1.9+tla20060120.orig/debian/docs +++ mpc123-0.1.9+tla20060120/debian/docs @@ -0,0 +1,3 @@ +README +TODO +AUTHORS --- mpc123-0.1.9+tla20060120.orig/debian/copyright +++ mpc123-0.1.9+tla20060120/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Daniele Sempione on +Thu, 12 Jan 2006 23:08:02 +0100 + +It was downloaded from +http://mpc123.sourceforge.net/dl.php + +Upstream author: Fernando Vezzosi + +Copyright 2005 Fernando Vezzosi + +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 with +the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; +if not, write to the Free Software Foundation, Inc., 51 Franklin St, +Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. --- mpc123-0.1.9+tla20060120.orig/debian/rules +++ mpc123-0.1.9+tla20060120/debian/rules @@ -0,0 +1,68 @@ +#!/usr/bin/make -f + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # authors will add the Makefile `install' target in the next release + cp mpc123 $(CURDIR)/debian/mpc123/usr/bin/ + + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_installman mpc123.1 + 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