diff options
author | Heath Caldwell <hncaldwell@gentoo.org> | 2008-12-16 23:01:16 +0000 |
---|---|---|
committer | Heath Caldwell <hncaldwell@gentoo.org> | 2008-12-16 23:01:16 +0000 |
commit | 71c29b42a5390f7d360e87c2ed9adb6a0fce8da5 (patch) | |
tree | 63d10ec846fe869c0ecfa747af9dfc620f70fdcb /app-misc/anki | |
parent | unmask 100.14.19 since several users have reported this being the last versio... (diff) | |
download | gentoo-2-71c29b42a5390f7d360e87c2ed9adb6a0fce8da5.tar.gz gentoo-2-71c29b42a5390f7d360e87c2ed9adb6a0fce8da5.tar.bz2 gentoo-2-71c29b42a5390f7d360e87c2ed9adb6a0fce8da5.zip |
Version bump. Anki now uses QtWebKit.
(Portage version: 2.1.6.1/cvs/Linux 2.6.25-gentoo-r6-grey01 x86_64)
Diffstat (limited to 'app-misc/anki')
-rw-r--r-- | app-misc/anki/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/anki/anki-0.9.9.3.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/app-misc/anki/ChangeLog b/app-misc/anki/ChangeLog index 6efc26c600e7..c85fb74fbcd4 100644 --- a/app-misc/anki/ChangeLog +++ b/app-misc/anki/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/anki # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.3 2008/10/21 17:57:22 hncaldwell Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.4 2008/12/16 23:01:16 hncaldwell Exp $ + +*anki-0.9.9.3 (16 Dec 2008) + + 16 Dec 2008; Heath Caldwell <hncaldwell@gentoo.org> +anki-0.9.9.3.ebuild: + Version bump. Anki now uses QtWebKit. *anki-0.9.8.6 (21 Oct 2008) diff --git a/app-misc/anki/anki-0.9.9.3.ebuild b/app-misc/anki/anki-0.9.9.3.ebuild new file mode 100644 index 000000000000..a3d97f50bae9 --- /dev/null +++ b/app-misc/anki/anki-0.9.9.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-0.9.9.3.ebuild,v 1.1 2008/12/16 23:01:16 hncaldwell Exp $ + +EAPI=2 + +inherit eutils multilib python + +DESCRIPTION="A spaced-repetition memory training program (flash cards)" +HOMEPAGE="http://ichi2.net/anki/index.html" +SRC_URI="http://ichi2.net/${PN}/download/files/${P}.tgz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="furigana +graph +sound" + +RDEPEND=">=dev-python/PyQt4-4.4[webkit] + >=dev-python/sqlalchemy-0.4.1 + >=dev-python/simplejson-1.7.3 + || ( >=dev-python/pysqlite-2.3.0 >=dev-lang/python-2.5[sqlite] ) + app-text/dvipng + furigana? ( app-i18n/kakasi ) + graph? ( + dev-python/numpy + >=dev-python/matplotlib-0.91.2 + ) + sound? ( dev-python/pygame )" + +src_install() { + doicon icons/${PN}.png || die + + python setup.py install --root="${D}" || die + cd libanki + python setup.py install --root="${D}" || die + + make_desktop_entry ${PN} ${PN} ${PN}.png "Education" +} + +pkg_postinst() { + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/ankiqt + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/anki +} + +pkg_postrm() { + python_version + python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages/ankiqt + python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages/anki +} |