Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/brltty: ChangeLog brltty-4.2.ebuild
Date: Wed, 30 Mar 2011 18:05:32
Message-Id: 20110330180522.CC96920054@flycatcher.gentoo.org
1 williamh 11/03/30 18:05:22
2
3 Modified: ChangeLog brltty-4.2.ebuild
4 Log:
5 Migrate to eapi 4, remove the static use flag, and fix #361327.
6
7 (Portage version: 2.2.0_alpha29/cvs/Linux i686)
8
9 Revision Changes Path
10 1.112 app-accessibility/brltty/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/brltty/ChangeLog?rev=1.112&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/brltty/ChangeLog?rev=1.112&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/brltty/ChangeLog?r1=1.111&r2=1.112
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/brltty/ChangeLog,v
19 retrieving revision 1.111
20 retrieving revision 1.112
21 diff -u -r1.111 -r1.112
22 --- ChangeLog 29 Mar 2011 22:37:28 -0000 1.111
23 +++ ChangeLog 30 Mar 2011 18:05:22 -0000 1.112
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-accessibility/brltty
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/ChangeLog,v 1.111 2011/03/29 22:37:28 williamh Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/ChangeLog,v 1.112 2011/03/30 18:05:22 williamh Exp $
29 +
30 + 30 Mar 2011; William Hubbs <williamh@g.o> brltty-4.2.ebuild:
31 + Migrate to eapi 4, remove the static use flag, and fix #361327.
32
33 29 Mar 2011; William Hubbs <williamh@g.o> brltty-4.2.ebuild:
34 work around parallel build failure, bug #340903.
35
36
37
38 1.7 app-accessibility/brltty/brltty-4.2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/brltty/brltty-4.2.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/brltty/brltty-4.2.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/brltty/brltty-4.2.ebuild?r1=1.6&r2=1.7
43
44 Index: brltty-4.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/brltty/brltty-4.2.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- brltty-4.2.ebuild 29 Mar 2011 22:37:28 -0000 1.6
51 +++ brltty-4.2.ebuild 30 Mar 2011 18:05:22 -0000 1.7
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/brltty-4.2.ebuild,v 1.6 2011/03/29 22:37:28 williamh Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/brltty-4.2.ebuild,v 1.7 2011/03/30 18:05:22 williamh Exp $
57
58 -EAPI="2"
59 +EAPI="4"
60 FINDLIB_USE="ocaml"
61
62 inherit findlib eutils multilib toolchain-funcs java-pkg-opt-2 flag-o-matic \
63 @@ -17,7 +17,12 @@
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
65 IUSE="+api +beeper bluetooth +contracted-braille doc +fm gpm iconv icu
66 java +learn-mode +midi nls ocaml +pcm python usb +speech
67 - static tcl X"
68 + tcl X"
69 +REQUIRED_USE="doc? ( api )
70 + java? ( api )
71 + ocaml? ( api )
72 + python? ( api )
73 + tcl? ( api )"
74
75 COMMON_DEP="bluetooth? ( net-wireless/bluez )
76 gpm? ( >=sys-libs/gpm-1.20 )
77 @@ -75,7 +80,6 @@
78 $(use_enable pcm pcm-support) \
79 $(use_enable python python-bindings) \
80 $(use_enable speech speech-support) \
81 - $(use_enable static standalone-programs) \
82 $(use_enable tcl tcl-bindings) \
83 $(use_enable X x) \
84 $(use_with bluetooth bluetooth-package) \
85 @@ -126,7 +130,7 @@
86 dodoc CONTRIBUTORS ChangeLog HISTORY README* TODO BRLTTY-*.txt
87 dohtml -r Manual-BRLTTY
88 if use doc; then
89 - dohtml -r Manual-BRLAPI
90 + dohtml -r Manual-BrlAPI
91 dodoc BrlAPI-*.txt
92 fi
93 }