37 lines
779 B
Bash
37 lines
779 B
Bash
|
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
|
||
|
|
EAPI=7
|
||
|
|
PYTHON_COMPAT=( python3_{7,8,9} )
|
||
|
|
|
||
|
|
#DISTUTILS_USE_SETUPTOOLS=rdepend
|
||
|
|
DISTUTILS_USE_SETUPTOOLS=no
|
||
|
|
|
||
|
|
inherit distutils-r1
|
||
|
|
|
||
|
|
DESCRIPTION="A python based journal"
|
||
|
|
HOMEPAGE="https://rednotebook.sourceforge.io/"
|
||
|
|
SRC_URI="https://github.com/jendrikseipp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
|
||
|
|
LICENSE="GPL-2+"
|
||
|
|
SLOT="0"
|
||
|
|
KEYWORDS="amd64 x86"
|
||
|
|
IUSE="spell"
|
||
|
|
|
||
|
|
RDEPEND="
|
||
|
|
>=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
|
||
|
|
spell? ( >=dev-python/pyenchant-1.6[${PYTHON_USEDEP}] )
|
||
|
|
"
|
||
|
|
DEPEND="
|
||
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
||
|
|
>=x11-libs/gtk+-3.18
|
||
|
|
>=net-libs/webkit-gtk-2.16
|
||
|
|
>=x11-libs/gtksourceview-3.18:3.0
|
||
|
|
"
|
||
|
|
|
||
|
|
src_install() {
|
||
|
|
distutils-r1_src_install
|
||
|
|
# einstalldocs
|
||
|
|
}
|
||
|
|
|