--- mpc123-0.2.4.orig/debian/changelog +++ mpc123-0.2.4/debian/changelog @@ -0,0 +1,42 @@ +mpc123 (0.2.4-1) unstable; urgency=low + + * New upstream release (Closes: #459317) + + bug fixes + + added i18n support (it) + * Bump Standards-Version to 3.7.3 + + -- Daniele Sempione Fri, 21 Mar 2008 23:45:34 +0100 + +mpc123 (0.2.2-1) unstable; urgency=low + + * New upstream release (Closes: #425702) + * debian/rules doesn't suppress Makefile errors anymore; + it doesn't cause errors for ``clean''ing + + -- Daniele Sempione Fri, 16 Nov 2007 23:23:27 +0100 + +mpc123 (0.2.1-1) unstable; urgency=high + + * New upstream release (Closes: #379996) + + bug fixes + + support for track skipping by SIGINT + + better support for various sound systems + + temporarily removed alsa not-working driver (use alsa09) + + -- Daniele Sempione Sun, 3 Sep 2006 18:06:11 +0200 + +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.2.4.orig/debian/compat +++ mpc123-0.2.4/debian/compat @@ -0,0 +1 @@ +4 --- mpc123-0.2.4.orig/debian/dirs +++ mpc123-0.2.4/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/locale/it/LC_MESSAGES/ --- mpc123-0.2.4.orig/debian/control +++ mpc123-0.2.4/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, gettext +Standards-Version: 3.7.3 + +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.2.4.orig/debian/docs +++ mpc123-0.2.4/debian/docs @@ -0,0 +1,3 @@ +README +TODO +AUTHORS --- mpc123-0.2.4.orig/debian/copyright +++ mpc123-0.2.4/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, 2006 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.2.4.orig/debian/rules +++ mpc123-0.2.4/debian/rules @@ -0,0 +1,69 @@ +#!/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/ + cp LOCALES/it/LC_MESSAGES/mpc123.mo $(CURDIR)/debian/mpc123/usr/share/locale/it/LC_MESSAGES/ + + +# 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