summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-07-10 01:20:22 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-07-10 01:20:22 +0000
commitbd5d60c5bc636d73446b1aac293a61b70ba7c68a (patch)
treebc670a99e18900d046f7ed602ed5cfede7a1d046 /net-misc/streamtuner
parenttypo (diff)
downloadgentoo-2-bd5d60c5bc636d73446b1aac293a61b70ba7c68a.tar.gz
gentoo-2-bd5d60c5bc636d73446b1aac293a61b70ba7c68a.tar.bz2
gentoo-2-bd5d60c5bc636d73446b1aac293a61b70ba7c68a.zip
274056
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/streamtuner')
-rw-r--r--net-misc/streamtuner/ChangeLog12
-rw-r--r--net-misc/streamtuner/files/streamtuner-0.99.99-stack_increase.patch5
-rw-r--r--net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild (renamed from net-misc/streamtuner/streamtuner-0.99.99-r4.ebuild)15
3 files changed, 22 insertions, 10 deletions
diff --git a/net-misc/streamtuner/ChangeLog b/net-misc/streamtuner/ChangeLog
index 2056865f011b..507767257f04 100644
--- a/net-misc/streamtuner/ChangeLog
+++ b/net-misc/streamtuner/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for net-misc/streamtuner
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/ChangeLog,v 1.35 2009/01/18 18:38:25 ssuominen Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/ChangeLog,v 1.36 2009/07/10 01:20:22 ssuominen Exp $
+
+*streamtuner-0.99.99-r5 (10 Jul 2009)
+
+ 10 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
+ -streamtuner-0.99.99-r4.ebuild, +streamtuner-0.99.99-r5.ebuild,
+ +files/streamtuner-0.99.99-stack_increase.patch:
+ Stack Increase from 96k to 256k to prevent segfaulting wrt #274056, thanks
+ to djkrysak at stny dot rr dot com.
*streamtuner-0.99.99-r4 (18 Jan 2009)
diff --git a/net-misc/streamtuner/files/streamtuner-0.99.99-stack_increase.patch b/net-misc/streamtuner/files/streamtuner-0.99.99-stack_increase.patch
new file mode 100644
index 000000000000..0b64aa72b098
--- /dev/null
+++ b/net-misc/streamtuner/files/streamtuner-0.99.99-stack_increase.patch
@@ -0,0 +1,5 @@
+--- src/streamtuner/st-thread.c
++++ src/streamtuner/st-thread.c
+@@ -108,1 +108,1 @@
+- 0x18000, /* 96k, big enough for libcurl */
++ 0x40000, /* change from 96k to 256k */
diff --git a/net-misc/streamtuner/streamtuner-0.99.99-r4.ebuild b/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild
index bdc6b46476c2..57966cf861f5 100644
--- a/net-misc/streamtuner/streamtuner-0.99.99-r4.ebuild
+++ b/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild
@@ -1,10 +1,9 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r4.ebuild,v 1.3 2009/01/18 18:44:43 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild,v 1.1 2009/07/10 01:20:22 ssuominen Exp $
-EAPI=1
+EAPI=2
GCONF_DEBUG=no
-
inherit eutils gnome2
DESCRIPTION="Stream directory browser for browsing internet radio streams"
@@ -31,15 +30,15 @@ pkg_setup() {
# live365 causes parse errors at connect time.
G2CONF="--disable-live365 $(use_enable python)
$(use_enable shout shoutcast) $(use_enable xiph)"
+ DOCS="AUTHORS NEWS README TODO"
}
-src_unpack() {
- gnome2_src_unpack
+src_prepare() {
+ gnome2_src_prepare
epatch "${FILESDIR}"/${P}-gentoo.patch \
"${FILESDIR}"/${P}-shoutcast.patch \
"${FILESDIR}"/${P}-shoutcast-2.patch \
"${FILESDIR}"/${P}-audacious.patch \
- "${DISTDIR}"/${P}-pygtk-2.6.diff
+ "${DISTDIR}"/${P}-pygtk-2.6.diff \
+ "${FILESDIR}"/${P}-stack_increase.patch
}
-
-DOCS="AUTHORS NEWS README TODO"