Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libtimidity: ChangeLog libtimidity-0.1.0-r1.ebuild
Date: Sun, 24 Feb 2008 18:43:16
Message-Id: E1JTLoe-00079D-Ae@stork.gentoo.org
1 drac 08/02/24 18:43:12
2
3 Modified: ChangeLog
4 Added: libtimidity-0.1.0-r1.ebuild
5 Log:
6 Fix for overflow bug in size calculation by Hendrik Iben wrt #211289.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.12 media-libs/libtimidity/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtimidity/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtimidity/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtimidity/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libtimidity/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 5 Dec 2007 15:45:55 -0000 1.11
23 +++ ChangeLog 24 Feb 2008 18:43:11 -0000 1.12
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-libs/libtimidity
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtimidity/ChangeLog,v 1.11 2007/12/05 15:45:55 fmccor Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtimidity/ChangeLog,v 1.12 2008/02/24 18:43:11 drac Exp $
30 +
31 +*libtimidity-0.1.0-r1 (24 Feb 2008)
32 +
33 + 24 Feb 2008; Samuli Suominen <drac@g.o>
34 + +files/libtimidity-0.1.0-newlen-overflow.patch,
35 + +libtimidity-0.1.0-r1.ebuild:
36 + Fix for overflow bug in size calculation by Hendrik Iben wrt #211289.
37
38 05 Dec 2007; Ferris McCormick <fmccor@g.o>
39 libtimidity-0.1.0.ebuild:
40
41
42
43 1.1 media-libs/libtimidity/libtimidity-0.1.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtimidity/libtimidity-0.1.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtimidity/libtimidity-0.1.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libtimidity-0.1.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libtimidity/libtimidity-0.1.0-r1.ebuild,v 1.1 2008/02/24 18:43:11 drac Exp $
53
54 inherit autotools eutils
55
56 DESCRIPTION="MIDI to WAVE converter library"
57 HOMEPAGE="http://libtimidity.sourceforge.net"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="ao debug"
64
65 RDEPEND="ao? ( media-libs/libao )"
66 DEPEND="${RDEPEND}
67 dev-util/pkgconfig"
68
69 RESTRICT="test"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epatch "${FILESDIR}"/${P}-newlen-overflow.patch
75 epatch "${FILESDIR}"/${P}-automagic.patch
76 eautoreconf
77 }
78
79 src_compile() {
80 econf --disable-aotest $(use_enable ao) $(use_enable debug)
81 emake || die "emake failed."
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "emake install failed."
86 dodoc AUTHORS ChangeLog CHANGES NEWS TODO README*
87 }
88
89
90
91 --
92 gentoo-commits@l.g.o mailing list