diff options
Diffstat (limited to 'app-misc/goobook/goobook-1.9.ebuild')
-rw-r--r-- | app-misc/goobook/goobook-1.9.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app-misc/goobook/goobook-1.9.ebuild b/app-misc/goobook/goobook-1.9.ebuild new file mode 100644 index 000000000000..b5636229d544 --- /dev/null +++ b/app-misc/goobook/goobook-1.9.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 readme.gentoo + +DESCRIPTION="Google Contacts wrapper for mutt" +HOMEPAGE="https://gitlab.com/goobook/goobook" +SRC_URI="mirror://pypi/g/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + >=dev-python/gdata-2.0.7[${PYTHON_USEDEP}] + >=dev-python/hcs-utils-1.3[${PYTHON_USEDEP}] + >=dev-python/keyring-0.2[${PYTHON_USEDEP}] + >=dev-python/simplejson-2.1.0[${PYTHON_USEDEP}] + >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}] + >=dev-python/oauth2client-1.4.11[${PYTHON_USEDEP}]" + +DEPEND="${PYTHON_DEPS} + dev-python/setuptools" + +src_install() { + distutils-r1_src_install + readme.gentoo_create_doc +} + +FORCE_PRINT_ELOG=1 # remove in the next bump +DISABLE_AUTOFORMATTING=1 +DOC_CONTENTS=" +To setup initial authentication, execute: + +~ $ goobook authenticate + +If you want to use goobook from mutt, add this in your .muttrc file: + set query_command=\"goobook query '%s'\" +to query address book. + +You may find more information and advanced configuration tips at +http://pypi.python.org/pypi/${PN}/${PV} in \"Configure/Mutt\" section" |