public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-client/balsa: ChangeLog balsa-2.3.25.ebuild
@ 2008-07-14 12:06 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; only message in thread
From: Gilles Dartiguelongue (eva) @ 2008-07-14 12:06 UTC (permalink / raw
  To: gentoo-commits

eva         08/07/14 12:06:05

  Modified:             ChangeLog
  Added:                balsa-2.3.25.ebuild
  Log:
  bump to 2.3.25. Gtksourceview 2 support, better IMAP support, GMail compatibility, lots of bug fixes. Fixes bug #230614.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)

Revision  Changes    Path
1.65                 mail-client/balsa/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/balsa/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/balsa/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/balsa/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	24 May 2008 11:26:39 -0000	1.64
+++ ChangeLog	14 Jul 2008 12:06:04 -0000	1.65
@@ -1,6 +1,12 @@
 # ChangeLog for mail-client/balsa
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.64 2008/05/24 11:26:39 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/ChangeLog,v 1.65 2008/07/14 12:06:04 eva Exp $
+
+*balsa-2.3.25 (14 Jul 2008)
+
+  14 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org> +balsa-2.3.25.ebuild:
+  bump to 2.3.25. Gtksourceview 2 support, better IMAP support, GMail
+  compatibility, lots of bug fixes. Fixes bug #230614.
 
   24 May 2008; Gilles Dartiguelongue <eva@gentoo.org> -balsa-2.3.20.ebuild:
   remove old revisions, bug #221619.



1.1                  mail-client/balsa/balsa-2.3.25.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/balsa/balsa-2.3.25.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/balsa/balsa-2.3.25.ebuild?rev=1.1&content-type=text/plain

Index: balsa-2.3.25.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/balsa/balsa-2.3.25.ebuild,v 1.1 2008/07/14 12:06:04 eva Exp $

inherit gnome2

DESCRIPTION="Email client for GNOME"
HOMEPAGE="http://balsa.gnome.org"
SRC_URI="http://balsa.gnome.org/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
# Doesn't currently build with -gnome
IUSE="crypt doc gtkhtml gtkspell kerberos ldap libnotify rubrica sqlite ssl xface"

RDEPEND=">=dev-libs/glib-2.14
		 >=x11-libs/gtk+-2.10
		 >=dev-libs/gmime-2.1.9
		 >=net-libs/libesmtp-1.0.3
		 >=gnome-base/orbit-2
		 >=gnome-base/libbonobo-2.0
		   x11-themes/hicolor-icon-theme
		   net-mail/mailbase
		crypt? ( >=app-crypt/gpgme-1.0 )
		>=gnome-base/libgnome-2.0
		>=gnome-base/libgnomeui-2.0
		>=gnome-base/gnome-vfs-2.0
		>=x11-libs/gtksourceview-2
		gtkhtml? ( >=gnome-extra/gtkhtml-3.14 )
		sqlite? ( >=dev-db/sqlite-2.8 )
		libnotify? ( x11-libs/libnotify )
		gtkspell? ( =app-text/gtkspell-2* )
		!gtkspell? ( virtual/aspell-dict )
		kerberos? ( app-crypt/mit-krb5 )
		ldap? ( net-nds/openldap )
		rubrica? ( dev-libs/libxml2 )
		ssl? ( dev-libs/openssl )
		xface? ( >=media-libs/compface-1.5.1 )"
DEPEND="${RDEPEND}
		dev-util/intltool
		dev-util/pkgconfig
		sys-devel/gettext
		>=app-text/scrollkeeper-0.1.4
		doc? ( dev-util/gtk-doc )"

DOCS="AUTHORS ChangeLog HACKING NEWS README TODO docs/*"

pkg_setup() {
	# threads are currently broken with gpgme
	G2CONF="${G2CONF} --disable-threads"

	if use crypt ; then
		G2CONF="${G2CONF} --with-gpgme=gpgme-config"
	else
		G2CONF="${G2CONF} --without-gpgme"
	fi

#	if use gnome ; then
		G2CONF="${G2CONF} --with-gtksourceview"
#	else
#		G2CONF="${G2CONF} --without-gtksourceview"
#	fi

	if use gtkhtml ; then
		G2CONF="${G2CONF} --with-gtkhtml=3"
	else
		G2CONF="${G2CONF} --without-gtkhtml"
	fi

	G2CONF="${G2CONF}
		--disable-pcre
		--enable-gregex
		--enable-threads
		$(use_with gtkspell)
		$(use_with kerberos gss)
		$(use_with ldap)
		$(use_with libnotify)
		$(use_with rubrica)
		$(use_with sqlite)
		$(use_with ssl)
		$(use_with xface compface)"
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-07-14 12:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-14 12:06 [gentoo-commits] gentoo-x86 commit in mail-client/balsa: ChangeLog balsa-2.3.25.ebuild Gilles Dartiguelongue (eva)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox