Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/anki: ChangeLog anki-1.2.2.ebuild
Date: Sat, 15 Jan 2011 23:53:00
Message-Id: 20110115235249.8533620054@flycatcher.gentoo.org
1 patrick 11/01/15 23:52:49
2
3 Modified: ChangeLog
4 Added: anki-1.2.2.ebuild
5 Log:
6 Bump for #351727
7
8 (Portage version: 2.2.0_alpha15/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 app-misc/anki/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 23 Aug 2010 11:56:28 -0000 1.28
24 +++ ChangeLog 15 Jan 2011 23:52:49 -0000 1.29
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/anki
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.28 2010/08/23 11:56:28 patrick Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.29 2011/01/15 23:52:49 patrick Exp $
31 +
32 +*anki-1.2.2 (15 Jan 2011)
33 +
34 + 15 Jan 2011; Patrick Lauer <patrick@g.o> +anki-1.2.2.ebuild:
35 + Bump for #351727
36
37 *anki-1.0.1 (23 Aug 2010)
38
39
40
41
42 1.1 app-misc/anki/anki-1.2.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-1.2.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-1.2.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: anki-1.2.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-1.2.2.ebuild,v 1.1 2011/01/15 23:52:49 patrick Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56
57 inherit distutils eutils
58
59 DESCRIPTION="A spaced-repetition memory training program (flash cards)"
60 HOMEPAGE="http://ichi2.net/anki/"
61 SRC_URI="http://anki.googlecode.com/files/${P}.tgz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="furigana +graph latex recording +sound"
67
68 RDEPEND="dev-python/beautifulsoup
69 >=dev-python/PyQt4-4.7[X,svg,webkit]
70 >=dev-python/sqlalchemy-0.5.3
71 >=dev-python/simplejson-1.7.3
72 || ( >=dev-python/pysqlite-2.3.0 >=dev-lang/python-2.5[sqlite] )
73 latex? ( app-text/dvipng )
74 furigana? ( app-i18n/kakasi )
75 graph? (
76 dev-python/numpy
77 >=dev-python/matplotlib-0.91.2
78 )
79 recording? (
80 media-sound/sox
81 dev-python/pyaudio
82 media-sound/lame
83 )
84 sound? ( media-video/mplayer )"
85 DEPEND="${RDEPEND}
86 dev-python/setuptools"
87 RESTRICT_PYTHON_ABIS="3.*"
88
89 PYTHON_MODNAME="anki ankiqt"
90
91 src_prepare() {
92 distutils_src_prepare
93 # epatch "${FILESDIR}/${P}-sqlalchemy-0.6.patch"
94 }
95
96 src_compile() {
97 distutils_src_compile
98 cd libanki
99 distutils_src_compile
100 }
101
102 src_install() {
103 distutils_src_install
104 cd libanki
105 distutils_src_install
106 cd ..
107
108 doicon icons/${PN}.png || die
109 make_desktop_entry ${PN} ${PN} ${PN} "Education"
110 }