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/libquvi: ChangeLog libquvi-0.4.0.ebuild
Date: Mon, 28 Nov 2011 03:14:09
Message-Id: 20111128031400.0DE7B20034@flycatcher.gentoo.org
1 radhermit 11/11/28 03:14:00
2
3 Modified: ChangeLog libquvi-0.4.0.ebuild
4 Log:
5 Fix autotools-utils usage (bug #392151).
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 media-libs/libquvi/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquvi/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquvi/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquvi/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libquvi/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 27 Nov 2011 04:08:04 -0000 1.3
23 +++ ChangeLog 28 Nov 2011 03:13:59 -0000 1.4
24 @@ -1,6 +1,9 @@
25 # ChangeLog for media-libs/libquvi
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/ChangeLog,v 1.3 2011/11/27 04:08:04 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/ChangeLog,v 1.4 2011/11/28 03:13:59 radhermit Exp $
29 +
30 + 28 Nov 2011; Tim Harder <radhermit@g.o> libquvi-0.4.0.ebuild:
31 + Fix autotools-utils usage (bug #392151).
32
33 27 Nov 2011; Tim Harder <radhermit@g.o> libquvi-0.4.0.ebuild:
34 Build in the source tree.
35
36
37
38 1.4 media-libs/libquvi/libquvi-0.4.0.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquvi/libquvi-0.4.0.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquvi/libquvi-0.4.0.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquvi/libquvi-0.4.0.ebuild?r1=1.3&r2=1.4
43
44 Index: libquvi-0.4.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/libquvi/libquvi-0.4.0.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- libquvi-0.4.0.ebuild 27 Nov 2011 04:08:04 -0000 1.3
51 +++ libquvi-0.4.0.ebuild 28 Nov 2011 03:13:59 -0000 1.4
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/libquvi-0.4.0.ebuild,v 1.3 2011/11/27 04:08:04 radhermit Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/libquvi-0.4.0.ebuild,v 1.4 2011/11/28 03:13:59 radhermit Exp $
57
58 EAPI=4
59
60 @@ -23,21 +23,20 @@
61 app-arch/xz-utils
62 dev-util/pkgconfig"
63
64 -AUTOTOOLS_IN_SOURCE_BUILD=1
65 +DOCS=( AUTHORS ChangeLog NEWS README )
66
67 src_configure() {
68 - econf \
69 - --with-manual \
70 - $(use_enable static-libs static)
71 + local myeconfargs=(
72 + --with-manual
73 + )
74 + autotools-utils_src_configure
75 }
76
77 src_install() {
78 - default
79 + autotools-utils_src_install
80
81 if use examples ; then
82 docinto examples
83 dodoc examples/*.{c,h}
84 fi
85 -
86 - remove_libtool_files all
87 }