33 lines
828 B
Bash
33 lines
828 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
inherit distutils-r1
|
|
|
|
MY_P="etm_qt-${PV}"
|
|
|
|
DESCRIPTION="Event and Task Manager, an intuitive time management application"
|
|
HOMEPAGE="http://www.duke.edu/~dgraham/etmqt/"
|
|
SRC_URI="mirror://sourceforge/etmeventandtask/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="dev-python/PyQt4[${PYTHON_USEDEP}]
|
|
>=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
|
|
>=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
|
|
dev-python/vobject[${PYTHON_USEDEP}]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
pkg_postinst() {
|
|
elog "This versions is complete rewrite of ETM using PyQt"
|
|
elog "Optional dependencies that you may want to install:"
|
|
elog "- dev-vcs/mercurial"
|
|
}
|