blob: a6354867a5bcc943a172153ffae512105a1373d8 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit bash-completion-r1 eutils distutils-r1 git-2
DESCRIPTION="Console client for Evernote"
HOMEPAGE="http://geeknote.me"
EGIT_REPO_URI="git://github.com/VitaliyRodnenko/geeknote.git"
EGIT_BRANCH="master"
LICENSE=""
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+bash-completion"
RDEPEND="
bash-completion? ( app-shells/bash-completion )
dev-python/html2text
dev-python/sqlalchemy
dev-python/markdown2
dev-python/beautifulsoup:4
dev-python/evernote-sdk-python
"
DEPEND="
${RDEPEND}
"
src_install() {
if use bash-completion; then
dobashcomp ${FILESDIR}/geeknote
fi
distutils-r1_src_install
}
|