--- wmrack-1.4.orig/debian/compat +++ wmrack-1.4/debian/compat @@ -0,0 +1 @@ +4 --- wmrack-1.4.orig/debian/changelog +++ wmrack-1.4/debian/changelog @@ -0,0 +1,146 @@ +wmrack (1.4-2) unstable; urgency=low + + * WTF workaround for glitch in make (&& -> ||). + + -- Chris Waters Mon, 31 Mar 2008 16:27:06 -0700 + +wmrack (1.4-1) unstable; urgency=low + + * New upstream release. Includes fix for overfrequent polling + (closes: #440407). + * Patch to fix FTBFS if built twice in a row (closes: #424123). + * Patch to permit building with nostrip option (closes: #438292). + * Updated menu for new menu policy. + + -- Chris Waters Sun, 30 Mar 2008 13:25:19 -0700 + +wmrack (1.3-2) unstable; urgency=low + + * changed build-dependency on xutils to libxt-dev because the configure + script looks for a header in libxt-dev if it can't find xmkmf, and + xmkmf has been moved to xutils-dev. I could have changed to + build-depend on xutils-dev, of course, but this way allows backports + to sarge. Thanks to Andreas Metzler for the suggestion. (Closes: #365126). + * At the advice of Aaron Ucko, I have patched configure (and + configure.in) to handle the case where X does not need additional + include or library paths. + + -- Chris Waters Sat, 29 Apr 2006 12:11:46 -0700 + +wmrack (1.3-1) unstable; urgency=low + + * New upstream release, includes fix for FTBFS on BSD/Hurd + (closes: #361724). + * Updated FSF address in debian/copyright. + + -- Chris Waters Wed, 26 Apr 2006 15:26:54 -0700 + +wmrack (1.2-1.1) unstable; urgency=low + + * Non-maintainer upload + * Splitted xlibs-dev build-dep (Closes: #346898) + + -- Marc 'HE' Brockschmidt Sat, 21 Jan 2006 10:37:15 +0100 + +wmrack (1.2-1) unstable; urgency=low + + * New upstream release. + + -- Chris Waters Thu, 2 Oct 2003 15:01:42 -0700 + +wmrack (1.1-2) unstable; urgency=low + + * added missing build-dependency on xutils (grr, this is one of the most + inobvious and annoying build-dependencies around---its only used by + one test in the configure script...sigh). + + -- Chris Waters Mon, 30 Apr 2001 11:35:04 -0700 + +wmrack (1.1-1) unstable; urgency=low + + * New upstream release. Note that I am now the upstream maintainer as + well as the Debian maintainer. All my debian-specific patches have + now been merged into the upstream source (as you might expect). + * Removed the README.Debian, which was not at all wmrack related (except + insofar as wmrack is one of many applications that use sound). + * Changed debian/copyright to mention new webpage and maintainer (me). + * Added hints and longtitle to menu. + * Cleaned up debian/rules, started using debhelper v3. + * Rewrote description. + + -- Chris Waters Wed, 11 Apr 2001 16:07:58 -0700 + +wmrack (1.0b5-8) unstable; urgency=low + + * Changed device open call to use O_RDONLY|O_NONBLOCK in order to get + CDs to work with new glibc. + * Updated Build-depends for new XF86-4 + * Moved files from /usr/X11/bin to /usr/bin (as per new proposed + policy). + + -- Chris Waters Tue, 30 Jan 2001 13:45:14 -0800 + +wmrack (1.0b5-7) unstable; urgency=low + + * new maintainer + + -- Chris Waters Sat, 11 Nov 2000 14:47:18 -0800 + +wmrack (1.0b5-6) unstable; urgency=low + + * Orphaning the package + + -- Sean 'Shaleh' Perry Sun, 27 Aug 2000 22:58:51 -0700 + +wmrack (1.0b5-5) unstable; urgency=low + + * Bug fix release + * Closes: #52895 + + -- Sean 'Shaleh' Perry Tue, 18 Jul 2000 12:20:14 -0700 + +wmrack (1.0b5-4) unstable; urgency=low + + * Upload for fhs compliance + * Closes: #44538 + + -- Sean E. Perry Tue, 7 Sep 1999 14:46:52 -0700 + +wmrack (1.0b5-3) unstable; urgency=low + + * New maintainer + + -- Sean E. Perry Fri, 3 Sep 1999 16:13:17 -0700 + +wmrack (1.0b5-2) unstable; urgency=low + + * debian/control: improved description (closes: bug#33399) + * debian/README.Debian: added note regarding audio devices (closes: + bug#31308) + * 1.0b5 added signal handling (closes: bug#29211, bug#31257) + + -- Marcelo E. Magallon Sun, 13 Jun 1999 10:13:13 -0600 + +wmrack (1.0b5-1) frozen unstable; urgency=low + + * New upstream release + * Renamed source package back to wmrack + + -- Marcelo E. Magallon Thu, 31 Dec 1998 18:38:40 -0600 + +WMRack (1.0b3-1) unstable; urgency=low + + * New upstream version + * Renaming source package from wmrack to WMRack, upstream's name + * Patched a bit to prevent wmrack to crash on startup if no + configuration file is found + + -- Marcelo E. Magallon Sat, 11 Apr 1998 22:09:54 -0600 + +wmrack (0.9-1) unstable; urgency=low + + * Initial release + + -- Marcelo E. Magallon Fri, 2 Jan 1998 14:00:10 -0600 + + --- wmrack-1.4.orig/debian/rules +++ wmrack-1.4/debian/rules @@ -0,0 +1,44 @@ +#!/usr/bin/make -f + +package=wmrack + +build: stamp-build +stamp-build: + dh_testdir + ./configure --without-debug + $(MAKE) + touch stamp-build + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) clean + rm -rf build Makefile XPM/Makefile XPM/standart.style wmrack \ + config.log config.h config.cache config.status .depend stamp-build + dh_clean + +binary-indep: build + + +binary-arch: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + install -m 755 wmrack debian/wmrack/usr/bin + dh_installdocs + dh_installmenu + dh_installman wmrack.1 + dh_installchangelogs CHANGES + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +.PHONY: binary binary-arch binary-indep clean build --- wmrack-1.4.orig/debian/control +++ wmrack-1.4/debian/control @@ -0,0 +1,23 @@ +Source: wmrack +Section: sound +Priority: optional +Maintainer: Chris Waters +Standards-Version: 3.7.3 +Build-Depends: libx11-dev, libxext-dev, libxpm-dev, libxt-dev, debhelper (>= 4.0.0) + +Package: wmrack +Architecture: any +Section: sound +Priority: optional +Depends: ${shlibs:Depends} +Suggests: wmaker +Homepage: http://wmrack.sourceforge.net +Description: Combined CD Player + Mixer designed for WindowMaker + This dockapp combines a CD player and a mixer in one 48x48 window. + Very efficient on screen real-estate. Especially handy if you mainly + want a mixer, and only rarely use a CD player, but want to have one + around just in case. + . + It's designed with WindowMaker in mind, but it works fine with any + window manager, and can be swallowed by afterstep/fvwm/gnome panel/etc. + . --- wmrack-1.4.orig/debian/copyright +++ wmrack-1.4/debian/copyright @@ -0,0 +1,19 @@ +This package was originally debianized by Marcelo E. Magallon + on Sun, 5 Mar 1998 22:42:00 -0600. + +It was downloaded from http://prdownloads.sourceforge.net/wmrack/ + +The original author (and current copyright holder) of WMRack is +Oliver Graf, but he has lost interest, and the current maintainer +is Chris Waters , who is also the maintainer of +the Debian package. + +Copyright 2001, 2003 Oliver Graf +Copyright 2003-2008 Oliver Graf and Chris Waters + +wmrack is distributed under the terms of the GNU Public License. + +You can find a copy of the GNU General Public License in the directory +/usr/share/common-licenses, in the file GPL; if not, you can obtain a copy +writing to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +Boston, MA 02110-1301 USA --- wmrack-1.4.orig/debian/wmrack.menu +++ wmrack-1.4/debian/wmrack.menu @@ -0,0 +1,4 @@ +?package(wmrack): needs="x11"\ + section="Applications/Sound" hints="Dockapp, Mixer, Player"\ + title="WMrack" longtitle="WMrack CD Player + Mixer"\ + command="/usr/bin/wmrack -w" --- wmrack-1.4.orig/debian/wmrack.dirs +++ wmrack-1.4/debian/wmrack.dirs @@ -0,0 +1 @@ +usr/bin --- wmrack-1.4.orig/debian/wmrack.docs +++ wmrack-1.4/debian/wmrack.docs @@ -0,0 +1,3 @@ +README +TODO +WARRANTY