diff options
author | Tom Martin <slarti@gentoo.org> | 2006-04-25 16:53:00 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2006-04-25 16:53:00 +0000 |
commit | d710d35393cd922e04eeafd95abad966b1e17f2b (patch) | |
tree | adfcd295317e943fdc02786766d1df1ee5046ed6 /mail-client/mail-notification | |
parent | Fixed silly typo in Changelog. Sorry! (diff) | |
download | gentoo-2-d710d35393cd922e04eeafd95abad966b1e17f2b.tar.gz gentoo-2-d710d35393cd922e04eeafd95abad966b1e17f2b.tar.bz2 gentoo-2-d710d35393cd922e04eeafd95abad966b1e17f2b.zip |
Simplify the whole $EVO_VERSION thing, should fix bug #131206.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'mail-client/mail-notification')
-rw-r--r-- | mail-client/mail-notification/ChangeLog | 5 | ||||
-rw-r--r-- | mail-client/mail-notification/mail-notification-2.0.ebuild | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/mail-client/mail-notification/ChangeLog b/mail-client/mail-notification/ChangeLog index 84cacd18a96d..44cf53a08839 100644 --- a/mail-client/mail-notification/ChangeLog +++ b/mail-client/mail-notification/ChangeLog @@ -1,6 +1,9 @@ # 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.29 2006/04/10 17:39:19 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.30 2006/04/25 16:53:00 slarti Exp $ + + 25 Apr 2006; Tom Martin <slarti@gentoo.org> mail-notification-2.0.ebuild: + Simplify the whole $EVO_VERSION thing, should fix bug #131206. 10 Apr 2006; Tom Martin <slarti@gentoo.org> mail-notification-2.0.ebuild: Fix Evolution support, resolving bug #129410; misc. clean-ups. diff --git a/mail-client/mail-notification/mail-notification-2.0.ebuild b/mail-client/mail-notification/mail-notification-2.0.ebuild index 5672ffbda9fc..d6f12c33dac7 100644 --- a/mail-client/mail-notification/mail-notification-2.0.ebuild +++ b/mail-client/mail-notification/mail-notification-2.0.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-2.0.ebuild,v 1.7 2006/04/10 17:39:19 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/mail-notification-2.0.ebuild,v 1.8 2006/04/25 16:53:00 slarti Exp $ inherit eutils gnome2 multilib flag-o-matic versionator @@ -36,8 +36,7 @@ DEPEND=">=x11-libs/gtk+-2.6 pkg_setup() { if use evolution ; then EVO_INSTALLED="$(best_version mail-client/evolution)" - EVO_VERSION=${EVO_INSTALLED##*-} - EVO_VERSION=$(get_version_component_range 1-2 ${EVO_VERSION}) + EVO_VERSION=$(get_version_component_range 1-2 ${EVO_INSTALLED}) fi G2CONF="${G2CONF} $(use_enable ssl)" |