blob: dc183bbcac0e4b6d8c4a4371b3345e9c35328dcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
inherit distutils versionator
DESCRIPTION="Command line oriented, sqlite powered, todo list system"
HOMEPAGE="http://yokadi.github.com/index.html"
SRC_URI="http://yokadi.github.com/download/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
# DEPEND specified by distutils.eclass
RDEPEND="${DEPEND}
|| (
>=dev-lang/python-2.5[sqlite]
>=dev-python/pysqlite-2.5.5
)
dev-python/python-dateutil
>=dev-python/sqlobject-0.9"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-2)
|