diff options
author | Akinori Hattori <hattya@gentoo.org> | 2008-06-23 09:24:52 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2008-06-23 09:24:52 +0000 |
commit | a0bf52c65c15cce542bb00b94307e1f86f4463fa (patch) | |
tree | 3035a007b09c5bd53c49b7cd8765145d8980c088 /mail-client | |
parent | cleaned out old ebuild(s). (diff) | |
download | gentoo-2-a0bf52c65c15cce542bb00b94307e1f86f4463fa.tar.gz gentoo-2-a0bf52c65c15cce542bb00b94307e1f86f4463fa.tar.bz2 gentoo-2-a0bf52c65c15cce542bb00b94307e1f86f4463fa.zip |
fixes bug #219341.
(Portage version: 2.1.4.4)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/sylpheed/ChangeLog | 6 | ||||
-rw-r--r-- | mail-client/sylpheed/sylpheed-2.4.8.ebuild | 14 | ||||
-rw-r--r-- | mail-client/sylpheed/sylpheed-2.5.0.ebuild | 5 |
3 files changed, 19 insertions, 6 deletions
diff --git a/mail-client/sylpheed/ChangeLog b/mail-client/sylpheed/ChangeLog index b3e18d6a5a1d..c439b9ed091a 100644 --- a/mail-client/sylpheed/ChangeLog +++ b/mail-client/sylpheed/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for mail-client/sylpheed # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.267 2008/06/23 09:19:13 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.268 2008/06/23 09:24:52 hattya Exp $ + + 23 Jun 2008; Akinori Hattori <hattya@gentoo.org> sylpheed-2.4.8.ebuild, + sylpheed-2.5.0.ebuild: + fixes bug #219341. 23 Jun 2008; Akinori Hattori <hattya@gentoo.org> -sylpheed-2.4.5.ebuild, -sylpheed-2.4.7.ebuild: diff --git a/mail-client/sylpheed/sylpheed-2.4.8.ebuild b/mail-client/sylpheed/sylpheed-2.4.8.ebuild index 880affde802d..106d7086b9e8 100644 --- a/mail-client/sylpheed/sylpheed-2.4.8.ebuild +++ b/mail-client/sylpheed/sylpheed-2.4.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/sylpheed-2.4.8.ebuild,v 1.9 2008/06/22 19:31:13 ken69267 Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/sylpheed-2.4.8.ebuild,v 1.10 2008/06/23 09:24:52 hattya Exp $ inherit autotools eutils @@ -28,16 +28,22 @@ RDEPEND="${COMMON_DEPEND} app-misc/mime-types x11-misc/shared-mime-info" +AT_M4DIR="ac" + src_unpack() { + unpack ${A} cd "${S}" - epatch "${FILESDIR}"/${PN}-2.*.diff - mkdir m4 # bug 219341 + epatch "${FILESDIR}"/${PN}-2.*.diff use crypt || cp ac/missing/gpgme.m4 ac - AT_M4DIR="ac" eautoreconf + # remove "-I m4" from aclocal arguments + sed -i "/^ACLOCAL_AMFLAGS/d" Makefile.am + + eautomake + } src_compile() { diff --git a/mail-client/sylpheed/sylpheed-2.5.0.ebuild b/mail-client/sylpheed/sylpheed-2.5.0.ebuild index fa8adb4d7dc9..91cfde69becc 100644 --- a/mail-client/sylpheed/sylpheed-2.5.0.ebuild +++ b/mail-client/sylpheed/sylpheed-2.5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/sylpheed-2.5.0.ebuild,v 1.1 2008/06/19 15:06:12 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/sylpheed-2.5.0.ebuild,v 1.2 2008/06/23 09:24:52 hattya Exp $ inherit autotools eutils @@ -39,6 +39,9 @@ src_unpack() { use crypt || cp ac/missing/gpgme.m4 ac + # remove "-I m4" from aclocal arguments + sed -i "/^ACLOCAL_AMFLAGS/d" Makefile.am + eautomake } |