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/libtiger: ChangeLog libtiger-0.3.3.ebuild
Date: Thu, 02 Jul 2009 20:45:01
Message-Id: E1MMT9P-0000zj-IO@stork.gentoo.org
1 aballier 09/07/02 20:44:59
2
3 Modified: ChangeLog libtiger-0.3.3.ebuild
4 Log:
5 run tests with LC_ALL=C to avoid false positives with poor regexps..
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 media-libs/libtiger/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtiger/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtiger/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtiger/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/libtiger/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 2 Jul 2009 20:38:06 -0000 1.3
22 +++ ChangeLog 2 Jul 2009 20:44:59 -0000 1.4
23 @@ -1,6 +1,9 @@
24 # ChangeLog for media-libs/libtiger
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtiger/ChangeLog,v 1.3 2009/07/02 20:38:06 fauli Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtiger/ChangeLog,v 1.4 2009/07/02 20:44:59 aballier Exp $
28 +
29 + 02 Jul 2009; Alexis Ballier <aballier@g.o> libtiger-0.3.3.ebuild:
30 + run tests with LC_ALL=C to avoid false positives with poor regexps..
31
32 02 Jul 2009; Christian Faulhammer <fauli@g.o>
33 libtiger-0.3.3.ebuild:
34
35
36
37 1.4 media-libs/libtiger/libtiger-0.3.3.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtiger/libtiger-0.3.3.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtiger/libtiger-0.3.3.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libtiger/libtiger-0.3.3.ebuild?r1=1.3&r2=1.4
42
43 Index: libtiger-0.3.3.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/media-libs/libtiger/libtiger-0.3.3.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- libtiger-0.3.3.ebuild 2 Jul 2009 20:38:06 -0000 1.3
50 +++ libtiger-0.3.3.ebuild 2 Jul 2009 20:44:59 -0000 1.4
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libtiger/libtiger-0.3.3.ebuild,v 1.3 2009/07/02 20:38:06 fauli Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtiger/libtiger-0.3.3.ebuild,v 1.4 2009/07/02 20:44:59 aballier Exp $
56
57 EAPI=2
58
59 @@ -30,6 +30,10 @@
60 econf $(use_enable doc) --docdir=/usr/share/doc/${PF}
61 }
62
63 +src_test() {
64 + LC_ALL=C emake check || die "tests failed"
65 +}
66 +
67 src_install() {
68 emake DESTDIR="${D}" install || die "make install failed"
69 find "${D}" -name '*.la' -delete