debian/0000755000000000000000000000000012232325757007176 5ustar debian/copyright0000644000000000000000000000263511717512453011135 0ustar This package was debianized by Chris Taylor on Tue, 14 Aug 2007 06:50:56 -0400. It was downloaded from http://www.code-monkeys.org/audtty/ Upstream Authors: Tony Vroon Christian Birchinger Kiyoshi Aman Chris Taylor Copyright: © 2003-2005 Knut Auvor Grythe © 2005 Kiyoshi Aman © 2008-2010 Chris Taylor 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, 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 the file `/usr/share/common-licenses/GPL-2'. The Debian packaging is © 2007-2010, Chris Taylor and is licensed under the GPL, see above. debian/patches/0000755000000000000000000000000012232325370010614 5ustar debian/patches/00-Makefile0000644000000000000000000000102511717512453012476 0ustar Patch Makefile.in to support the debian build system. Author: Chris Taylor --- a/Makefile.in +++ b/Makefile.in @@ -1,14 +1,11 @@ # audtty -# -# A fork of xmms-curses -DESTDIR= -# autoconf is dumb. prefix=${DESTDIR} -exec_prefix=@prefix@ -bindir=@bindir@ -mandir=@prefix@/share/man/man1 -sysconfdir=@sysconfdir@ +exec_prefix=${DESTDIR} +bindir=${DESTDIR}/usr/bin +mandir=${DESTDIR}/usr/share/man/man1 +sysconfdir=${DESTDIR}/@sysconfdir@ + AUDACIOUS_CFLAGS=@AUDACIOUS_CFLAGS@ -I/usr/include/dbus-1.0 debian/patches/01-ftbfs_dso_linking0000644000000000000000000000152411717514334014452 0ustar Description: Fix FTBFS due to indirect linking Author: Andreas Moog Bug-Ubuntu: https://bugs.launchpad.net/749143 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=618068 --- a/Makefile.in +++ b/Makefile.in @@ -8,6 +8,7 @@ sysconfdir=${DESTDIR}/@sysconfdir@ AUDACIOUS_CFLAGS=@AUDACIOUS_CFLAGS@ -I/usr/include/dbus-1.0 +LDADD=-ldbus-glib-1 -lncursesw -laudclient -lglib-2.0 -lgobject-2.0 SOURCES=main.c curses_printf.c playlist.c playlist_jump.c playlist_addurl.c settings.c connect.c browse.c playlist_create.c BINS=$(SOURCES:.c=.o) @@ -17,7 +18,7 @@ build: audtty all: audtty audtty: ${BINS} - cc -g -O2 -g2 -Wall -Werror -lncursesw -laudclient ${LDFLAGS} -o audtty $(BINS) + cc -g -O2 -g2 -Wall -Werror ${LDFLAGS} -o audtty $(BINS) $(LDADD) .c.o: cc -g -Wall ${AUDACIOUS_CFLAGS} ${CFLAGS} -o $@ -c $< debian/patches/series0000644000000000000000000000006611717514014012035 0ustar 00-Makefile 01-ftbfs_dso_linking 02-glib_include_link debian/patches/02-glib_include_link0000644000000000000000000000141512232325370014414 0ustar --- a/Makefile.in +++ b/Makefile.in @@ -8,7 +8,8 @@ sysconfdir=${DESTDIR}/@sysconfdir@ AUDACIOUS_CFLAGS=@AUDACIOUS_CFLAGS@ -I/usr/include/dbus-1.0 -LDADD=-ldbus-glib-1 -lncursesw -laudclient -lglib-2.0 -lgobject-2.0 +GLIB_CFLAGS=`pkg-config --cflags glib-2.0` +LDADD=-ldbus-glib-1 -lncursesw -laudclient -lgobject-2.0 `pkg-config --libs glib-2.0 ` SOURCES=main.c curses_printf.c playlist.c playlist_jump.c playlist_addurl.c settings.c connect.c browse.c playlist_create.c BINS=$(SOURCES:.c=.o) @@ -21,7 +22,7 @@ audtty: ${BINS} cc -g -O2 -g2 -Wall -Werror ${LDFLAGS} -o audtty $(BINS) $(LDADD) .c.o: - cc -g -Wall ${AUDACIOUS_CFLAGS} ${CFLAGS} -o $@ -c $< + cc -g -Wall ${AUDACIOUS_CFLAGS} ${GLIB_CFLAGS} ${CFLAGS} -o $@ -c $< install: audtty mkdir -p ${bindir} debian/source/0000755000000000000000000000000011717512453010474 5ustar debian/source/format0000644000000000000000000000001411717512453011702 0ustar 3.0 (quilt) debian/menu0000644000000000000000000000014411717512453010062 0ustar ?package(audtty):needs="text" section="Applications/Sound" title="audtty" command="/usr/bin/audtty" debian/rules0000755000000000000000000000036211717513345010256 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_configure: ln -sf /usr/share/misc/config.sub . ln -sf /usr/share/misc/config.guess . autoconf dh_auto_configure override_dh_auto_clean: rm -f config.sub rm -f config.guess dh_auto_clean debian/compat0000644000000000000000000000000211717513067010374 0ustar 9 debian/README.source0000644000000000000000000000041611717512453011354 0ustar There are no special requirements needed to build audtty from source. It uses the quilt patch system, which you can find information about on Debian systems at '/usr/share/doc/quilt/README.source.' -- Chris Taylor Sun, 06 Dec 2009 17:02:39 -0700 debian/docs0000644000000000000000000000000711717512453010044 0ustar README debian/watch0000644000000000000000000000010311717512453010217 0ustar version=3 http://www.code-monkeys.org/audtty/ audtty-(.*)\.tar\.gz debian/changelog0000644000000000000000000001106112232324502011032 0ustar audtty (0.1.12-4) unstable; urgency=low * Fix amd64 build-failure, patch from Peter Michael Green. (Closes: #713688) * Bump standards-version. -- Chris Taylor Thu, 24 Oct 2013 19:03:33 +0000 audtty (0.1.12-3) unstable; urgency=low * Bump compat to 9. * Include patch 02-glib_include_link from Peter Green. (Closes: #658589) * Include updated patch from Andreas Moog. (Closes: #649207). - Also remove exports from debian/rules to support this. * Bump build-dep on debhelper. -- Chris Taylor Fri, 17 Feb 2012 09:58:47 -0800 audtty (0.1.12-2) unstable; urgency=low * Include patch from Peter Green (Closes: #625308). * Include patch from Andreas Moog (Closes: #618068). * Bump standards-version to 3.9.2 * Remove build-dep on quilt. -- Chris Taylor Tue, 23 Aug 2011 22:22:20 +0000 audtty (0.1.12-1) unstable; urgency=low * New upstream release. * Bump standards-version. * Remove patch 01-binutils. -- Chris Taylor Sun, 28 Feb 2010 18:19:07 +0000 audtty (0.1.11-4) unstable; urgency=low * Don't use quilt in debian/rules. * Use system config.{sub,guess}. * Update debian/copyright. -- Chris Taylor Sun, 20 Dec 2009 23:41:28 -0700 audtty (0.1.11-3) unstable; urgency=low * Use minimal dh7 instead of cdbs and remove cdbs depends. * Update my email address. * Update debian/copyright. * Update depends. - Build-depend on audacious-dev (>= 2). - Depend on libaudclient2. - Build-depend on debhelper (>= 7.0.50~). -- Chris Taylor Mon, 07 Dec 2009 01:00:40 +0000 audtty (0.1.11-2) unstable; urgency=low * Use source format 3.0 (quilt). * Fix building with binutils-gold in patch 01-binutils (Closes: #553936). -- Chris Taylor Tue, 03 Nov 2009 01:57:35 +0000 audtty (0.1.11-1) unstable; urgency=low * New upstream release. * Update watch file with current upstream address. * Bump standards-version in debian/control. * Update Vcs-Browser in debian/control. * Add debian/README.source. -- Chris Taylor Tue, 18 Aug 2009 17:11:45 +0000 audtty (0.1.10-1) unstable; urgency=low * New upstream release. * Remove patch 01-Manpage as it was merged upstream. * Change libncurses-dev dependency to libncursesw5-dev to reflect upstream change. * Update Vcs-Browser and Vcs-git in debian/control. * Update debian/copyright to reflect year change. * Add versioned Build-Depends on audacious-dev to reflect upstream change. * Upstream patched manpage to list OPTIONS in alphabetical order and to add a simple player control ASCII graphic. (Closes: #516103, #516108). * Fixed copyright symbols in debian/copyright. * Added patch description to patch 00-Makefile. -- Chris Taylor Mon, 01 Jun 2009 21:17:14 +0000 audtty (0.1.9a-2) unstable; urgency=low * Bump standards-version in order to fix lintian warning. * Fix quilt patches to support source format 3.0. (Closes: #485340) -- Chris Taylor Mon, 21 Jul 2008 03:20:44 +0000 audtty (0.1.9a-1) unstable; urgency=low * New upstream release. * Added depends on dbus-x11. -- Chris Taylor Fri, 06 Jun 2008 23:00:58 +0000 audtty (0.1.8-2) unstable; urgency=low * Fix bug in handling of URI's in 02-FixURI. * Backport DBUS handling code from Audtty GIT in 03-DBUS. -- Chris Taylor Fri, 04 Apr 2008 07:13:45 +0000 audtty (0.1.8-1) unstable; urgency=low * New upstream release. * Bumped Standards-Version in debian/control. * Patched Makefile.in in 00-Makefile to support Debian packaging. * Added watch file. -- Chris Taylor Tue, 05 Feb 2008 21:09:53 +0000 audtty (0.1.6a-1) unstable; urgency=low * Patched libraries in 00-Makefile. Also fix prefix for config. * Backported dbus error handling in 01-Dbus. * New upstream version. -- Chris Taylor Sat, 24 Nov 2007 14:44:32 +0100 audtty (0.1.5a-2) unstable; urgency=low * Fixed FTBFS (Closes: #450444) -Added patch 03-audctrl * Removed watch file as upstream seems to be dead. (Closes: #449947) * Changed debian/control file to use the new Homepage field. -- Chris Taylor Wed, 07 Nov 2007 19:11:21 +0100 audtty (0.1.5a-1) unstable; urgency=low * Patched makefile because upstream version ignored DESTDIR * Initial release (Closes: #437368) -- Chris Taylor Tue, 16 Aug 2007 16:49:30 +0200 debian/control0000644000000000000000000000144512232324734010577 0ustar Source: audtty Section: sound Priority: optional Maintainer: Chris Taylor Homepage: http://audtty.alioth.debian.org Vcs-Git: git://git.code-monkeys.org/audtty.git Vcs-Browser: http://git.code-monkeys.org/cgit.cgi/audtty.git/ Build-Depends: debhelper (>= 9), audacious-dev, libncursesw5-dev, libdbus-1-dev, autoconf Standards-Version: 3.9.4 Package: audtty Architecture: any Depends: ${shlibs:Depends},${misc:Depends},libaudclient2,audacious,dbus-x11 Description: ncurses based frontend to audacious Audtty is an ncurses based terminal frontend to the Audacious Media Player. It is a fork of xmms-curses and is designed to be lightweight and intuitive to use. . Audtty makes it easy to control the Audacious Media Player from the command line whether locally or remotely.