--- djplay-0.4.1.orig/debian/changelog +++ djplay-0.4.1/debian/changelog @@ -0,0 +1,47 @@ +djplay (0.4.1-0ubuntu1) feisty; urgency=low + + * New upstream release + * All patches dropped: integrated upstream or no longer needed + * Removed dpatch + - Removed build-dep on dpatch + - Removed debian/patches/ + - Removed dpatch stuff in debian/rules + * Added build-dep on libusb-dev + * debian/rules: + - Removed "export QTDIR=/usr/include/qt3" + - Added ./configure options: --with-qt-includes=/usr/include/qt3 --with-qt-librairies=/usr/lib + - Updated the clean rule + + -- Adrien Cunin Sat, 18 Nov 2006 22:01:34 +0100 + +djplay (0.3.0-0ubuntu3) feisty; urgency=low + + * debian/patches/06_fix_segfault_jackd.dpatch: patch from upstream + - fix segfault when jackd is not running (Closes Malone: #70783) + + -- Adrien Cunin Wed, 8 Nov 2006 16:22:08 +0100 + +djplay (0.3.0-0ubuntu2) edgy; urgency=low + + * debian/patches/05_64bits.dpatch: + - add support for 64 bits by replacing some "int" with "long" + * debian/control: + - set Architecture to any + - added a space before "Homepage:" in description + + -- Adrien Cunin Fri, 13 Oct 2006 17:52:37 +0200 + +djplay (0.3.0-0ubuntu1) edgy; urgency=low + + * Initial release + * debian/patches/01_qtdir.dpatch: + - fix libqt include directory + * debian/patches/02_bitmapbutton.dpatch: + - change bitmapbutton.h include location + * debian/patches/03_bitmapslider.dpatch: + - change bitmapslider.h include location + * debian/patches/04_mp3map.dpatch: + - remove "Mp3Map::" to make it compile with this version of gcc + + -- Adrien Cunin Sat, 9 Sep 2006 15:14:20 +0200 + --- djplay-0.4.1.orig/debian/compat +++ djplay-0.4.1/debian/compat @@ -0,0 +1 @@ +5 --- djplay-0.4.1.orig/debian/control +++ djplay-0.4.1/debian/control @@ -0,0 +1,16 @@ +Source: djplay +Section: sound +Priority: optional +Maintainer: Adrien Cunin +Build-Depends: debhelper (>= 5.0.0), libglib1.2-dev, libqt3-mt-dev, libqt3-compat-headers, libjack0.100.0-dev, libaudiofile-dev, libvorbis-dev, libsamplerate0-dev, libcdparanoia0-dev, libsoundtouch1-dev, libid3-3.8.3-dev, libmad0-dev, libmpeg3-dev, ladspa-sdk, swh-plugins, tap-plugins, libxml2-dev, libusb-dev +Standards-Version: 3.7.2 + +Package: djplay +Architecture: any +Depends: jackd, qjackctl, ${shlibs:Depends}, ${misc:Depends} +Description: A DJ application for Linux + DJPlay aims to be a high class live DJing application for Linux. + DJPlay is a Qt application and uses JACK Audio Connection Kit. + It has many features and supports icecast broadcasting. + . + Homepage: http://djplay.sourceforge.net/ --- djplay-0.4.1.orig/debian/docs +++ djplay-0.4.1/debian/docs @@ -0,0 +1,2 @@ +AUTHORS +README --- djplay-0.4.1.orig/debian/copyright +++ djplay-0.4.1/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by Adrien Cunin on +Sat, 9 Sep 2006 15:14:20 +0200. + +It was downloaded from http://djplay.sourceforge.net/ + +Copyright (C): Melanie Thielker + Olli Parviainen + Denis de Leeuw Duarte + Paul Davis (main author of JACK) + +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; either version 2 of the License, or + (at your option) any later version. + + 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 systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +Some files of this package are disributed under the terms of the +GNU Lesser General Public License which can be found +in `/usr/share/common-licenses/LGPL'. + +These files are listed above: + +BPMDetect.cpp +BPMDetect.h +FIFOSampleBuffer.cpp +FIFOSampleBuffer.h +FIFOSamplePipe.h +PeakFinder.cpp +PeakFinder.h + --- djplay-0.4.1.orig/debian/rules +++ djplay-0.4.1/debian/rules @@ -0,0 +1,85 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# 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 + +config.status: configure + dh_testdir + # Add here commands to configure the package. + CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-mpeg3includes=/usr/include --with-qt-includes=/usr/include/qt3 --with-qt-librairies=/usr/lib + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + dh_clean + rm -f m4/Makefile plugins/bitmapbutton/Makefile plugins/bitmapslider/Makefile + rm -f plugins/bitmapbutton/libbitmapbutton.so plugins/bitmapslider/libbitmapslider.so plugins/plugins_done + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/djplay. + $(MAKE) install DESTDIR=$(CURDIR)/debian/djplay + +# 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 --- djplay-0.4.1.orig/debian/README.Debian +++ djplay-0.4.1/debian/README.Debian @@ -0,0 +1,12 @@ +djplay for Debian +----------------- + +DJPlay needs jackd and qjackctl to be running. + +How to run DJPlay: + +jackd -d alsa (replace alsa with oss if necessary) +qjackctl +djplay + + -- Adrien Cunin , Sat, 9 Sep 2006 15:14:20 +0200