Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libid3tag: ChangeLog libid3tag-0.15.1b-r1.ebuild
Date: Mon, 05 May 2008 03:23:54
Message-Id: E1Jsqpl-0007DW-MO@stork.gentoo.org
1 tester 08/05/05 02:53:45
2
3 Modified: ChangeLog
4 Added: libid3tag-0.15.1b-r1.ebuild
5 Log:
6 Make tagwriting work on amd64, add various other patches
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.32 media-libs/libid3tag/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libid3tag/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libid3tag/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libid3tag/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libid3tag/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 4 Oct 2006 17:34:19 -0000 1.31
23 +++ ChangeLog 5 May 2008 02:53:45 -0000 1.32
24 @@ -1,6 +1,20 @@
25 # ChangeLog for media-libs/libid3tag
26 -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libid3tag/ChangeLog,v 1.31 2006/10/04 17:34:19 grobian Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libid3tag/ChangeLog,v 1.32 2008/05/05 02:53:45 tester Exp $
30 +
31 +*libid3tag-0.15.1b-r1 (05 May 2008)
32 +
33 + 05 May 2008; Olivier CrĂȘte <tester@g.o>
34 + +files/0.15.1b/libid3tag-0.15.1b-64bit-long.patch,
35 + +files/0.15.1b/libid3tag-0.15.1b-a_capella.patch,
36 + +files/0.15.1b/libid3tag-0.15.1b-compat.patch,
37 + +files/0.15.1b/libid3tag-0.15.1b-file-write.patch,
38 + +files/0.15.1b/libid3tag-0.15.1b-tag.patch,
39 + +files/0.15.1b/libid3tag-0.15.1b-unknown-encoding.patch,
40 + +files/0.15.1b/libid3tag-0.15.1b-utf16.patchlibid3tag-0.15.1b-utf16.patch,
41 + +libid3tag-0.15.1b-r1.ebuild:
42 + Add various patches from debian pkg revision 10, from bugs #188754 and
43 + #210564 and also a patch to make tag-writing work on amd64
44
45 04 Oct 2006; Fabian Groffen <grobian@g.o> libid3tag-0.15.1b.ebuild:
46 Dropped ~ppc-macos, see you in prefix.
47
48
49
50 1.1 media-libs/libid3tag/libid3tag-0.15.1b-r1.ebuild
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r1.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r1.ebuild?rev=1.1&content-type=text/plain
54
55 Index: libid3tag-0.15.1b-r1.ebuild
56 ===================================================================
57 # Copyright 1999-2008 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/media-libs/libid3tag/libid3tag-0.15.1b-r1.ebuild,v 1.1 2008/05/05 02:53:45 tester Exp $
60
61 inherit eutils multilib
62
63 DESCRIPTION="The MAD id3tag library"
64 HOMEPAGE="http://www.underbit.com/products/mad/"
65 SRC_URI="mirror://sourceforge/mad/${P}.tar.gz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
70 IUSE="debug"
71
72 DEPEND="dev-util/gperf"
73
74 RDEPEND="${DEPEND}
75 >=sys-libs/zlib-1.1.3"
76
77 src_unpack() {
78 unpack ${A}
79 cd "${S}"
80 epunt_cxx #74489
81
82 epatch "${FILESDIR}/${PV}/*.patch"
83 }
84
85 src_compile() {
86 econf $(use_enable debug debugging) || die "configure failed"
87 emake || die "make failed"
88 }
89
90 src_install() {
91 make install DESTDIR="${D}" || die "make install failed"
92
93 dodoc CHANGES CREDITS README TODO VERSION
94
95 # This file must be updated with every version update
96 insinto /usr/$(get_libdir)/pkgconfig
97 doins "${FILESDIR}/id3tag.pc"
98 sed -i -e "s:libdir=\${exec_prefix}/lib:libdir=/usr/$(get_libdir):" \
99 "${D}/usr/$(get_libdir)/pkgconfig/id3tag.pc"
100 sed -i -e s:15.0b:15.1b: "${D}/usr/$(get_libdir)/pkgconfig/id3tag.pc"
101 }
102
103
104
105 --
106 gentoo-commits@l.g.o mailing list