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/id3ed: id3ed-1.10.4.ebuild ChangeLog
Date: Sat, 24 Apr 2010 16:42:44
Message-Id: 20100424164241.E5F422C04C@corvid.gentoo.org
1 ssuominen 10/04/24 16:42:41
2
3 Modified: id3ed-1.10.4.ebuild ChangeLog
4 Log:
5 Fix dodoc line, use ldflags, ...
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.18 media-sound/id3ed/id3ed-1.10.4.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild?r1=1.17&r2=1.18
14
15 Index: id3ed-1.10.4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- id3ed-1.10.4.ebuild 19 Aug 2007 16:06:32 -0000 1.17
22 +++ id3ed-1.10.4.ebuild 24 Apr 2010 16:42:41 -0000 1.18
23 @@ -1,7 +1,8 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild,v 1.17 2007/08/19 16:06:32 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/id3ed-1.10.4.ebuild,v 1.18 2010/04/24 16:42:41 ssuominen Exp $
29
30 +EAPI=2
31 inherit toolchain-funcs
32
33 DESCRIPTION="ID3 tag editor for mp3 files"
34 @@ -16,19 +17,19 @@
35 DEPEND="sys-libs/ncurses
36 sys-libs/readline"
37
38 -src_unpack() {
39 - unpack ${A}
40 - cd "${S}"
41 - sed -i -e "s:-s::" Makefile.in
42 +src_prepare() {
43 + sed -i \
44 + -e '/install/s:-s::' \
45 + -e 's:$(CXX) $(CXXFLAGS):$(CXX) $(LDFLAGS) $(CXXFLAGS):' \
46 + Makefile.in || die
47 }
48
49 src_compile() {
50 - econf
51 - emake CXX="$(tc-getCXX)" CFLAGS="${CFLAGS} -I./" || die "emake failed."
52 + emake CXX="$(tc-getCXX)" CFLAGS="${CFLAGS} -I./" || die
53 }
54
55 src_install() {
56 dodir /usr/bin /usr/share/man/man1
57 - emake DESTDIR="${D}" install || die "emake install failed."
58 - dodoc README ChangeLog
59 + emake DESTDIR="${D}" install || die
60 + dodoc README || die
61 }
62
63
64
65 1.14 media-sound/id3ed/ChangeLog
66
67 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/id3ed/ChangeLog?rev=1.14&view=markup
68 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/id3ed/ChangeLog?rev=1.14&content-type=text/plain
69 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/id3ed/ChangeLog?r1=1.13&r2=1.14
70
71 Index: ChangeLog
72 ===================================================================
73 RCS file: /var/cvsroot/gentoo-x86/media-sound/id3ed/ChangeLog,v
74 retrieving revision 1.13
75 retrieving revision 1.14
76 diff -u -r1.13 -r1.14
77 --- ChangeLog 19 Aug 2007 16:06:32 -0000 1.13
78 +++ ChangeLog 24 Apr 2010 16:42:41 -0000 1.14
79 @@ -1,6 +1,9 @@
80 # ChangeLog for media-sound/id3ed
81 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
82 -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/ChangeLog,v 1.13 2007/08/19 16:06:32 drac Exp $
83 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
84 +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3ed/ChangeLog,v 1.14 2010/04/24 16:42:41 ssuominen Exp $
85 +
86 + 24 Apr 2010; Samuli Suominen <ssuominen@g.o> id3ed-1.10.4.ebuild:
87 + Fix dodoc line, use ldflags, ...
88
89 19 Aug 2007; Samuli Suominen <drac@g.o> id3ed-1.10.4.ebuild:
90 Stop pre-stripping id3ed binary. Use correct CXX by using toolchain-funcs.