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/toolame: toolame-02l-r2.ebuild
Date: Mon, 03 Aug 2009 13:12:40
Message-Id: E1MXxLB-0004Y9-WA@stork.gentoo.org
1 ssuominen 09/08/03 13:12:37
2
3 Modified: toolame-02l-r2.ebuild
4 Log:
5 Quoting
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.7 media-sound/toolame/toolame-02l-r2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/toolame/toolame-02l-r2.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/toolame/toolame-02l-r2.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/toolame/toolame-02l-r2.ebuild?r1=1.6&r2=1.7
14
15 Index: toolame-02l-r2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/toolame/toolame-02l-r2.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- toolame-02l-r2.ebuild 13 Aug 2007 21:18:24 -0000 1.6
22 +++ toolame-02l-r2.ebuild 3 Aug 2009 13:12:37 -0000 1.7
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/toolame/toolame-02l-r2.ebuild,v 1.6 2007/08/13 21:18:24 dertobi123 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/toolame/toolame-02l-r2.ebuild,v 1.7 2009/08/03 13:12:37 ssuominen Exp $
29
30 inherit eutils flag-o-matic toolchain-funcs
31
32 @@ -8,30 +8,25 @@
33 HOMEPAGE="http://www.planckenergy.com"
34 SRC_URI="mirror://sourceforge/toolame/${P}.tgz"
35
36 -IUSE=""
37 -
38 -SLOT="0"
39 LICENSE="LGPL-2.1"
40 +SLOT="0"
41 KEYWORDS="amd64 ppc ~sparc x86"
42 +IUSE=""
43
44 src_unpack() {
45 unpack ${A}
46 - cd ${S}
47 -
48 + cd "${S}"
49 epatch "${FILESDIR}/${P}-gentoo.diff"
50 epatch "${FILESDIR}/${P}-uint.patch"
51 }
52
53 src_compile() {
54 - # Enable largefile support, as toolame doesn't use autoconf
55 append-lfs-flags
56 -
57 tc-export CC
58 -
59 - emake || die
60 + emake || die "emake failed"
61 }
62
63 src_install() {
64 - dobin toolame || die
65 + dobin toolame || die "dobin failed"
66 dodoc README HISTORY FUTURE html/* text/*
67 }