blob: c0f2aaa703905230bfa135132f2386399f09d4e3 (
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
|
# Copyright 1999-2014 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/python-dateutil
>=dev-python/sqlobject-0.9"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-2)
|