Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/gnomoradio: ChangeLog gnomoradio-0.15.1.ebuild
Date: Sat, 18 Jul 2009 10:38:24
Message-Id: E1MS7J8-0003S3-7k@stork.gentoo.org
1 ssuominen 09/07/18 10:38:22
2
3 Modified: ChangeLog gnomoradio-0.15.1.ebuild
4 Log:
5 Insert -lm to LIBADD for forced asneeded wrt #274074.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.21 media-sound/gnomoradio/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gnomoradio/ChangeLog?rev=1.21&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gnomoradio/ChangeLog?rev=1.21&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gnomoradio/ChangeLog?r1=1.20&r2=1.21
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/gnomoradio/ChangeLog,v
18 retrieving revision 1.20
19 retrieving revision 1.21
20 diff -u -r1.20 -r1.21
21 --- ChangeLog 19 Dec 2008 18:04:30 -0000 1.20
22 +++ ChangeLog 18 Jul 2009 10:38:22 -0000 1.21
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-sound/gnomoradio
25 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gnomoradio/ChangeLog,v 1.20 2008/12/19 18:04:30 aballier Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnomoradio/ChangeLog,v 1.21 2009/07/18 10:38:22 ssuominen Exp $
29 +
30 + 18 Jul 2009; Samuli Suominen <ssuominen@g.o>
31 + gnomoradio-0.15.1.ebuild, +files/gnomoradio-0.15.1-lm.patch:
32 + Insert -lm to LIBADD for forced asneeded wrt #274074.
33
34 19 Dec 2008; Alexis Ballier <aballier@g.o>
35 +files/gnomoradio-0.15.1-gcc43.patch, gnomoradio-0.15.1.ebuild:
36
37
38
39 1.11 media-sound/gnomoradio/gnomoradio-0.15.1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild?rev=1.11&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild?rev=1.11&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild?r1=1.10&r2=1.11
44
45 Index: gnomoradio-0.15.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild,v
48 retrieving revision 1.10
49 retrieving revision 1.11
50 diff -u -r1.10 -r1.11
51 --- gnomoradio-0.15.1.ebuild 19 Dec 2008 18:04:30 -0000 1.10
52 +++ gnomoradio-0.15.1.ebuild 18 Jul 2009 10:38:22 -0000 1.11
53 @@ -1,10 +1,9 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild,v 1.10 2008/12/19 18:04:30 aballier Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild,v 1.11 2009/07/18 10:38:22 ssuominen Exp $
59
60 -EAPI=1
61 -
62 -inherit eutils
63 +EAPI=2
64 +inherit autotools eutils
65
66 DESCRIPTION="Finds, fetches, shares, and plays freely licensed music."
67 HOMEPAGE="http://gnomoradio.org"
68 @@ -25,19 +24,20 @@
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 -src_unpack() {
73 - unpack ${A}
74 - cd "${S}"
75 - epatch "${FILESDIR}"/${P}-gcc42.patch
76 - epatch "${FILESDIR}"/${P}-gcc43.patch
77 +src_prepare() {
78 + epatch "${FILESDIR}"/${P}-gcc42.patch \
79 + "${FILESDIR}"/${P}-gcc43.patch \
80 + "${FILESDIR}"/${P}-lm.patch
81 + eautoreconf
82 }
83
84 -src_compile() {
85 - econf --disable-dependency-tracking $(use_enable vorbis)
86 - emake || die "emake failed."
87 +src_configure() {
88 + econf \
89 + --disable-dependency-tracking \
90 + $(use_enable vorbis)
91 }
92
93 src_install() {
94 - emake DESTDIR="${D}" install || die "emake install failed."
95 + emake DESTDIR="${D}" install || die "emake install failed"
96 dodoc AUTHORS ChangeLog NEWS README TODO
97 }