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/lame: ChangeLog lame-3.98.4.ebuild
Date: Mon, 23 Aug 2010 20:10:31
Message-Id: 20100823201027.F3B2B2004E@flycatcher.gentoo.org
1 ssuominen 10/08/23 20:10:27
2
3 Modified: ChangeLog lame-3.98.4.ebuild
4 Log:
5 eapi3, prefix changes
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.122 media-sound/lame/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.122&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?rev=1.122&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/ChangeLog?r1=1.121&r2=1.122
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v
18 retrieving revision 1.121
19 retrieving revision 1.122
20 diff -u -r1.121 -r1.122
21 --- ChangeLog 23 Aug 2010 19:54:34 -0000 1.121
22 +++ ChangeLog 23 Aug 2010 20:10:27 -0000 1.122
23 @@ -1,9 +1,9 @@
24 # ChangeLog for media-sound/lame
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.121 2010/08/23 19:54:34 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/ChangeLog,v 1.122 2010/08/23 20:10:27 ssuominen Exp $
28
29 23 Aug 2010; Samuli Suominen <ssuominen@g.o> lame-3.98.4.ebuild:
30 - USE="static-libs" and punt .la files.
31 + USE="static-libs", punt .la files, convert to EAPI=\"3\" and add prefix keywords in.
32
33 *lame-3.98.4 (12 Apr 2010)
34
35
36
37
38 1.4 media-sound/lame/lame-3.98.4.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.98.4.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.98.4.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lame/lame-3.98.4.ebuild?r1=1.3&r2=1.4
43
44 Index: lame-3.98.4.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.4.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- lame-3.98.4.ebuild 23 Aug 2010 20:06:34 -0000 1.3
51 +++ lame-3.98.4.ebuild 23 Aug 2010 20:10:27 -0000 1.4
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.4.ebuild,v 1.3 2010/08/23 20:06:34 ssuominen Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.98.4.ebuild,v 1.4 2010/08/23 20:10:27 ssuominen Exp $
57
58 -EAPI=2
59 +EAPI=3
60 inherit autotools eutils
61
62 DESCRIPTION="LAME Ain't an MP3 Encoder"
63 @@ -11,7 +11,7 @@
64
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
68 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
69 IUSE="debug mmx mp3rtp sndfile static-libs"
70
71 RDEPEND=">=sys-libs/ncurses-5.2
72 @@ -48,11 +48,11 @@
73 }
74
75 src_install() {
76 - emake DESTDIR="${D}" pkghtmldir="/usr/share/doc/${PF}/html" install || die
77 + emake DESTDIR="${D}" pkghtmldir="${EPREFIX}/usr/share/doc/${PF}/html" install || die
78 dobin misc/mlame || die
79
80 dodoc API ChangeLog HACKING README* STYLEGUIDE TODO USAGE || die
81 dohtml misc/lameGUI.html Dll/LameDLLInterface.htm || die
82
83 - find "${D}" -name '*.la' -exec rm -f '{}' +
84 + find "${ED}" -name '*.la' -exec rm -f '{}' +
85 }