Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libmodplug: ChangeLog libmodplug-0.8.7.ebuild
Date: Wed, 29 Apr 2009 07:35:50
Message-Id: E1Lz4Ka-0005jl-GC@stork.gentoo.org
1 aballier 09/04/29 07:35:48
2
3 Modified: ChangeLog
4 Added: libmodplug-0.8.7.ebuild
5 Log:
6 version bump, bug #266913
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.38 media-libs/libmodplug/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libmodplug/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libmodplug/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libmodplug/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libmodplug/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 14 Apr 2008 14:06:31 -0000 1.37
23 +++ ChangeLog 29 Apr 2009 07:35:48 -0000 1.38
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libmodplug
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmodplug/ChangeLog,v 1.37 2008/04/14 14:06:31 flameeyes Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmodplug/ChangeLog,v 1.38 2009/04/29 07:35:48 aballier Exp $
30 +
31 +*libmodplug-0.8.7 (29 Apr 2009)
32 +
33 + 29 Apr 2009; Alexis Ballier <aballier@g.o>
34 + +libmodplug-0.8.7.ebuild:
35 + version bump, bug #266913
36
37 *libmodplug-0.8.4-r3 (14 Apr 2008)
38
39
40
41
42 1.1 media-libs/libmodplug/libmodplug-0.8.7.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libmodplug/libmodplug-0.8.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libmodplug/libmodplug-0.8.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libmodplug-0.8.7.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libmodplug/libmodplug-0.8.7.ebuild,v 1.1 2009/04/29 07:35:48 aballier Exp $
52
53 inherit eutils autotools
54
55 DESCRIPTION="Library for playing MOD-like music files"
56 SRC_URI="mirror://sourceforge/modplug-xmms/${P}.tar.gz"
57 HOMEPAGE="http://modplug-xmms.sourceforge.net/"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 #-sparc: 1.0 - Bus Error on play
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh -sparc ~x86 ~x86-fbsd"
63 IUSE=""
64
65 RDEPEND=""
66 DEPEND="dev-util/pkgconfig"
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71 epatch "${FILESDIR}/${PN}-0.8.4-timidity-patches.patch"
72 epatch "${FILESDIR}/${PN}-0.8.4-endian.patch"
73
74 sed -i -e 's:-ffast-math::' "${S}/configure.in"
75
76 eautoreconf
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die
81 dodoc AUTHORS ChangeLog README TODO
82
83 # Remove unneeded libtool files
84 find "${D}" -name '*.la' -delete
85 }
86
87 pkg_postinst() {
88 elog "Since version 0.8.4 onward, libmodplug supports MIDI playback."
89 elog "unfortunately to work correctly, this needs timidity patches,"
90 elog "but the code does not support the needed 'source' directive to"
91 elog "work with the patches currently in portage. For this reason it"
92 elog "will not work as intended yet."
93 }