diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-12-28 16:20:36 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-12-28 16:20:36 +0000 |
commit | 1192834202994e9315bd0bd642e666bfba768c74 (patch) | |
tree | 8c70c32aa7233f95ccfcc29da95eadbbfbe1dbb4 /mail-client | |
parent | Split the build-system changes from the glibc changes, and add a tiny patch t... (diff) | |
download | gentoo-2-1192834202994e9315bd0bd642e666bfba768c74.tar.gz gentoo-2-1192834202994e9315bd0bd642e666bfba768c74.tar.bz2 gentoo-2-1192834202994e9315bd0bd642e666bfba768c74.zip |
Move definition to global scope, so other ebuild functions find their way to correct dir. Closes bug #159241, reported by Fred Krogh <fkrogh at mathalacarte.com>.
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/mail-notification/ChangeLog | 8 | ||||
-rw-r--r-- | mail-client/mail-notification/mail-notification-4.0_rc2.ebuild | 5 |
2 files changed, 10 insertions, 3 deletions
diff --git a/mail-client/mail-notification/ChangeLog b/mail-client/mail-notification/ChangeLog index fe605aaac8b8..ef7d112af8cb 100644 --- a/mail-client/mail-notification/ChangeLog +++ b/mail-client/mail-notification/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for mail-client/mail-notification # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.37 2006/12/27 15:16:13 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.38 2006/12/28 16:20:36 ticho Exp $ + + 28 Dec 2006; Andrej Kacian <ticho@gentoo.org> + mail-notification-4.0_rc2.ebuild: + Move definition to global scope, so other ebuild functions find their way to + correct dir. Closes bug #159241, reported by Fred Krogh <fkrogh at + mathalacarte.com>. *mail-notification-4.0_rc2 (27 Dec 2006) diff --git a/mail-client/mail-notification/mail-notification-4.0_rc2.ebuild b/mail-client/mail-notification/mail-notification-4.0_rc2.ebuild index a64ebaa06618..e120118218b7 100644 --- a/mail-client/mail-notification/mail-notification-4.0_rc2.ebuild +++ b/mail-client/mail-notification/mail-notification-4.0_rc2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/mail-notification-4.0_rc2.ebuild,v 1.1 2006/12/27 15:16:13 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/mail-notification-4.0_rc2.ebuild,v 1.2 2006/12/28 16:20:36 ticho Exp $ inherit eutils gnome2 multilib flag-o-matic versionator @@ -35,6 +35,8 @@ DEPEND=">=x11-libs/gtk+-2.6 evolution? ( >=mail-client/evolution-2.6 ) sylpheed? ( virtual/sylpheed )" +S="${WORKDIR}/${P/_/-}" + pkg_setup() { if use evolution ; then EVO_INSTALLED="$(best_version mail-client/evolution)" @@ -57,7 +59,6 @@ pkg_setup() { } src_unpack() { - S=${WORKDIR}/${PN}-${MY_PV} gnome2_src_unpack gnome2_omf_fix |