public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-mail/mailutils: ChangeLog mailutils-2.1.ebuild
@ 2010-01-21 20:22 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2010-01-21 20:22 UTC (permalink / raw
  To: gentoo-commits

jer         10/01/21 20:22:52

  Modified:             ChangeLog
  Added:                mailutils-2.1.ebuild
  Log:
  Version bump thanks to Arfrever Frehtes Taifersar Arahesis (bug #252749).
  (Portage version: 2.2_rc61/cvs/Linux i686)

Revision  Changes    Path
1.39                 net-mail/mailutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	16 Mar 2009 09:44:22 -0000	1.38
+++ ChangeLog	21 Jan 2010 20:22:51 -0000	1.39
@@ -1,6 +1,12 @@
 # ChangeLog for net-mail/mailutils
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.38 2009/03/16 09:44:22 bangert Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.39 2010/01/21 20:22:51 jer Exp $
+
+*mailutils-2.1 (21 Jan 2010)
+
+  21 Jan 2010; Jeroen Roovers <jer@gentoo.org> +mailutils-2.1.ebuild,
+  +files/mailutils-2.1-python.patch:
+  Version bump thanks to Arfrever Frehtes Taifersar Arahesis (bug #252749).
 
   16 Mar 2009; Thilo Bangert <bangert@gentoo.org> mailutils-0.6-r3.ebuild,
   mailutils-1.2.ebuild:



1.1                  net-mail/mailutils/mailutils-2.1.ebuild

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

Index: mailutils-2.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild,v 1.1 2010/01/21 20:22:51 jer Exp $

EAPI="2"

inherit eutils flag-o-matic python

DESCRIPTION="A useful collection of mail servers, clients, and filters."
HOMEPAGE="http://www.gnu.org/software/mailutils/mailutils.html"
SRC_URI="http://ftp.gnu.org/gnu/mailutils/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"

KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="gdbm guile mysql nls pam postgres python test"
PROVIDE="virtual/mailx"

RDEPEND="!virtual/mailx
	!mail-client/nmh
	!mail-filter/libsieve
	guile? ( dev-scheme/guile )
	gdbm? ( sys-libs/gdbm )
	mysql? ( virtual/mysql )
	postgres? ( virtual/postgresql-base )
	nls? ( sys-devel/gettext )
	virtual/mta"

DEPEND="${RDEPEND}
	test? ( dev-util/dejagnu )"

src_prepare() {
	epatch "${FILESDIR}"/${P}-python.patch
}

src_configure() {
	# TODO: Fix this breakage, starting in examples/cpp/
	append-ldflags $(no-as-needed)

	local myconf="--localstatedir=/var --sharedstatedir=/var"
	myconf="${myconf} --enable-mh"

	# We need sendmail or compiling will fail
	myconf="${myconf} --enable-sendmail"

	econf ${myconf} \
		$(use_with gdbm) \
		$(use_with guile) \
		$(use_with mysql) \
		$(use_with postgres) \
		$(use_enable nls) \
		$(use_enable pam) \
		$(use_with python) \
		|| die "configure failed"
}

src_install() {
	emake DESTDIR="${D}" install || die
	# mail.rc stolen from mailx, resolve bug #37302.
	insinto /etc
	doins "${FILESDIR}/mail.rc"
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-mail/mailutils: ChangeLog mailutils-2.1.ebuild
@ 2010-01-21 20:52 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2010-01-21 20:52 UTC (permalink / raw
  To: gentoo-commits

jer         10/01/21 20:52:17

  Modified:             ChangeLog mailutils-2.1.ebuild
  Log:
  Actually do something with the python eclass too.
  (Portage version: 2.2_rc61/cvs/Linux i686)

Revision  Changes    Path
1.40                 net-mail/mailutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	21 Jan 2010 20:22:51 -0000	1.39
+++ ChangeLog	21 Jan 2010 20:52:16 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/mailutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.39 2010/01/21 20:22:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.40 2010/01/21 20:52:16 jer Exp $
+
+  21 Jan 2010; Jeroen Roovers <jer@gentoo.org> mailutils-2.1.ebuild:
+  Actually do something with the python eclass too.
 
 *mailutils-2.1 (21 Jan 2010)
 



1.2                  net-mail/mailutils/mailutils-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild?r1=1.1&r2=1.2

Index: mailutils-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mailutils-2.1.ebuild	21 Jan 2010 20:22:51 -0000	1.1
+++ mailutils-2.1.ebuild	21 Jan 2010 20:52:16 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild,v 1.1 2010/01/21 20:22:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild,v 1.2 2010/01/21 20:52:16 jer Exp $
 
 EAPI="2"
 
@@ -60,3 +60,7 @@
 	insinto /etc
 	doins "${FILESDIR}/mail.rc"
 }
+
+pkg_postinst() {
+	python_mod_optimize "$(python_get_libdir)/site-packages/mailutils"
+}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-mail/mailutils: ChangeLog mailutils-2.1.ebuild
@ 2010-01-24 19:54 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2010-01-24 19:54 UTC (permalink / raw
  To: gentoo-commits

jer         10/01/24 19:54:30

  Modified:             ChangeLog mailutils-2.1.ebuild
  Log:
  USE=bidi support thanks to Martin von Gagern (bug #261155).
  (Portage version: 2.2_rc61/cvs/Linux i686)

Revision  Changes    Path
1.41                 net-mail/mailutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	21 Jan 2010 20:52:16 -0000	1.40
+++ ChangeLog	24 Jan 2010 19:54:30 -0000	1.41
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/mailutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.40 2010/01/21 20:52:16 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.41 2010/01/24 19:54:30 jer Exp $
+
+  24 Jan 2010; Jeroen Roovers <jer@gentoo.org> mailutils-2.1.ebuild:
+  USE=bidi support thanks to Martin von Gagern (bug #261155).
 
   21 Jan 2010; Jeroen Roovers <jer@gentoo.org> mailutils-2.1.ebuild:
   Actually do something with the python eclass too.



1.3                  net-mail/mailutils/mailutils-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild?r1=1.2&r2=1.3

Index: mailutils-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mailutils-2.1.ebuild	21 Jan 2010 20:52:16 -0000	1.2
+++ mailutils-2.1.ebuild	24 Jan 2010 19:54:30 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild,v 1.2 2010/01/21 20:52:16 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.1.ebuild,v 1.3 2010/01/24 19:54:30 jer Exp $
 
 EAPI="2"
 
@@ -13,12 +13,13 @@
 SLOT="0"
 
 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
-IUSE="gdbm guile mysql nls pam postgres python test"
+IUSE="bidi gdbm guile mysql nls pam postgres python test"
 PROVIDE="virtual/mailx"
 
 RDEPEND="!virtual/mailx
 	!mail-client/nmh
 	!mail-filter/libsieve
+	bidi? ( dev-libs/fribidi )
 	guile? ( dev-scheme/guile )
 	gdbm? ( sys-libs/gdbm )
 	mysql? ( virtual/mysql )
@@ -44,12 +45,13 @@
 	myconf="${myconf} --enable-sendmail"
 
 	econf ${myconf} \
+		$(use_with bidi fribidi) \
 		$(use_with gdbm) \
 		$(use_with guile) \
 		$(use_with mysql) \
-		$(use_with postgres) \
 		$(use_enable nls) \
 		$(use_enable pam) \
+		$(use_with postgres) \
 		$(use_with python) \
 		|| die "configure failed"
 }






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-01-24 19:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-24 19:54 [gentoo-commits] gentoo-x86 commit in net-mail/mailutils: ChangeLog mailutils-2.1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2010-01-21 20:52 Jeroen Roovers (jer)
2010-01-21 20:22 Jeroen Roovers (jer)

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