diff options
author | Heath Caldwell <hncaldwell@gentoo.org> | 2009-01-07 17:33:25 +0000 |
---|---|---|
committer | Heath Caldwell <hncaldwell@gentoo.org> | 2009-01-07 17:33:25 +0000 |
commit | 8b5e4be5bac885c42ed3f71f91fa4ac5de3e587c (patch) | |
tree | 9dfb4c20bde86c958f04ba86aca47561fcec3f50 /app-misc/anki | |
parent | Add ~alpha/~ia64 wrt #245949 (diff) | |
download | gentoo-2-8b5e4be5bac885c42ed3f71f91fa4ac5de3e587c.tar.gz gentoo-2-8b5e4be5bac885c42ed3f71f91fa4ac5de3e587c.tar.bz2 gentoo-2-8b5e4be5bac885c42ed3f71f91fa4ac5de3e587c.zip |
Version bump to 0.9.9.4.
(Portage version: 2.1.6.4/cvs/Linux 2.6.25-gentoo-r6-grey01 x86_64)
Diffstat (limited to 'app-misc/anki')
-rw-r--r-- | app-misc/anki/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/anki/anki-0.9.9.4.ebuild | 49 |
2 files changed, 56 insertions, 2 deletions
diff --git a/app-misc/anki/ChangeLog b/app-misc/anki/ChangeLog index c85fb74fbcd4..c20dd835dfea 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.4 2008/12/16 23:01:16 hncaldwell Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.5 2009/01/07 17:33:25 hncaldwell Exp $ + +*anki-0.9.9.4 (07 Jan 2009) + + 07 Jan 2009; Heath Caldwell <hncaldwell@gentoo.org> +anki-0.9.9.4.ebuild: + Version bump. *anki-0.9.9.3 (16 Dec 2008) diff --git a/app-misc/anki/anki-0.9.9.4.ebuild b/app-misc/anki/anki-0.9.9.4.ebuild new file mode 100644 index 000000000000..59c6b5005695 --- /dev/null +++ b/app-misc/anki/anki-0.9.9.4.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2009 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.4.ebuild,v 1.1 2009/01/07 17:33:25 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 +} |