diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-10-25 08:41:29 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-10-25 08:41:29 +0000 |
commit | 29b8379379cdf9f3f64da624be8bff7bad54d07d (patch) | |
tree | f222c343479d4d7bacff9d003b298778a77e5605 /net-mail | |
parent | Only 2.28.2 requires newer gtk+ (thanks again to Serkan). (diff) | |
download | gentoo-2-29b8379379cdf9f3f64da624be8bff7bad54d07d.tar.gz gentoo-2-29b8379379cdf9f3f64da624be8bff7bad54d07d.tar.bz2 gentoo-2-29b8379379cdf9f3f64da624be8bff7bad54d07d.zip |
Fix building with recent coreutils wrt #327431 by Kevin Pyle.
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/vmailmgr/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild | 12 |
2 files changed, 14 insertions, 6 deletions
diff --git a/net-mail/vmailmgr/ChangeLog b/net-mail/vmailmgr/ChangeLog index ebd43684c256..901caa54fe53 100644 --- a/net-mail/vmailmgr/ChangeLog +++ b/net-mail/vmailmgr/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/vmailmgr -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/vmailmgr/ChangeLog,v 1.31 2009/06/20 11:09:36 mrness Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/vmailmgr/ChangeLog,v 1.32 2010/10/25 08:41:29 ssuominen Exp $ + + 25 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> + vmailmgr-0.97-r1.ebuild: + Fix building with recent coreutils wrt #327431 by Kevin Pyle. *vmailmgr-0.97-r1 (20 Jun 2009) diff --git a/net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild b/net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild index eccf8008c19a..9e7a874a7a74 100644 --- a/net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild +++ b/net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild,v 1.1 2009/06/20 11:09:36 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/vmailmgr/vmailmgr-0.97-r1.ebuild,v 1.2 2010/10/25 08:41:29 ssuominen Exp $ EAPI="2" @@ -21,8 +21,12 @@ RDEPEND=">=sys-apps/ucspi-unix-0.34 >=net-mail/qmail-autoresponder-0.95" src_prepare() { - epatch "${FILESDIR}/${P}-gentoo.patch" - epatch "${FILESDIR}/${P}-strcasestr.patch" + sed -i \ + -e 's:vadduser.pod vadduser.pod:vadduser.pod:' \ + commands/Makefile.am || die #327431 + + epatch "${FILESDIR}"/${P}-gentoo.patch \ + "${FILESDIR}"/${P}-strcasestr.patch eautoreconf } |