summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Vroon <chainsaw@gentoo.org>2009-02-18 15:52:23 +0000
committerTony Vroon <chainsaw@gentoo.org>2009-02-18 15:52:23 +0000
commit29c0184588dfec6e632366c512001f95ce3f6e84 (patch)
tree3049789c4d6000e799e45d632066215521a5e0cd /media-sound/audtty
parentDue to lack of hardware I have been unable to attend to this package. I will ... (diff)
downloadgentoo-2-29c0184588dfec6e632366c512001f95ce3f6e84.tar.gz
gentoo-2-29c0184588dfec6e632366c512001f95ce3f6e84.tar.bz2
gentoo-2-29c0184588dfec6e632366c512001f95ce3f6e84.zip
Bump up audacious DEPEND to v1.5 where the D-Bus mess has been sorted out. Patch by Kevin Pyle <kevin.pyle@bluecoat.com> fixes link ordering and closes bug #247822 filed by Diego E. Flameeyes Pettenò <flameeyes@gentoo.org>.
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/audtty')
-rw-r--r--media-sound/audtty/ChangeLog14
-rw-r--r--media-sound/audtty/audtty-0.1.9a-r1.ebuild (renamed from media-sound/audtty/audtty-0.1.9a.ebuild)14
-rw-r--r--media-sound/audtty/files/audtty-0.1.9a-cc-and-destdir.patch2
3 files changed, 16 insertions, 14 deletions
diff --git a/media-sound/audtty/ChangeLog b/media-sound/audtty/ChangeLog
index b6e946ad1818..47416156bed6 100644
--- a/media-sound/audtty/ChangeLog
+++ b/media-sound/audtty/ChangeLog
@@ -1,6 +1,16 @@
# ChangeLog for media-sound/audtty
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/ChangeLog,v 1.19 2008/07/05 06:39:19 drac Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/ChangeLog,v 1.20 2009/02/18 15:52:23 chainsaw Exp $
+
+*audtty-0.1.9a-r1 (18 Feb 2009)
+
+ 18 Feb 2009; <chainsaw@gentoo.org>
+ files/audtty-0.1.9a-cc-and-destdir.patch, -audtty-0.1.9a.ebuild,
+ +audtty-0.1.9a-r1.ebuild:
+ Bump up audacious DEPEND to v1.5 where the D-Bus mess has been sorted out.
+ Patch by Kevin Pyle <kevin.pyle@bluecoat.com> fixes link ordering and
+ closes bug #247822 filed by Diego E. Flameeyes Pettenò
+ <flameeyes@gentoo.org>.
*audtty-0.1.9a (05 Jul 2008)
diff --git a/media-sound/audtty/audtty-0.1.9a.ebuild b/media-sound/audtty/audtty-0.1.9a-r1.ebuild
index fad8a674d252..9ee2737a2469 100644
--- a/media-sound/audtty/audtty-0.1.9a.ebuild
+++ b/media-sound/audtty/audtty-0.1.9a-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/audtty-0.1.9a.ebuild,v 1.1 2008/07/05 06:39:19 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/audtty-0.1.9a-r1.ebuild,v 1.1 2009/02/18 15:52:23 chainsaw Exp $
inherit autotools eutils toolchain-funcs
@@ -14,20 +14,12 @@ KEYWORDS="~alpha ~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="sys-libs/ncurses
- >=media-sound/audacious-1.4.4"
+ >=media-sound/audacious-1.5.1"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${PN}
-pkg_setup() {
- if has_version "=media-sound/audacious-1.4*"; then
- if ! built_with_use media-sound/audacious dbus; then
- die "Re-emerge media-sound/audacious with USE dbus."
- fi
- fi
-}
-
src_unpack() {
unpack ${A}
cd "${S}"
diff --git a/media-sound/audtty/files/audtty-0.1.9a-cc-and-destdir.patch b/media-sound/audtty/files/audtty-0.1.9a-cc-and-destdir.patch
index dd891186bbe1..fb78cf75f4b8 100644
--- a/media-sound/audtty/files/audtty-0.1.9a-cc-and-destdir.patch
+++ b/media-sound/audtty/files/audtty-0.1.9a-cc-and-destdir.patch
@@ -6,7 +6,7 @@ diff -ur audtty.orig/Makefile.in audtty/Makefile.in
audtty: ${BINS}
- cc -Wall -lncurses -laudclient ${LDFLAGS} -o audtty $(BINS)
-+ $(CC) -Wall -lncurses -laudclient ${LDFLAGS} -o audtty $(BINS)
++ $(CC) -Wall ${LDFLAGS} -o audtty $(BINS) -lncurses -laudclient
.c.o:
- cc -Wall ${AUDACIOUS_CFLAGS} ${CFLAGS} -o $@ -c $<