Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/streamtuner: streamtuner-0.99.99-r5.ebuild ChangeLog
Date: Fri, 27 Sep 2013 22:18:25
Message-Id: 20130927221818.823A62004C@flycatcher.gentoo.org
1 pacho 13/09/27 22:18:18
2
3 Modified: streamtuner-0.99.99-r5.ebuild ChangeLog
4 Log:
5 Pass proper option to compile-warnings to enable warnings but not errors (#481124), fix desktop entry
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
8
9 Revision Changes Path
10 1.6 net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild?r1=1.5&r2=1.6
15
16 Index: streamtuner-0.99.99-r5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- streamtuner-0.99.99-r5.ebuild 5 May 2012 03:20:45 -0000 1.5
23 +++ streamtuner-0.99.99-r5.ebuild 27 Sep 2013 22:18:18 -0000 1.6
24 @@ -1,8 +1,8 @@
25 -# Copyright 1999-2012 Gentoo Foundation
26 +# Copyright 1999-2013 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild,v 1.5 2012/05/05 03:20:45 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r5.ebuild,v 1.6 2013/09/27 22:18:18 pacho Exp $
30
31 -EAPI=2
32 +EAPI=5
33 GCONF_DEBUG=no
34 inherit eutils gnome2
35
36 @@ -16,29 +16,44 @@
37 KEYWORDS="amd64 ~ppc ~sparc x86"
38 IUSE="python +shout +xiph"
39
40 -RDEPEND=">=x11-libs/gtk+-2.4:2
41 +RDEPEND="
42 + >=x11-libs/gtk+-2.4:2
43 net-misc/curl
44 app-text/scrollkeeper
45 xiph? ( dev-libs/libxml2:2 )
46 >=media-libs/taglib-1.2
47 python? ( dev-python/pygtk:2 )
48 - x11-misc/xdg-utils"
49 + x11-misc/xdg-utils
50 +"
51 DEPEND="${RDEPEND}
52 - virtual/pkgconfig"
53 -
54 -pkg_setup() {
55 - # live365 causes parse errors at connect time.
56 - G2CONF="--disable-live365 $(use_enable python)
57 - $(use_enable shout shoutcast) $(use_enable xiph)"
58 - DOCS="AUTHORS NEWS README TODO"
59 -}
60 + dev-util/gtk-doc-am
61 + virtual/pkgconfig
62 +"
63
64 src_prepare() {
65 - gnome2_src_prepare
66 epatch "${FILESDIR}"/${P}-gentoo.patch \
67 "${FILESDIR}"/${P}-shoutcast.patch \
68 "${FILESDIR}"/${P}-shoutcast-2.patch \
69 "${FILESDIR}"/${P}-audacious.patch \
70 "${DISTDIR}"/${P}-pygtk-2.6.diff \
71 "${FILESDIR}"/${P}-stack_increase.patch
72 +
73 + # Fix .desktop file
74 + sed -i \
75 + -e 's/streamtuner.png/streamtuner/' \
76 + -e 's/Categories=Application;/Categories=/' \
77 + data/streamtuner.desktop.in || die
78 +
79 + gnome2_src_prepare
80 +}
81 +
82 +src_configure() {
83 + # live365 causes parse errors at connect time
84 + # The right value for compile-warning for this is 'yes' (#481124)
85 + gnome2_src_configure \
86 + --enable-compile-warnings=yes \
87 + --disable-live365 \
88 + $(use_enable python) \
89 + $(use_enable shout shoutcast) \
90 + $(use_enable xiph)
91 }
92
93
94
95 1.42 net-misc/streamtuner/ChangeLog
96
97 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/streamtuner/ChangeLog?rev=1.42&view=markup
98 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/streamtuner/ChangeLog?rev=1.42&content-type=text/plain
99 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/streamtuner/ChangeLog?r1=1.41&r2=1.42
100
101 Index: ChangeLog
102 ===================================================================
103 RCS file: /var/cvsroot/gentoo-x86/net-misc/streamtuner/ChangeLog,v
104 retrieving revision 1.41
105 retrieving revision 1.42
106 diff -u -r1.41 -r1.42
107 --- ChangeLog 5 May 2012 03:20:45 -0000 1.41
108 +++ ChangeLog 27 Sep 2013 22:18:18 -0000 1.42
109 @@ -1,6 +1,10 @@
110 # ChangeLog for net-misc/streamtuner
111 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
112 -# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/ChangeLog,v 1.41 2012/05/05 03:20:45 jdhore Exp $
113 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
114 +# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/ChangeLog,v 1.42 2013/09/27 22:18:18 pacho Exp $
115 +
116 + 27 Sep 2013; Pacho Ramos <pacho@g.o> streamtuner-0.99.99-r5.ebuild:
117 + Pass proper option to compile-warnings to enable warnings but not errors
118 + (#481124), fix desktop entry
119
120 05 May 2012; Jeff Horelick <jdhore@g.o> streamtuner-0.99.99-r5.ebuild:
121 dev-util/pkgconfig -> virtual/pkgconfig
122 @@ -184,4 +188,3 @@
123 Initial revision.
124
125 Submitted by: Ulli Ivens
126 -