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