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-sound/csound: csound-5.16.6.ebuild ChangeLog
Date: Mon, 27 Feb 2012 07:03:34
Message-Id: 20120227070324.6DFD42004B@flycatcher.gentoo.org
1 radhermit 12/02/27 07:03:24
2
3 Modified: csound-5.16.6.ebuild ChangeLog
4 Log:
5 Only install locales when nls is enabled.
6
7 (Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 media-sound/csound/csound-5.16.6.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/csound/csound-5.16.6.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/csound/csound-5.16.6.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/csound/csound-5.16.6.ebuild?r1=1.1&r2=1.2
15
16 Index: csound-5.16.6.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/csound/csound-5.16.6.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- csound-5.16.6.ebuild 27 Feb 2012 05:37:48 -0000 1.1
23 +++ csound-5.16.6.ebuild 27 Feb 2012 07:03:24 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/csound/csound-5.16.6.ebuild,v 1.1 2012/02/27 05:37:48 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/csound/csound-5.16.6.ebuild,v 1.2 2012/02/27 07:03:24 radhermit Exp $
29
30 EAPI="4"
31 PYTHON_DEPEND="python? 2"
32 @@ -176,10 +176,12 @@
33 use stk && echo "RAWWAVE_PATH=/usr/share/csound/rawwaves" >> "${T}"/62${PN}
34 doenvd "${T}"/62${PN}
35
36 - insinto /usr/share/locale
37 - for lang in ${LANGS} ; do
38 - use linguas_${lang} && doins -r po/${lang}
39 - done
40 + if use nls ; then
41 + insinto /usr/share/locale
42 + for lang in ${LANGS} ; do
43 + use linguas_${lang} && doins -r po/${lang}
44 + done
45 + fi
46
47 if use examples ; then
48 dodoc -r examples
49
50
51
52 1.3 media-sound/csound/ChangeLog
53
54 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/csound/ChangeLog?rev=1.3&view=markup
55 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/csound/ChangeLog?rev=1.3&content-type=text/plain
56 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/csound/ChangeLog?r1=1.2&r2=1.3
57
58 Index: ChangeLog
59 ===================================================================
60 RCS file: /var/cvsroot/gentoo-x86/media-sound/csound/ChangeLog,v
61 retrieving revision 1.2
62 retrieving revision 1.3
63 diff -u -r1.2 -r1.3
64 --- ChangeLog 27 Feb 2012 05:42:44 -0000 1.2
65 +++ ChangeLog 27 Feb 2012 07:03:24 -0000 1.3
66 @@ -1,6 +1,9 @@
67 # ChangeLog for media-sound/csound
68 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
69 -# $Header: /var/cvsroot/gentoo-x86/media-sound/csound/ChangeLog,v 1.2 2012/02/27 05:42:44 radhermit Exp $
70 +# $Header: /var/cvsroot/gentoo-x86/media-sound/csound/ChangeLog,v 1.3 2012/02/27 07:03:24 radhermit Exp $
71 +
72 + 27 Feb 2012; Tim Harder <radhermit@g.o> csound-5.16.6.ebuild:
73 + Only install locales when nls is enabled.
74
75 27 Feb 2012; Tim Harder <radhermit@g.o> metadata.xml:
76 Sort use flags and fix whitespace.