Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/id3lib: ChangeLog id3lib-3.8.3-r7.ebuild
Date: Tue, 29 Jul 2008 15:04:08
Message-Id: E1KNqk9-0004me-NH@stork.gentoo.org
1 yngwin 08/07/29 15:04:05
2
3 Modified: ChangeLog
4 Added: id3lib-3.8.3-r7.ebuild
5 Log:
6 Revbump to force recompilation, in order to fix bugs #233273 and #233240
7 (Portage version: 2.2_rc4/cvs/Linux 2.6.26-hg1 i686, RepoMan options: --force)
8
9 Revision Changes Path
10 1.70 media-libs/id3lib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/id3lib/ChangeLog?rev=1.70&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/id3lib/ChangeLog?rev=1.70&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/id3lib/ChangeLog?r1=1.69&r2=1.70
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/id3lib/ChangeLog,v
19 retrieving revision 1.69
20 retrieving revision 1.70
21 diff -u -r1.69 -r1.70
22 --- ChangeLog 11 Apr 2008 20:45:24 -0000 1.69
23 +++ ChangeLog 29 Jul 2008 15:04:05 -0000 1.70
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/id3lib
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/ChangeLog,v 1.69 2008/04/11 20:45:24 yngwin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/ChangeLog,v 1.70 2008/07/29 15:04:05 yngwin Exp $
29 +
30 +*id3lib-3.8.3-r7 (29 Jul 2008)
31 +
32 + 29 Jul 2008; Ben de Groot <yngwin@g.o> +id3lib-3.8.3-r7.ebuild:
33 + Rev bump to force recompilation, in order to fix bugs #233273 and #233240
34
35 11 Apr 2008; Ben de Groot <yngwin@g.o>
36 +files/id3lib-3.8.3-gcc-4.3.patch, id3lib-3.8.3-r6.ebuild:
37
38
39
40 1.1 media-libs/id3lib/id3lib-3.8.3-r7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/id3lib/id3lib-3.8.3-r7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/id3lib/id3lib-3.8.3-r7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: id3lib-3.8.3-r7.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/id3lib-3.8.3-r7.ebuild,v 1.1 2008/07/29 15:04:05 yngwin Exp $
50
51 WANT_AUTOCONF="latest"
52 WANT_AUTOMAKE="latest"
53
54 inherit eutils autotools
55
56 MY_P=${P/_/}
57 S="${WORKDIR}"/${MY_P}
58
59 DESCRIPTION="Id3 library for C/C++"
60 HOMEPAGE="http://id3lib.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
66 IUSE="doc"
67
68 RESTRICT="test"
69
70 RDEPEND="sys-libs/zlib"
71 DEPEND="${RDEPEND}
72 doc? ( app-doc/doxygen )"
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77
78 epatch "${FILESDIR}"/${P}-zlib.patch
79 epatch "${FILESDIR}"/${P}-test_io.patch
80 epatch "${FILESDIR}"/${P}-autoconf259.patch
81 epatch "${FILESDIR}"/${P}-doxyinput.patch
82 epatch "${FILESDIR}"/${P}-unicode16.patch
83 epatch "${FILESDIR}"/${P}-gcc-4.3.patch
84
85 # Security fix for bug 189610.
86 epatch "${FILESDIR}"/${P}-security.patch
87
88 AT_M4DIR="${S}/m4" eautoreconf
89 }
90
91 src_compile() {
92 econf || die "econf failed."
93 emake || die "emake failed."
94
95 if use doc; then
96 cd doc/
97 doxygen Doxyfile || die "doxygen failed"
98 fi
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die "Install failed"
103 dodoc AUTHORS ChangeLog HISTORY README THANKS TODO
104
105 if use doc; then
106 dohtml -r doc
107 fi
108 }