Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/sphinx3: sphinx3-0.8.ebuild ChangeLog
Date: Thu, 17 Nov 2011 17:46:06
Message-Id: 20111117174556.BFE202004B@flycatcher.gentoo.org
1 neurogeek 11/11/17 17:45:56
2
3 Modified: ChangeLog
4 Added: sphinx3-0.8.ebuild
5 Log:
6 Version bump. Closes bug #344991
7
8 (Portage version: 2.2.0_alpha46/cvs/Linux i686)
9
10 Revision Changes Path
11 1.5 app-accessibility/sphinx3/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 1 Apr 2009 18:05:03 -0000 1.4
24 +++ ChangeLog 17 Nov 2011 17:45:56 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-accessibility/sphinx3
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.4 2009/04/01 18:05:03 williamh Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.5 2011/11/17 17:45:56 neurogeek Exp $
31 +
32 +*sphinx3-0.8 (17 Nov 2011)
33 +
34 + 17 Nov 2011; Jesus Rivero <neurogeek@g.o> +sphinx3-0.8.ebuild,
35 + +files/sphinx3-0.8_heap_fix.patch:
36 + Version bump. Closes bug #344991
37
38 01 Apr 2009; William Hubbs <williamh@g.o> sphinx3-0.6.3.ebuild:
39 Stable on x86.
40
41
42
43 1.1 app-accessibility/sphinx3/sphinx3-0.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/sphinx3-0.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/sphinx3/sphinx3-0.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: sphinx3-0.8.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/sphinx3-0.8.ebuild,v 1.1 2011/11/17 17:45:56 neurogeek Exp $
53
54 EAPI=3
55 PYTHON_DEPEND="python? 2:2.6"
56 SUPPORT_PYTHON_ABIS="1"
57
58 inherit autotools-utils prefix python
59
60 DESCRIPTION="CMU Speech Recognition engine"
61 HOMEPAGE="http://cmusphinx.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"
63
64 LICENSE="BSD as-is"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="doc python static-libs"
68
69 DEPEND=">=app-accessibility/sphinxbase-0.7[static-libs?,python?]"
70 RDEPEND="${DEPEND}"
71
72 RESTRICT_PYTHON_ABIS="3*"
73
74 src_prepare() {
75 epatch "${FILESDIR}/${P}_heap_fix.patch"
76 eprefixify 'python/setup.py'
77 }
78
79 src_configure() {
80 econf \
81 $( use_enable static-libs static )
82 }
83
84 src_compile() {
85 default
86
87 if use python; then
88 python_copy_sources python
89
90 building() {
91 "$(PYTHON)" setup.py build
92 }
93
94 python_execute_function -s --source-dir python building
95 fi
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install || die
100
101 dodoc AUTHORS ChangeLog NEWS README
102
103 if use doc; then
104 cd doc
105 dohtml -r -x CVS s3* s3 *.html
106 fi
107
108 if use python; then
109
110 installing() {
111 "$(PYTHON)" setup.py install \
112 --install-lib="${D}/$(python_get_sitedir)"
113 }
114
115 python_execute_function -s --source-dir python installing
116 fi
117
118 remove_libtool_files
119 }