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/libcaca: ChangeLog libcaca-0.99_beta18.ebuild
Date: Fri, 01 Jun 2012 22:52:39
Message-Id: 20120601225225.2238D2004B@flycatcher.gentoo.org
1 ssuominen 12/06/01 22:52:25
2
3 Modified: ChangeLog libcaca-0.99_beta18.ebuild
4 Log:
5 Fix bug 329651 again.
6
7 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.104 media-libs/libcaca/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcaca/ChangeLog?rev=1.104&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcaca/ChangeLog?rev=1.104&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcaca/ChangeLog?r1=1.103&r2=1.104
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v
19 retrieving revision 1.103
20 retrieving revision 1.104
21 diff -u -r1.103 -r1.104
22 --- ChangeLog 9 May 2012 16:25:14 -0000 1.103
23 +++ ChangeLog 1 Jun 2012 22:52:24 -0000 1.104
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libcaca
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.103 2012/05/09 16:25:14 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/ChangeLog,v 1.104 2012/06/01 22:52:24 ssuominen Exp $
29 +
30 + 01 Jun 2012; Samuli Suominen <ssuominen@g.o>
31 + libcaca-0.99_beta18.ebuild:
32 + Use $(type -P gmcs) for exporting the CSC variable wrt #329651, Comment #8 by
33 + Conway S. Smith
34
35 09 May 2012; Alexis Ballier <aballier@g.o> libcaca-0.99_beta18.ebuild:
36 keyword ~amd64-fbsd
37
38
39
40 1.7 media-libs/libcaca/libcaca-0.99_beta18.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta18.ebuild?rev=1.7&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta18.ebuild?rev=1.7&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta18.ebuild?r1=1.6&r2=1.7
45
46 Index: libcaca-0.99_beta18.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta18.ebuild,v
49 retrieving revision 1.6
50 retrieving revision 1.7
51 diff -u -r1.6 -r1.7
52 --- libcaca-0.99_beta18.ebuild 9 May 2012 16:25:14 -0000 1.6
53 +++ libcaca-0.99_beta18.ebuild 1 Jun 2012 22:52:24 -0000 1.7
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta18.ebuild,v 1.6 2012/05/09 16:25:14 aballier Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.99_beta18.ebuild,v 1.7 2012/06/01 22:52:24 ssuominen Exp $
59
60 EAPI=4
61 PYTHON_DEPEND="python? 2:2.6"
62 @@ -87,7 +87,7 @@
63 append-cflags "$(java-pkg_get-jni-cflags)"
64 fi
65
66 - use mono && export CSC=gmcs #329651
67 + use mono && export CSC="$(type -P gmcs)" #329651
68 export VARTEXFONTS="${T}/fonts" #44128
69
70 # python bindings are built via distutils
71 @@ -109,7 +109,7 @@
72 src_compile() {
73 default
74
75 - if use python ; then
76 + if use python; then
77 distutils_src_compile
78 fi
79 }
80 @@ -117,7 +117,7 @@
81 src_install() {
82 default
83
84 - if use python ; then
85 + if use python; then
86 distutils_src_install
87 fi
88
89 @@ -126,7 +126,7 @@
90 fi
91
92 rm -rf "${D}"/usr/share/java
93 - find "${D}" -name '*.la' -delete
94 + find "${D}" -name '*.la' -exec rm -f {} +
95 }
96
97 pkg_postinst() {