Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/aften: ChangeLog aften-0.0.8.ebuild
Date: Sat, 01 Jun 2013 23:35:02
Message-Id: 20130601233454.58FC12171D@flycatcher.gentoo.org
1 radhermit 13/06/01 23:34:54
2
3 Modified: ChangeLog aften-0.0.8.ebuild
4 Log:
5 Use src_configure instead of src_compile, make PATCHES array multiline, drop empty DEPEND, and other minor fixes.
6
7 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
8
9 Revision Changes Path
10 1.8 media-libs/aften/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aften/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aften/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aften/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/aften/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 1 Jun 2013 14:11:51 -0000 1.7
23 +++ ChangeLog 1 Jun 2013 23:34:54 -0000 1.8
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-libs/aften
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/aften/ChangeLog,v 1.7 2013/06/01 14:11:51 creffett Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/aften/ChangeLog,v 1.8 2013/06/01 23:34:54 radhermit Exp $
29 +
30 + 01 Jun 2013; Tim Harder <radhermit@g.o> aften-0.0.8.ebuild:
31 + Use src_configure instead of src_compile, make PATCHES array multiline, drop
32 + empty DEPEND, and other minor fixes.
33
34 01 Jun 2013; Chris Reffett <creffett@g.o> aften-0.0.8.ebuild:
35 EAPI bump wrt bug 460572
36
37
38
39 1.6 media-libs/aften/aften-0.0.8.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aften/aften-0.0.8.ebuild?rev=1.6&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aften/aften-0.0.8.ebuild?rev=1.6&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/aften/aften-0.0.8.ebuild?r1=1.5&r2=1.6
44
45 Index: aften-0.0.8.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/aften/aften-0.0.8.ebuild,v
48 retrieving revision 1.5
49 retrieving revision 1.6
50 diff -u -r1.5 -r1.6
51 --- aften-0.0.8.ebuild 1 Jun 2013 14:11:51 -0000 1.5
52 +++ aften-0.0.8.ebuild 1 Jun 2013 23:34:54 -0000 1.6
53 @@ -1,6 +1,7 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-libs/aften/aften-0.0.8.ebuild,v 1.5 2013/06/01 14:11:51 creffett Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-libs/aften/aften-0.0.8.ebuild,v 1.6 2013/06/01 23:34:54 radhermit Exp $
58 +
59 EAPI=5
60
61 inherit eutils cmake-utils
62 @@ -13,19 +14,21 @@
63 SLOT="0"
64 KEYWORDS="amd64 ppc x86"
65 IUSE="cxx"
66 -DEPEND=""
67
68 -PATCHES=( "${FILESDIR}/${P}-multilib.patch" "${FILESDIR}/${P}-ppc.patch" )
69 +PATCHES=(
70 + "${FILESDIR}/${P}-multilib.patch"
71 + "${FILESDIR}/${P}-ppc.patch"
72 +)
73
74 -src_compile() {
75 +src_configure() {
76 local mycmakeargs="-DSHARED=1"
77 - use cxx && mycmakeargs="${mycmakeargs} -DBINDINGS_CXX=1"
78 - cmake-utils_src_compile
79 + use cxx && mycmakeargs+=" -DBINDINGS_CXX=1"
80 + cmake-utils_src_configure
81 }
82
83 src_install() {
84 cmake-utils_src_install
85 dodoc README Changelog
86 # File collision with media-sound/wavbreaker, upstream informed
87 - mv "${D}/usr/bin/wavinfo" "${D}/usr/bin/wavinfo-aften"
88 + mv "${D}/usr/bin/wavinfo" "${D}/usr/bin/wavinfo-aften" || die
89 }