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-libs/alure: ChangeLog alure-1.0.ebuild
Date: Tue, 27 Apr 2010 20:09:53
Message-Id: 20100427200948.C97892C04B@corvid.gentoo.org
1 ssuominen 10/04/27 20:09:48
2
3 Modified: ChangeLog alure-1.0.ebuild
4 Log:
5 amd64 stable and fix documentation directory wrt #300514 by Diego E. Pettenò.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 media-libs/alure/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alure/ChangeLog?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alure/ChangeLog?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alure/ChangeLog?r1=1.1&r2=1.2
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/alure/ChangeLog,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ChangeLog 13 Dec 2009 15:23:46 -0000 1.1
22 +++ ChangeLog 27 Apr 2010 20:09:48 -0000 1.2
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/alure
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/ChangeLog,v 1.1 2009/12/13 15:23:46 ssuominen Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/ChangeLog,v 1.2 2010/04/27 20:09:48 ssuominen Exp $
29 +
30 + 27 Apr 2010; Samuli Suominen <ssuominen@g.o> alure-1.0.ebuild:
31 + amd64 stable and fix documentation directory wrt #300514 by Diego E.
32 + Pettenò.
33
34 *alure-1.0 (13 Dec 2009)
35
36
37
38
39 1.2 media-libs/alure/alure-1.0.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alure/alure-1.0.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alure/alure-1.0.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/alure/alure-1.0.ebuild?r1=1.1&r2=1.2
44
45 Index: alure-1.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/alure/alure-1.0.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- alure-1.0.ebuild 13 Dec 2009 15:23:46 -0000 1.1
52 +++ alure-1.0.ebuild 27 Apr 2010 20:09:48 -0000 1.2
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/alure-1.0.ebuild,v 1.1 2009/12/13 15:23:46 ssuominen Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-libs/alure/alure-1.0.ebuild,v 1.2 2010/04/27 20:09:48 ssuominen Exp $
59
60 EAPI=2
61 inherit cmake-utils
62 @@ -11,21 +11,28 @@
63
64 LICENSE="LGPL-2"
65 SLOT="0"
66 -KEYWORDS="~amd64 ~x86"
67 +KEYWORDS="amd64 ~x86"
68 IUSE="sndfile vorbis"
69
70 -DEPEND=">=media-libs/openal-1
71 +DEPEND="media-libs/openal
72 sndfile? ( media-libs/libsndfile )
73 vorbis? ( media-libs/libvorbis )"
74
75 -PATCHES=( "${FILESDIR}/${P}-gcc44.patch"
76 - "${FILESDIR}/${P}-multilib.patch" )
77 +src_prepare() {
78 + epatch "${FILESDIR}/${P}-gcc44.patch" \
79 + "${FILESDIR}/${P}-multilib.patch"
80 +
81 + sed -i \
82 + -e "/DESTINATION/s:doc/alure:doc/${PF}:" \
83 + CMakeLists.txt || die
84 +}
85
86 src_configure() {
87 - mycmakeargs="${mycmakeargs}
88 - -DFLAC=OFF
89 + mycmakeargs=(
90 + "-DFLAC=OFF"
91 $(cmake-utils_use sndfile)
92 - $(cmake-utils_use vorbis)"
93 + $(cmake-utils_use vorbis)
94 + )
95
96 cmake-utils_src_configure
97 }