diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-07-22 11:03:45 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-07-22 11:03:45 +0000 |
commit | 759fb7260d1010989c2f53a5d521bccc7f944bd1 (patch) | |
tree | 91c4359e459d5ed218d7867bedc63cfb8d461050 /x11-misc/treeline | |
parent | Version bump. (diff) | |
download | gentoo-2-759fb7260d1010989c2f53a5d521bccc7f944bd1.tar.gz gentoo-2-759fb7260d1010989c2f53a5d521bccc7f944bd1.tar.bz2 gentoo-2-759fb7260d1010989c2f53a5d521bccc7f944bd1.zip |
Old.
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc/treeline')
-rw-r--r-- | x11-misc/treeline/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/treeline/treeline-1.4.0.ebuild | 73 |
2 files changed, 4 insertions, 74 deletions
diff --git a/x11-misc/treeline/ChangeLog b/x11-misc/treeline/ChangeLog index 72e7217b8803..5d15b7f32cbe 100644 --- a/x11-misc/treeline/ChangeLog +++ b/x11-misc/treeline/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/treeline # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/ChangeLog,v 1.54 2013/03/12 18:30:25 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/ChangeLog,v 1.55 2013/07/22 11:03:45 jer Exp $ + + 22 Jul 2013; Jeroen Roovers <jer@gentoo.org> -treeline-1.4.0.ebuild: + Old. 12 Mar 2013; Agostino Sarubbo <ago@gentoo.org> treeline-1.4.1.ebuild: Stable for ppc, wrt bug #461386 diff --git a/x11-misc/treeline/treeline-1.4.0.ebuild b/x11-misc/treeline/treeline-1.4.0.ebuild deleted file mode 100644 index bc5b5cf777e2..000000000000 --- a/x11-misc/treeline/treeline-1.4.0.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/treeline-1.4.0.ebuild,v 1.5 2012/04/24 13:45:53 scarabeus Exp $ - -EAPI="2" -PYTHON_DEPEND="2" -PYTHON_USE_WITH="xml" -SUPPORT_PYTHON_ABIS="1" - -inherit eutils python - -DESCRIPTION="TreeLine is a structured information storage program." -HOMEPAGE="http://treeline.bellz.org/" -SRC_URI="mirror://berlios/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="spell" - -LANGS="de fr" -for lang in ${LANGS}; do - IUSE="${IUSE} linguas_${lang}" - SRC_URI="${SRC_URI} linguas_${lang}? ( mirror://berlios/${PN}/${PN}-i18n-${PV}a.tar.gz )" -done - -DEPEND="spell? ( app-text/aspell ) - dev-python/PyQt4[X]" -RDEPEND="${DEPEND}" -RESTRICT_PYTHON_ABIS="3.*" - -S="${WORKDIR}/TreeLine" - -src_unpack() { - unpack ${P}.tar.gz - for lang in ${LANGS}; do - if use linguas_${lang}; then - tar xozf "${DISTDIR}"/${PN}-i18n-${PV}a.tar.gz \ - TreeLine/doc/{readme_${lang}.trl,README_${lang}.html} \ - TreeLine/translations/{treeline_${lang}.{qm,ts},qt_${lang}.{qm,ts}} || die - fi - done -} - -src_prepare() { - # Let's leave compiling to python_mod_optimize(). - epatch "${FILESDIR}"/${PN}-1.2.3-nocompile.patch - - rm doc/LICENSE || die - - python_copy_sources - - preparation() { - # install into proper python site-packages dir - sed -i "s;prefixDir, 'lib;'$(python_get_sitedir);" install.py || die - } - python_execute_function -s preparation -} - -src_install() { - installation() { - "$(PYTHON)" install.py -x -p /usr/ -d /usr/share/doc/${PF} -b "${D}" - } - python_execute_function -s installation -} - -pkg_postinst() { - python_mod_optimize ${PN} -} - -pkg_postrm() { - python_mod_cleanup ${PN} -} |