Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/apetag: ChangeLog apetag-1.12.ebuild
Date: Thu, 30 Apr 2009 21:39:07
Message-Id: E1LzdyD-00071R-Mw@stork.gentoo.org
1 patrick 09/04/30 21:39:05
2
3 Modified: ChangeLog
4 Added: apetag-1.12.ebuild
5 Log:
6 Bump to 1.12, fixes #267678
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 media-sound/apetag/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/apetag/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/apetag/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/apetag/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/apetag/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 20 Nov 2008 20:37:10 -0000 1.7
23 +++ ChangeLog 30 Apr 2009 21:39:05 -0000 1.8
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/apetag
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/apetag/ChangeLog,v 1.7 2008/11/20 20:37:10 flameeyes Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/apetag/ChangeLog,v 1.8 2009/04/30 21:39:05 patrick Exp $
30 +
31 +*apetag-1.12 (30 Apr 2009)
32 +
33 + 30 Apr 2009; Patrick Lauer <patrick@g.o> +apetag-1.12.ebuild:
34 + Bump to 1.12, fixes #267678
35
36 20 Nov 2008; Diego E. Pettenò <flameeyes@g.o> apetag-1.10.ebuild:
37 Fix sed line, closes bug #246753.
38
39
40
41 1.1 media-sound/apetag/apetag-1.12.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/apetag/apetag-1.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/apetag/apetag-1.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: apetag-1.12.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/apetag/apetag-1.12.ebuild,v 1.1 2009/04/30 21:39:05 patrick Exp $
51
52 inherit eutils toolchain-funcs base
53
54 DESCRIPTION="Command-line ape 2.0 tagger"
55 HOMEPAGE="http://muth.org/Robert/Apetag/"
56 SRC_URI="http://muth.org/Robert/Apetag/${PN}.${PV}.tar.gz"
57
58 LICENSE="GPL-3"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE=""
62
63 DEPEND=""
64 RDEPEND="dev-lang/python"
65
66 S=${WORKDIR}/Apetag
67
68 src_unpack() {
69 base_src_unpack
70 sed -i \
71 -e 's,CXXDEBUG,LDFLAGS,g' \
72 "${S}"/Makefile \
73 || die "404. Makefile not found."
74 }
75
76 src_compile() {
77 emake CXX="$(tc-getCXX)" LDFLAGS="${LDFLAGS}" CXXOPT="${CXXFLAGS}" || die "emake failed"
78 }
79
80 src_install() {
81 dobin apetag || die
82 dobin tagdir.py rmid3tag.py cddb.py || die
83 dodoc 00readme || die
84 }