diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2008-03-23 14:40:44 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2008-03-23 14:40:44 +0000 |
commit | bdb934071f98e6213393aa205f70b285d2be2d60 (patch) | |
tree | 9838dfa7ad2a1c049d27f0177ba5e3f7433dd900 /x11-misc/treeline | |
parent | Fix tests related to pyc handling. (diff) | |
download | gentoo-2-bdb934071f98e6213393aa205f70b285d2be2d60.tar.gz gentoo-2-bdb934071f98e6213393aa205f70b285d2be2d60.tar.bz2 gentoo-2-bdb934071f98e6213393aa205f70b285d2be2d60.zip |
amd64 stable and fix quoting.
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-misc/treeline')
-rw-r--r-- | x11-misc/treeline/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/treeline/treeline-1.0.2.ebuild | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/x11-misc/treeline/ChangeLog b/x11-misc/treeline/ChangeLog index b46301ef28fc..b7b28d1b092d 100644 --- a/x11-misc/treeline/ChangeLog +++ b/x11-misc/treeline/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/treeline -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/ChangeLog,v 1.33 2007/07/16 13:34:09 armin76 Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/ChangeLog,v 1.34 2008/03/23 14:40:44 coldwind Exp $ + + 23 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> treeline-1.0.2.ebuild: + amd64 stable and fix quoting. 16 Jul 2007; Raúl Porcel <armin76@gentoo.org> treeline-1.0.2.ebuild: x86 stable wrt #185280 diff --git a/x11-misc/treeline/treeline-1.0.2.ebuild b/x11-misc/treeline/treeline-1.0.2.ebuild index 4a5f3bcd460e..ac0fa2e5644b 100644 --- a/x11-misc/treeline/treeline-1.0.2.ebuild +++ b/x11-misc/treeline/treeline-1.0.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/treeline-1.0.2.ebuild,v 1.3 2007/07/16 13:34:09 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/treeline-1.0.2.ebuild,v 1.4 2008/03/23 14:40:44 coldwind Exp $ inherit python @@ -11,7 +11,7 @@ SRC_URI="http://www.bellz.org/${PN}/${P}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ppc x86" +KEYWORDS="amd64 ppc x86" IUSE="spell" DEPEND="spell? ( || ( app-text/aspell app-text/ispell ) ) @@ -19,19 +19,19 @@ DEPEND="spell? ( || ( app-text/aspell app-text/ispell ) ) virtual/python dev-python/PyQt =x11-libs/qt-3*" -S="${WORKDIR}"/TreeLine +S=${WORKDIR}/TreeLine # Before you go editing below read bugs 177652 and 177645 # or you'll end up breaking it. src_compile() { printf '#!/bin/sh\n\nexec python %s/treeline.py $*\n' \ - /usr/share/treeline > ${S}/treeline + /usr/share/treeline > "${S}"/treeline sed -i -e "s#\(helpFilePath = \)None#\1'/usr/share/treeline'#g" \ -e "s#\(iconPath = \)None#\1'/usr/share/treeline/icons'#g" \ - ${S}/source/treeline.py || die + "${S}"/source/treeline.py || die sed -i -e 's,translations,/usr/share/treeline/translations,' \ - ${S}/source/treeline.py || die + "${S}"/source/treeline.py || die } src_install() { |