diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-12-04 11:46:32 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-12-04 11:46:32 +0000 |
commit | a29b3f26aaa862417a444e92464325f4905776b0 (patch) | |
tree | d82c49de660f219c3f2476debb1b9665b84fbbad /x11-misc | |
parent | Make markup in notifications compatible with newer notification-daemon implem... (diff) | |
download | gentoo-2-a29b3f26aaa862417a444e92464325f4905776b0.tar.gz gentoo-2-a29b3f26aaa862417a444e92464325f4905776b0.tar.bz2 gentoo-2-a29b3f26aaa862417a444e92464325f4905776b0.zip |
Add missing die statements. stable on amd64. bug #391511
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/treeline/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/treeline/treeline-1.4.0.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/x11-misc/treeline/ChangeLog b/x11-misc/treeline/ChangeLog index ea4b8efce187..ce9073fd2576 100644 --- a/x11-misc/treeline/ChangeLog +++ b/x11-misc/treeline/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/treeline # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/ChangeLog,v 1.45 2011/10/14 03:43:14 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/ChangeLog,v 1.46 2011/12/04 11:46:32 hwoarang Exp $ + + 04 Dec 2011; Markos Chandras <hwoarang@gentoo.org> treeline-1.4.0.ebuild: + Add missing die statements. stable on amd64. bug #391511 14 Oct 2011; Jeroen Roovers <jer@gentoo.org> metadata.xml: Remove extraneous maintainer tag. diff --git a/x11-misc/treeline/treeline-1.4.0.ebuild b/x11-misc/treeline/treeline-1.4.0.ebuild index af2fa1f1d66d..7ffb450e9759 100644 --- a/x11-misc/treeline/treeline-1.4.0.ebuild +++ b/x11-misc/treeline/treeline-1.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 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.1 2011/10/11 20:59:43 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/treeline-1.4.0.ebuild,v 1.2 2011/12/04 11:46:32 hwoarang Exp $ EAPI="2" PYTHON_DEPEND="2" @@ -15,7 +15,7 @@ SRC_URI="mirror://berlios/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="spell" LANGS="de fr" @@ -46,13 +46,13 @@ src_prepare() { # Let's leave compiling to python_mod_optimize(). epatch "${FILESDIR}"/${PN}-1.2.3-nocompile.patch - rm doc/LICENSE + 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 + sed -i "s;prefixDir, 'lib;'$(python_get_sitedir);" install.py || die } python_execute_function -s preparation } |