--- audacious-plugins-1.3.5.orig/config.guess +++ audacious-plugins-1.3.5/config.guess @@ -139,23 +139,6 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -if [ "${UNAME_SYSTEM}" = "Linux" ] ; then - eval $set_cc_for_build - cat << EOF > $dummy.c - #include - #ifdef __UCLIBC__ - # ifdef __UCLIBC_CONFIG_VERSION__ - LIBC=uclibc __UCLIBC_CONFIG_VERSION__ - # else - LIBC=uclibc - # endif - #else - LIBC=gnu - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep LIBC= | sed -e 's: ::g'` -fi - # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in @@ -846,28 +829,28 @@ echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) - echo cris-axis-linux-${LIBC} + echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) - echo crisv32-axis-linux-${LIBC} + echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) - echo frv-unknown-linux-${LIBC} + echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build @@ -890,7 +873,7 @@ s: ::g p }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build @@ -913,16 +896,16 @@ s: ::g p }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) - echo or32-unknown-linux-${LIBC} + echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -935,37 +918,37 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="gnulibc1" ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) - echo x86_64-unknown-linux-${LIBC} + echo x86_64-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so @@ -980,22 +963,20 @@ p'` case "$ld_supported_targets" in elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-${LIBC}" + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-${LIBC}aout" + echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) - echo "${UNAME_MACHINE}-pc-linux-${LIBC}coff" + echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-${LIBC}oldld" + echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac - # This should get integrated into the C code below, but now we hack - if [ "$LIBC" != "gnu" ] ; then echo "$TENTATIVE" && exit 0 ; fi # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c --- audacious-plugins-1.3.5.orig/config.sub +++ audacious-plugins-1.3.5/config.sub @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. -timestamp='2006-07-02' +timestamp='2006-09-20' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -244,7 +244,7 @@ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx | dvp \ + | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ @@ -276,7 +276,8 @@ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[1234] | sh[24]a | sh[24]a*eb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | score \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ @@ -284,7 +285,7 @@ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; @@ -357,7 +358,7 @@ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[24]a*eb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ @@ -367,7 +368,7 @@ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) @@ -689,24 +690,6 @@ basic_machine=m68k-atari os=-mint ;; - mipsEE* | ee | ps2) - basic_machine=mips64r5900el-scei - case $os in - -linux*) - ;; - *) - os=-elf - ;; - esac - ;; - iop) - basic_machine=mipsel-scei - os=-irx - ;; - dvp) - basic_machine=dvp-scei - os=-elf - ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; @@ -927,6 +910,10 @@ sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; sei) basic_machine=mips-sei os=-seiux @@ -1232,7 +1219,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -irx*) + | -skyos* | -haiku* | -rdos* | -toppers*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1384,6 +1371,9 @@ # system, and we'll never get to this point. case $basic_machine in + score-*) + os=-elf + ;; spu-*) os=-elf ;; --- audacious-plugins-1.3.5.orig/debian/audacious-plugins-extra.install +++ audacious-plugins-1.3.5/debian/audacious-plugins-extra.install @@ -0,0 +1,30 @@ +usr/bin/audacious-arts-helper /usr/lib/audacious +usr/lib/audacious/Effect/* +usr/lib/audacious/General/libalarm.so +usr/lib/audacious/General/libaosd.so +usr/lib/audacious/General/libcurl.so +usr/lib/audacious/General/liblirc.so +usr/lib/audacious/General/libscrobbler.so +usr/lib/audacious/General/libsong_change.so +usr/lib/audacious/Input/libamidi-plug.so +usr/lib/audacious/Input/libadplug.so +usr/lib/audacious/Input/libconsole.so +usr/lib/audacious/Input/libcuesheet.so +usr/lib/audacious/Input/libmetronom.so +usr/lib/audacious/Input/libmodplug.so +usr/lib/audacious/Input/libmpc.so +usr/lib/audacious/Input/libsexypsf.so +usr/lib/audacious/Input/libsid.so +usr/lib/audacious/Input/libtimidity.so +usr/lib/audacious/Input/libtonegen.so +usr/lib/audacious/Input/libtta.so +usr/lib/audacious/Input/libvtx.so +usr/lib/audacious/Input/libwavpack.so +usr/lib/audacious/Output/libESD.so +usr/lib/audacious/Output/libarts.so +usr/lib/audacious/Output/libjackout.so +usr/lib/audacious/Output/libnull.so +usr/lib/audacious/Visualization/* +usr/lib/audacious/amidi-plug/* +usr/share/audacious-plugins/* +usr/share/audacious/* --- audacious-plugins-1.3.5.orig/debian/control +++ audacious-plugins-1.3.5/debian/control @@ -0,0 +1,74 @@ +Source: audacious-plugins +Section: sound +Priority: optional +Maintainer: Ubuntu MOTU Team +XSBC-Original-Maintainer: Adam Cécile (Le_Vert) +Build-Depends: debhelper (>= 5), autotools-dev, audacious-dev (>= 1.3), audacious-dev (<< 1.4~), libgtk2.0-dev (>= 2.6), libglade2-dev (>= 2.3.1), libtagc0-dev (>= 1.4), libvisual-0.4-dev, libsdl1.2-dev (>= 1.2.9) | libsdl-dev (>= 1.2.9), libvorbis-dev (>= 1.0), libogg-dev (>= 1.0) , libflac-dev (>= 1.1.2), libasound2-dev (>= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386] | libasound-dev (>= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libesd0-dev (>= 0.2), libsidplay2-dev | libsidplay1-dev, libresid-builder-dev, liblircclient-dev, libjack0.100.0-dev | libjack0.80.0-dev | libjack-dev, libsamplerate0-dev (>=0.0.15) | libsamplerate-dev (>=0.0.15), libmusicbrainz4-dev | libmusicbrainz-dev, libcurl4-gnutls-dev, libmpcdec-dev, libartsc0-dev (>= 0.9.5), libmodplug-dev, libsndfile1-dev (>= 0.19) | libsndfile-dev (>= 0.19), libpulse-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], dpatch, libwavpack-dev, libmms-dev, libfluidsynth-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libmad0-dev, libmcs-dev, libxcomposite-dev, libbinio-dev +Standards-Version: 3.7.2 + +Package: audacious-plugins +Section: sound +Architecture: any +Depends: ${shlibs:Depends}, ${libaudacious:Depends}, audacious (>= 1.3), audacious (<< 1.4~) +Conflicts: audacious (<< 1.2) +Description: Base plugins for audacious + A new fork of beep-media-player (xmms) which supports winamp skins and the + following codecs : AAC, Ogg, FLAC, WMA, MPEG3, MPC... + . + It includes some great other features like various output plugins, last.fm + plugins, LIRC support. + . + This package contains the base I/O plugins : + * Audio CD reading + * MPEG support (mp3) + * Ogg Vorbis support + * WMA support + * AAC support + * FLAC support + * ALAC support + * WAVE support + * ALSA output + * OSS output + * Disk writer output + . + Homepage: http://www.audacious-media-player.org/ + +Package: audacious-plugins-extra +Section: sound +Architecture: any +Pre-Depends: audacious-plugins (= ${binary:Version}) +Depends: ${shlibs:Depends}, ${libaudacious:Depends}, audacious (>= 1.3), audacious (<< 1.4~) +Conflicts: audacious (<< 1.2) +Description: Various extra plugins for audacious + A new fork of beep-media-player (xmms) which supports winamp skins and the + following codecs : AAC, Ogg, FLAC, WMA, MPEG3, MPC... + . + It includes some great other features like various output plugins, last.fm + plugins, LIRC support. + . + This package contains extra plugins for Audacious : + * Various effects like "voices remover" + * LIRC support + * AudioScrobbler support (Last.fm) + * Audio codecs : Midi, Musepack, (mpc), Wavpack... + * Other outputs : Arts, Esound, PulseAudio and Jack + * Visualization + * Alarm plugin (port of xmms-alarm). + . + Homepage: http://www.audacious-media-player.org/ + +Package: audacious-plugins-dev +Section: devel +Architecture: any +Depends: audacious-plugins (= ${binary:Version}), audacious-plugins-extra (= ${binary:Version}), audacious-dev (>= 1.3), audacious-dev (<< 1.4~), debhelper (>= 5), autotools-dev, libgtk2.0-dev (>= 2.6), libglade2-dev (>= 2.3.1), libtagc0-dev (>= 1.4), libvisual-0.4-dev, libsdl1.2-dev (>= 1.2.9) | libsdl-dev (>= 1.2.9), libvorbis-dev (>= 1.0), libogg-dev (>= 1.0) , libflac-dev (>= 1.1.2), libasound2-dev (>= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386] | libasound-dev (>= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libesd0-dev (>= 0.2), libsidplay2-dev | libsidplay1-dev, libresid-builder-dev, liblircclient-dev, libjack0.100.0-dev | libjack0.80.0-dev | libjack-dev, libsamplerate0-dev (>=0.0.15) | libsamplerate-dev (>=0.0.15), libmusicbrainz4-dev | libmusicbrainz-dev, libcurl4-gnutls-dev (>= 7.9.7) | libcurl-dev (>= 7.9.7), libmpcdec-dev, libartsc0-dev (>= 0.9.5), libmodplug-dev, libsndfile1-dev (>= 0.19) | libsndfile-dev (>= 0.19), libpulse-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], dpatch, libwavpack-dev, libmms-dev, libfluidsynth-dev, libmad0-dev, libmcs-dev +Description: Audacious-plugins development library and header files + A new fork of beep-media-player (xmms) which supports winamp skins and the + following codecs : AAC, Ogg, FLAC, WMA, MPEG3, MPC... + . + It includes some great other features like various output plugins, last.fm + plugins, LIRC support. + . + This package is a virtual package which will install audacious-dev and all + build-depends required by the plugins. + . + Homepage: http://www.audacious-media-player.org/ --- audacious-plugins-1.3.5.orig/debian/audacious-plugins-dev.links +++ audacious-plugins-1.3.5/debian/audacious-plugins-dev.links @@ -0,0 +1 @@ +/usr/share/doc/audacious-plugins /usr/share/doc/audacious-plugins-dev --- audacious-plugins-1.3.5.orig/debian/rules +++ audacious-plugins-1.3.5/debian/rules @@ -0,0 +1,114 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# Include dpatch targets +include /usr/share/dpatch/dpatch.make + +# 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) + +# Grab the type of kernel to see if ALSA output plugin will be available +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +# We'll symlink /usr/share/doc/ to the audacious-plugins one +# So we need a list of available packages +PKG_LIST = audacious-plugins-extra audacious-plugins-dev + +# We want to know which major version of libaudacious is used to generate +# the right dependency (through its shlibs file) +LIBAUDACIOUSSHLIBS = $(shell cat /var/lib/dpkg/info/`readlink /usr/lib/libaudacious.so | sed 's!\.so\.!!'`.shlibs | cut -d' ' -f 3-) + +# Define CFLAGS +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: patch-stamp configure + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --disable-rpath \ + --enable-timidity \ + --enable-amidiplug \ + --enable-chardet \ + --disable-altivec \ + --disable-sse2 \ + CFLAGS="$(CFLAGS)" + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) V=1 + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + # Avoid configure to be run in a clean sources tree + touch mk/rules.mk + rm -f po/stamp-po po/*.gmo + -[ ! -f Makefile ] || $(MAKE) distclean +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 + rm -f config.h config.log config.status stamp-h1 + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp/ + +binary-indep: build install +# We have nothing to do by default. + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_install --sourcedir=debian/tmp/ +ifeq ($(DEB_BUILD_ARCH_OS),linux) + install -m 644 debian/tmp/usr/lib/audacious/Output/libALSA.so \ + debian/audacious-plugins/usr/lib/audacious/Output/ + install -m 644 debian/tmp/usr/lib/audacious/Output/libpulse_audio.so \ + debian/audacious-plugins-extra/usr/lib/audacious/Output/ + install -m 644 debian/tmp/usr/lib/audacious/General/libevdev-plug.so \ + debian/audacious-plugins-extra/usr/lib/audacious/General/ +endif + # Remove old doc sets before running dh_link + for PKG in $(PKG_LIST); do \ + rm -r debian/$$PKG/usr/share/doc/ || exit 1; \ + done + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + for PKG in audacious-plugins audacious-plugins-extra; do \ + echo "libaudacious:Depends=$(LIBAUDACIOUSSHLIBS)" >> $(CURDIR)/debian/$$PKG.substvars || exit 1; \ + done + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- audacious-plugins-1.3.5.orig/debian/watch +++ audacious-plugins-1.3.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://static.audacious-media-player.org/release/audacious-plugins-([0-9\.]+).tgz --- audacious-plugins-1.3.5.orig/debian/changelog +++ audacious-plugins-1.3.5/debian/changelog @@ -0,0 +1,104 @@ +audacious-plugins (1.3.5-3ubuntu2) gutsy; urgency=low + + * Add support for adplug plugin: (Closes LP# 119275) + * Add b-d for libbinio-dev + * Update audacious-plugins-extra.install + + -- Barry deFreese Sun, 2 Sep 2007 11:28:25 -0400 + +audacious-plugins (1.3.5-3ubuntu1) gutsy; urgency=low + + * Build with --enable-chardet (Closes LP# 124295) + * Update maintainer per spec + + -- Barry deFreese Fri, 17 Aug 2007 22:13:53 -0400 + +audacious-plugins (1.3.5-3) unstable; urgency=low + + * Add audacious (>> 1.3), audacious (<< 1.4~) dependency to audacious-plugins(-extra) to support Etch partial upgrade. + * Update build-depends and audacious-plugins-dev dependencies with the same way. + + -- Adam Cécile (Le_Vert) Sun, 08 Jul 2007 19:33:50 +0200 + +audacious-plugins (1.3.5-2) unstable; urgency=low + + * audacious-plugins and audacious-plugins-extra now depend on libaudaciousX (Closes: #431499, #431482). + * Use -[ ! -f Makefile ] || $(MAKE) distclean instead of -$(MAKE) distclean (fix lintian warning). + * Add || exit 1 in debian/rules loops. + + -- Adam Cécile (Le_Vert) Sun, 08 Jul 2007 16:14:35 +0200 + +audacious-plugins (1.3.5-1) unstable; urgency=low + + * New upstream release. + * Drop 002-Disable_SSE2 patch, fixed upstream. + * Build without sse2 and altivec. + * Make libfluidsynth-dev build-depend Linux only, as it indirectly depends on ALSA. + * Only try to install evdev plugin on Linux systems. + * audacious-plugins-dev now depends on libcurl4-gnutls-dev (Closes: #428806). + + -- Adam Cécile (Le_Vert) Wed, 13 Jun 2007 16:02:58 +0200 + +audacious-plugins (1.3.4-2) unstable; urgency=low + + * Make build being more verbose, (make V=1). + * Always disable SSE2 (Closes: #423833). + * Add missing libxcomposite-dev build-depends (Closes: #425210). + + -- Adam Cécile (Le_Vert) Tue, 22 May 2007 09:51:27 +0200 + +audacious-plugins (1.3.4-1) unstable; urgency=low + + * New upstream release. + - Drop 001-Move_amidi_backend_in_usr_lib_audacious patch, fixed upstream. + - Update 001-Fix_FTBFS_with_gcc4.3 patch. + * Update CURL build-depends to libcurl4-gnutls-dev to fix FTBFS (Closes: #423450). + + -- Adam Cécile (Le_Vert) Sat, 12 May 2007 22:17:05 +0200 + +audacious-plugins (1.3.3-2) unstable; urgency=low + + * Extra plugins now pre-depends on plugins to avoid overwrites. + * Add missing includes to fix FTBFS with GCC 4.3 (Closes: #417115). + * Add libmcs-dev to audacious-dev depends (Closes: #420592). + * Install aosd plugin to audacious-plugins-extra. + + -- Adam Cécile (Le_Vert) Mon, 23 Apr 2007 08:59:19 +0200 + +audacious-plugins (1.3.3-1) unstable; urgency=low + + * New upstream release. + * Update debian/watch. + * Remove 001-Fix-FTBFS-on-arm patch, fixed upstream. + * Add 001-Move_amidi_backend_in_usr_lib_audacious patch. + * Enable new plugins (Closes: #408691). + + -- Adam Cécile (Le_Vert) Tue, 20 Mar 2007 10:23:18 +0100 + +audacious-plugins (1.2.5-1) unstable; urgency=low + + * New upstream release. + * Fix FTBFS on arm (Closes: 400482). + * Touch mk/rules.mk to avoid configure to be run when building in a clean sources tree. + * Don't build PulseAudio backend on hurd/kfreebsd (FTBFS). + + -- Adam Cécile (Le_Vert) Sun, 26 Nov 2006 23:30:15 +0100 + +audacious-plugins (1.2.2-3) unstable; urgency=low + + * Conflicts with audacious (<< 1.2) (Closes: #399448). + + -- Adam Cécile (Le_Vert) Mon, 20 Nov 2006 08:15:57 +0100 + +audacious-plugins (1.2.2-2) unstable; urgency=low + + * Build-depend on audacious-dev (>= 1.2.1-2) to avoid using a buggy + audacious-dev package. + + -- Adam Cécile (Le_Vert) Sun, 19 Nov 2006 18:06:40 +0100 + +audacious-plugins (1.2.2-1) unstable; urgency=low + + * Initial release. + + -- Adam Cécile (Le_Vert) Fri, 3 Nov 2006 18:24:53 +0100 --- audacious-plugins-1.3.5.orig/debian/audacious-plugins-extra.links +++ audacious-plugins-1.3.5/debian/audacious-plugins-extra.links @@ -0,0 +1 @@ +/usr/share/doc/audacious-plugins /usr/share/doc/audacious-plugins-extra --- audacious-plugins-1.3.5.orig/debian/compat +++ audacious-plugins-1.3.5/debian/compat @@ -0,0 +1 @@ +5 --- audacious-plugins-1.3.5.orig/debian/copyright +++ audacious-plugins-1.3.5/debian/copyright @@ -0,0 +1,466 @@ +This package was debianized by Adam Cécile (Le_Vert) on +Fri, 3 Nov 2006 18:24:53 +0100. + +It was downloaded from http://www.audacious-media-player.org/ + +Upstream Author: George Averill + Giacomo Lozito + William Pitcock + Mohammed Sameer + Tony Vroon + Yoshiki Yazawa + +Copyright: (C) 2005-2006 Audacious Development Team (see above) + (C) 2003-2004 BMP Development Team + (C) 1998-2003 XMMS Development Team + +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'. + +All files except those listed below are distributed under the GPL with the +copyright above. + +"src/audiocompress/*" are distributed under terms of GNU Lesser +General Public License. + +"src/ladspa/ladspa.c" is (C) 2002,2003 Nick Lamb and distributed +under terms of GNU General Public License. + +"src/ladspa/ladspa.h" is (C) 2000-2002 Richard W.E. Furse, +Paul Barton-Davis, Stefan Westerfeld and distributed under terms of GNU +Lesser General Public License. + +"src/voice_removal/voice_removal.c" is (C) 2000-2001 +Konstantin Laevsky and distributed under terms of GNU General Public License. + +"src/scrobbler/md5.c" and "src/scrobbler/md5.h" are +(C) 1999, 2000, 2002 Aladdin Enterprises and distributed under terms of the +license below : + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + +"src/aac/*" are (C) 2003-2004 M. Bakker, Ahead Software AG and +distributed under terms of GNU General Public License. + + Except the files below : + + "src/aac/libfaad2/hcr.c is 2004 G.C. Pascutto, Ahead Software AG and + distributed under terms of GNU General Public License. + + "src/aac/mp4ff/*" are (C) 2004 VideoLAN and distributed under terms of + GNU General Public License. + + "src/aac/src/tagging_mp4.c" and "src/aac/src/tagging.h" are + (C) 2005-2006 William Pitcock and distributed under terms of GNU General + Public License. + + "src/aac/src/xmms-id3.h" is (C) 1998, 1999, 2002, Espen Skoglund + and distributed under terms of GNU General Public License. + +"src/adplug/*" are (C) 1999-2006 Simon Peter and distributed under +terms of GNU Lesser General Public License. + + Except the files below : + + "src/adplug/core/fmopl.c" is (C) 1999,2000 Tatsuyuki Satoh and + distributed under terms of GNU Lesser General Public License. + + "src/adplug/core/debug.c", "src/adplug/core/debug.h", + "src/adplug/core/database.cpp" and + "src/adplug/core/database.h" are (C) 2002 Riven the Mage and + (C) 2002-2006 Simon Peter and distributed under terms of GNU Lesser General + Public License. + + "src/adplug/core/adlibemu.c" and "src/adplug/core/adlibemu.c" are + (C) 1998-2001 Ken Silverman and distributed under terms of GNU Lesser + General Public License. + + "src/adplug/core/adl.cpp" is (C) 1999-2006 Simon Peter and + (C) 2006 The ScummVM project and distributed under terms of GNU Lesser + General Public License. + +"src/amidi-plug/*" are (C) 2005-2006 Giacomo Lozito and distributed +under terms of GNU General Public License. + + Except the file below : + + "src/amidi-plug/i_midi.c" is (C) 2004 Clemens Ladisch and + (C) 2005-2006 Giacomo Lozito and distributed under terms of GNU General + Public License. + +"src/console/*" is (C) 2003-2006 Shay Green and distributed under +terms of GNU Lesser General Public License. + + Except the file below : + + "src/console/Spc_Dsp.cpp" is (C) 2002 Brad Martin and + (C) 2004-2006 Shay Green and distributed under terms of GNU Lesser + General Public License. + + "src/console/Ym2612_Emu.cpp" is (C) 2002 Stéphane Dallongeville + and (C) 2004-2006 Shay Green and distributed under terms of GNU Lesser + General Public License. + +"src/flac*" is (C) 2000-2005 Josh Coalson and distributed under +terms of GNU General Public License. + + Except the files below : + + "src/flac/charset.c" and "src/flac/charset.h" are + (C) 1999-2000 Håvard Kvålen and (C) 2002-2005 Daisuke Shimamura and + distributed under terms of GNU General Public License. + + "src/flac/configure.c" is (C) 2000-2002 Jerome Couderc and + (C) 2002-2005 Daisuke Shimamura and distributed under terms of GNU + General Public License. + + "src/flac/configure.h" is (C) 2002-2005 Daisuke Shimamura and + distributed under terms of GNU General Public License. + + "src/flac/fileinfo.c" is (C) 1999-2000 Håvard Kvålen, + (C) 2002-2005 Daisuke Shimamura and (C) 1998-2000 Peter Alm, Mikael Alm, + Olle Hallnas, Thomas Nilsson and 4Front Technologies and distributed under + terms of GNU General Public License. + + "src/flac/http.c" is (C) 1998-2000 Peter Alm, Mikael Alm, + Olle Hallnas, Thomas Nilsson and 4Front Technologies and distributed under + terms of GNU General Public License. + + "src/flac/plugin_common/charset.h", "src/flac/plugin_common/charset.c" and + "src/flac/plugin_common/locale_hack.h" are + (C) 1999-2001 Håvard Kvålen and (C) 2000-2005 Josh Coalson and distributed + under terms of GNU General Public License. + + "src/flac/plugin_common/dither.c" is (C) 2000-2001 Robert Leslie + and (C) 2000-2005 Josh Coalson and distributed under terms of GNU General + Public License. + + "src/flac/replaygain_analysis.c" and "src/flac/replaygain_analysis.h" are + (C) 2001 David Robinson and Glen Sawyer and distributed under terms of GNU + Lesser General Public License. + + "src/flac/replaygain_synthesis.c" is (C) 2002 John Edwards and + (C) 2000-2005 Josh Coalson and distributed under terms of GNU General + Public License. + + "src/flac/tag.c" and "src/flac/tag.h" are + (C) 2002-2005 Daisuke Shimamura and (C) 2000-2005 Josh Coalson and + distributed under terms of GNU General Public License. + +"src/modplug/*" are public domain. No copyright claimed for these +files : + + This source code is public domain. + +"src/mpg123/*" are (C) 2005-2006 William Pitcock, +Portions copyright (C) 2001 Rafal Bosak and +Portions copyright (C) 1999 Michael Hipp and distributed under terms of GNU +General Public License. + +"src/sexypsf/*" are (C) 1999-2002 Pcsx Team and distributed under +terms of GNU General Public License. + + Except the files below : + + "src/sexypsf/spu.c" is (C) 2002 Pete Bernert and distributed + under terms of GNU General Public License. + + "src/sexypsf/xmms.c" is (C) 2002-2004 xodnizel and distributed + under terms of GNU Lesser General Public License. + + "src/sexypsf/spu/*" are (C) 2002 Pete Bernert and distributed + under terms of GNU General Public License. + + Except the files below : + + "src/sexypsf/spu/gauss_i.h" is (C) 2003 Chris Moeller and + distributed under terms of GNU General Public License. + +"src/sid/*" is (C) 1999-2005 Tecnic Software productions (TNSP) +and distributed under terms of GNU General Public License. + + Except the file below : + + "src/sid/xs_md5.c" is (C) 1999 Aladdin Enterprises and + distributed under the license below : + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + +"src/timidity/*" are (C) 1995 Tuukka Toivonen and distributed +under terms of GNU General Public License. + + Except the files below : + + "src/timidity/libtimidity/timidity.h", "src/timidity/src/xmms-timidity.c" + and "src/timidity/src/xmms-timidity.h" are + (C) 2004 Konstantin Korikov and distributed under terms of GNU General + Public License. + +"src/tonegen/tonegen.c" is (C) 2000,2001 Haavard Kvaalen and +distributed under terms of GNU General Public License. + +"src/vorbis/vorbis.c" is (C) Tony Arcieri, +(C) 2001-2002 Haavard Kvaalen and ReplayGain processing +(C) 2002 Gian-Carlo Pascutto and distributed under terms of GNU General + Public License. + +"src/wav/wav-sndfile.c" and "src/wav/wav-sndfile.h" are +(C) 2000, 2002 Erik de Castro Lopo and (C) 2005 Audacious development team +and distributed under terms of GNU General Public License. + +"src/wma/libffwma/avio.c" is (C) 2001 Fabrice Bellard and +distributed under terms of GNU Lesser General Public License. + +"src/wma/libffwma/utils.c" is (C) 2001 Fabrice Bellard, +(C) 2003 Michel Bardiaux, (C) 2002-2004 Michael Niedermayer and +(C) 2004 Roman Bogorodskiy and distributed under terms of GNU Lesser +General Public License. + +"src/wma/libffwma/mms.h", "src/wma/libffwma/mms.c", +"src/wma/libffwma/mmsh.h" and "src/wma/libffwma/mmsh.c" +are (C) 2002-2004 the xine project and distributed under terms of GNU General +Public License. + +"src/wma/libffwma/os_support.c", "src/wma/libffwma/cutils.c", +"src/wma/libffwma/fft.c","src/wma/libffwma/allformats.c", +"src/wma/libffwma/futils.c", "src/wma/libffwma/asf.c", +"src/wma/libffwma/mem.c", "src/wma/libffwma/file.c", +and "src/wma/libffwma/mdct.c" are (C) 2000-2002 Fabrice Bellard +and distributed under terms of GNU Lesser General Public License. + +"src/wma/libffwma/simple_idct.c" and +"src/wma/libffwma/simple_idct.h" are (C) 2001 Michael Niedermayer +and distributed under terms of GNU Lesser General Public License. + +"src/wma/libffwma/asfheader.h" is (C) 2000-2001 Gerard Lantau and +(C) 2000-2003 the xine project and distributed under terms of GNU General +Public License. + +"src/wma/libffwma/uri.c" and "src/wma/libffwma/uri.h" are +(C) 2000-2003 David Helder, David Bolcsfoldi, Eric Williams and distributed +under terms of GNU Lesser General Public License. + +"src/wma/libffwma/wmadec.c" is (C) 2002 The FFmpeg Project and +distributed under terms of GNU Lesser General Public License. + +"src/wma/libffwma/bswap.h" is (C) 2004 Maciej Katafiasz and +distributed under terms of GNU General Public License. + +"src/wma/libffwma/dsputil.c", "src/wma/libffwma/dsputil.h" and +"src/wma/libffwma/parser.c" are distributed under terms of GNU +Lesser General Public License. + +"src/wma/libffwma/common.c" is (C) 2000-2001 Fabrice Bellard, +(C) 2002-2004 Michael Niedermayer and (C) 2004 Roman Bogorodskiy and +distributed under terms of GNU Lesser General Public License. + +"src/wma/libffwma/allcodecs.c" is (C) 2002 Fabrice Bellard and +(C) 2004 Roman Bogorodskiy and distributed under terms of GNU Lesser General +Public License. + +"src/wma/libffwma/parser.c" is (C) 2003 Fabrice Bellard and +(C) 2003 Michael Niedermayer and distributed under terms of GNU Lesser +General Public License. + +"src/wma/wma.c" is (C) 2005 Audacious development team, +(C) 2004,2005 McMCC and (C) 2004 Roman Bogorodskiy and distributed under +terms of GNU General Public License. + +"src/jack/bio2jack.c", "src/jack/bio2jack.h" and "src/jack/jack.c" +are (C) 2002-2004 Chris Morgan and distributed under terms of GNU Lesser +General Public License. + +"src/OSS/soundcard.h" is (C) 1993-2000 Hannu Savolainen and +distributed under the license below : + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. 2. + Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + +"src/sun/*" are (C) 2001 CubeSoft Communications, Inc. and +distributed under terms of GNU General Public License. + + Except the files below : + + "src/sun/audioio.h" is (C) 1991-1993 Regents of the University of + California and distributed under terms of the license below : + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the Computer Systems + Engineering Group at Lawrence Berkeley Laboratory. + 4. Neither the name of the University nor of the Laboratory may be used + to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + "src/sun/convert.c" is (C) 2001 Haavard Kvaalen and + distributed under terms of GNU General Public License. + + "src/sun/resample.h" is (C) 1998-2001 Peter Alm, Mikael Alm, + Olle Hallnas, Thomas Nilsson and 4Front Technologies and + (C) 1999-2001 Haavard Kvaalen and distributed under terms of GNU + General Public License. + +"src/alac/*" are (C) 2005-2006 David Hammerton and distributed under terms of +the license below : + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + +"src/alarm/*" are (C) Adam Feakin +and is licensed under the GPL, see above. --- audacious-plugins-1.3.5.orig/debian/patches/000-Move_arts_helper +++ audacious-plugins-1.3.5/debian/patches/000-Move_arts_helper @@ -0,0 +1,20 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run +## 000-Move_arts_helper by +## Adam Cécile (Le_Vert) +## +## DP: Move arts helper binary to /usr/lib/audacious + +@DPATCH@ + +diff -u audacious-plugins-1.2.2/src/arts/audio.c audacious-plugins-1.2.2/src/arts/audio.c.new +--- audacious-plugins-1.2.2/src/arts/audio.c 2006-08-25 13:57:52.000000000 +0200 ++++ audacious-plugins-1.2.2/src/arts/audio.c.new 2006-09-02 03:28:24.000000000 +0200 +@@ -368,7 +368,7 @@ + char sockfdstr[10]; + close(sockets[1]); + sprintf(sockfdstr, "%d", sockets[0]); +- execlp("audacious-arts-helper", "audacious-arts-helper", ++ execlp("/usr/lib/audacious/audacious-arts-helper", "audacious-arts-helper", + sockfdstr, NULL); + g_warning("artsxmms_start_helper(): " + "Failed to start audacious-arts-helper: %s", strerror(errno)); --- audacious-plugins-1.3.5.orig/debian/patches/001-Fix_FTBFS_with_gcc4.3 +++ audacious-plugins-1.3.5/debian/patches/001-Fix_FTBFS_with_gcc4.3 @@ -0,0 +1,39 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 002-Fix_FTBFS_with_gcc4.3 +## by Martin Michlmayr +## +## DP: Add missing includes to get it build with gcc 4.3. + +@DPATCH@ + +--- audacious-plugins-1.3.3/src/modplug/archive/arch_raw.cxx~ 2007-04-01 15:51:34.000000000 +0000 ++++ audacious-plugins-1.3.3/src/modplug/archive/arch_raw.cxx 2007-04-01 15:51:50.000000000 +0000 +@@ -11,6 +11,8 @@ + //mmap() + #include + #include ++//free() ++#include + + #include "arch_raw.h" + +--- audacious-plugins-1.3.3/src/modplug/archive/arch_rar.cxx~ 2007-04-01 15:54:15.000000000 +0000 ++++ audacious-plugins-1.3.3/src/modplug/archive/arch_rar.cxx 2007-04-01 15:54:30.000000000 +0000 +@@ -10,6 +10,7 @@ + #include + #include + #include ++#include // strtol() + + #include "arch_rar.h" + #include +--- audacious-plugins-1.3.4/src/adplug/core/rix.cxx 2007-05-12 22:26:25.000000000 +0200 ++++ audacious-plugins-1.3.4/src/adplug/core/rix.cxx.new 2007-05-12 22:30:49.000000000 +0200 +@@ -22,6 +22,7 @@ + + #include "rix.h" + #include "debug.h" ++#include + + const unsigned char + CrixPlayer::adflag[] = --- audacious-plugins-1.3.5.orig/debian/patches/00list +++ audacious-plugins-1.3.5/debian/patches/00list @@ -0,0 +1,2 @@ +000-Move_arts_helper +001-Fix_FTBFS_with_gcc4.3 --- audacious-plugins-1.3.5.orig/debian/audacious-plugins.install +++ audacious-plugins-1.3.5/debian/audacious-plugins.install @@ -0,0 +1,12 @@ +usr/lib/audacious/Container/* +usr/lib/audacious/General/libstatusicon.so +usr/lib/audacious/Input/libaac.so +usr/lib/audacious/Input/libalac.so +usr/lib/audacious/Input/libcdaudio.so +usr/lib/audacious/Input/libflac.so +usr/lib/audacious/Input/libmadplug.so +usr/lib/audacious/Input/libvorbis.so +usr/lib/audacious/Input/libwav.so +usr/lib/audacious/Input/libwma.so +usr/lib/audacious/Output/libOSS.so +usr/lib/audacious/Output/libdisk_writer.so