diff options
Diffstat (limited to 'x11-misc/treeline/treeline-1.9.4.ebuild')
-rw-r--r-- | x11-misc/treeline/treeline-1.9.4.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/x11-misc/treeline/treeline-1.9.4.ebuild b/x11-misc/treeline/treeline-1.9.4.ebuild new file mode 100644 index 000000000000..d03c79529f60 --- /dev/null +++ b/x11-misc/treeline/treeline-1.9.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/treeline-1.9.4.ebuild,v 1.1 2014/05/18 04:32:24 jer Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python3_3 ) +PYTHON_REQ_USE="xml" + +inherit eutils python-single-r1 + +DESCRIPTION="TreeLine is a structured information storage program." +HOMEPAGE="http://treeline.bellz.org/" +SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" + +DEPEND=" + ${PYTHON_DEPS} +" +RDEPEND=" + ${DEPEND} + dev-python/PyQt4[X,${PYTHON_USEDEP}] +" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +S="${WORKDIR}/TreeLine" + +src_prepare() { + rm doc/LICENSE || die + + python_export PYTHON_SITEDIR + sed -i "s;prefixDir, 'lib;'${PYTHON_SITEDIR};" install.py || die +} + +src_install() { + "${EPYTHON}" install.py -x -p /usr/ -d /usr/share/doc/${PF} -b "${D}" || die +} |