diff options
author | Hans de Graaff <graaff@gentoo.org> | 2009-03-30 18:12:47 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2009-03-30 18:12:47 +0000 |
commit | 1a383ad4f3ac44ba3470186470e234b247c822a8 (patch) | |
tree | 58e40b81fa43edcb7f0f31c4b0279da7d4e314f4 /mail-client/mail-notification | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-1a383ad4f3ac44ba3470186470e234b247c822a8.tar.gz gentoo-2-1a383ad4f3ac44ba3470186470e234b247c822a8.tar.bz2 gentoo-2-1a383ad4f3ac44ba3470186470e234b247c822a8.zip |
Fix #262182
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'mail-client/mail-notification')
3 files changed, 119 insertions, 2 deletions
diff --git a/mail-client/mail-notification/ChangeLog b/mail-client/mail-notification/ChangeLog index f764d861347c..2454ec168fa3 100644 --- a/mail-client/mail-notification/ChangeLog +++ b/mail-client/mail-notification/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for mail-client/mail-notification -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.80 2008/12/13 10:28:12 graaff Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.81 2009/03/30 18:12:46 graaff Exp $ + +*mail-notification-5.4-r1 (30 Mar 2009) + + 30 Mar 2009; Hans de Graaff <graaff@gentoo.org> + +files/mail-notification-5.4-e-d-s-2.24.patch, + +mail-notification-5.4-r1.ebuild: + Version bump to fix #262182, thanks to Pacho Ramos for providing the original + patch. Instead of updating the patch to deal with all possible + evolution-data-server versions I've fixed things for the currently stable + 2.24 series and mail-notification now depends on that. 23 Oct 2008; Hans de Graaff <graaff@gentoo.org> -files/mail-notification-4.1-evo-2.12-api-change.patch, diff --git a/mail-client/mail-notification/files/mail-notification-5.4-e-d-s-2.24.patch b/mail-client/mail-notification/files/mail-notification-5.4-e-d-s-2.24.patch new file mode 100644 index 000000000000..ed40d4457b77 --- /dev/null +++ b/mail-client/mail-notification/files/mail-notification-5.4-e-d-s-2.24.patch @@ -0,0 +1,12 @@ +--- build/src/mn-evolution-server.c.~1~ 2008-05-22 17:47:48.000000000 +0200 ++++ build/src/mn-evolution-server.c 2009-03-30 20:02:17.936196624 +0200 +@@ -595,7 +595,8 @@ + + for (i = 0; i < summary->len; i++) + { +- CamelMessageInfo *info = summary->pdata[i]; ++ char *uid = summary->pdata[i]; ++ CamelMessageInfo *info = camel_folder_get_message_info(folder, uid); + + if ((camel_message_info_flags(info) & CAMEL_MESSAGE_SEEN) == 0) + g_ptr_array_add(*ret, self_camel_message_info_to_dbus_struct(info)); diff --git a/mail-client/mail-notification/mail-notification-5.4-r1.ebuild b/mail-client/mail-notification/mail-notification-5.4-r1.ebuild new file mode 100644 index 000000000000..73bfc84d67d5 --- /dev/null +++ b/mail-client/mail-notification/mail-notification-5.4-r1.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/mail-notification-5.4-r1.ebuild,v 1.1 2009/03/30 18:12:47 graaff Exp $ + +inherit gnome2 multilib flag-o-matic toolchain-funcs + +DESCRIPTION="A GNOME trayicon which checks for email, with support for many online and offline mailbox formats." +HOMEPAGE="http://www.nongnu.org/mailnotify/" +SRC_URI="http://savannah.nongnu.org/download/mailnotify/${P}.tar.bz2" + +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +SLOT="0" +LICENSE="GPL-3" + +IUSE="evo gmail imap ipv6 maildir mbox mh mozilla pop sasl ssl sylpheed" + +# gmime is actually optional, but it's used by so much of the package +# it's pointless making it optional. gnome-keyring is required for +# several specific access methods, and thus linked to those USE flags +# instead of adding a keyring USE flag. +RDEPEND=">=x11-libs/gtk+-2.12 + >=dev-libs/glib-2.14 + >=gnome-base/gconf-2.4.0 + >=gnome-base/gnome-panel-2.6 + >=gnome-base/eel-2.6 + >=gnome-base/gconf-2.6 + >=gnome-base/libgnomeui-2.14 + >=gnome-base/libglade-2.0 + dev-libs/dbus-glib + >=dev-libs/gmime-2.2.7 + =dev-libs/gmime-2.2* + >=x11-libs/libnotify-0.4.1 + pop? ( gnome-base/gnome-keyring ) + imap? ( gnome-base/gnome-keyring ) + gmail? ( gnome-base/gnome-keyring ) + ssl? ( >=dev-libs/openssl-0.9.6 ) + sasl? ( >=dev-libs/cyrus-sasl-2 ) + evo? ( >=mail-client/evolution-2.24 ) + sylpheed? ( virtual/sylpheed )" + +DEPEND="${RDEPEND} + app-text/scrollkeeper + dev-util/pkgconfig + >=dev-util/intltool-0.35.0" + +# this now uses JB (the Jean-Yves Lefort's Build System) as a build system +# instead of autotools, this is a little helper function that basically does +# the same thing as use_enable +use_var() { + echo -n "${2:-$1}=" + use "${1}" && echo "yes" || echo "no" +} + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-dont-update-cache.patch" + + # We are not Ubuntu, and I suspect that this is the cause of #215281 + epatch "${FILESDIR}/${P}-remove-ubuntu-special-case.patch" + + # Make sure we don't crash with newer versions of + # evolution-data-server. + epatch "${FILESDIR}/${P}-e-d-s-2.24.patch" +} + +src_compile() { + ./jb configure destdir="${D}" prefix="/usr" libdir=/usr/$(get_libdir) \ + sysconfdir="/etc" localstatedir="/var" cc="$(tc-getCC)" \ + cflags="${CFLAGS}" cppflags="${CXXFLAGS}" ldflags="${LDFLAGS}" \ + scrollkeeper-dir="/var/lib/scrollkeeper" \ + $(use_var evo evolution) \ + $(use_var gmail) \ + $(use_var imap) \ + $(use_var ipv6) \ + $(use_var maildir) \ + $(use_var mbox) \ + $(use_var mh) \ + $(use_var mozilla) \ + $(use_var pop pop3) \ + $(use_var sasl) \ + $(use_var ssl) \ + $(use_var sylpheed) + + ./jb build +} + +src_install() { + GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install + + dodoc NEWS README AUTHORS TODO TRANSLATING + + rm -rf "${D}/var/lib/scrollkeeper" +} |