diff options
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/sylpheed/ChangeLog | 6 | ||||
-rw-r--r-- | mail-client/sylpheed/sylpheed-2.4.8.ebuild | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/mail-client/sylpheed/ChangeLog b/mail-client/sylpheed/ChangeLog index 58c191109d41..026354e82fd5 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.257 2008/02/05 10:43:44 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.258 2008/06/17 15:59:24 drac Exp $ + + 17 Jun 2008; Samuli Suominen <drac@gentoo.org> sylpheed-2.4.8.ebuild: + Fix autotools handling so that aclocal doesn't die when ./m4 is missing + wrt #219341, thanks to Marcin Nowicki and Alex Buell. 05 Feb 2008; Markus Rothe <corsair@gentoo.org> sylpheed-2.4.7.ebuild: Stable on ppc64 diff --git a/mail-client/sylpheed/sylpheed-2.4.8.ebuild b/mail-client/sylpheed/sylpheed-2.4.8.ebuild index 315b913b9df7..680a75e2660c 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.1 2008/02/04 16:32:02 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/sylpheed-2.4.8.ebuild,v 1.2 2008/06/17 15:59:24 drac Exp $ inherit autotools eutils @@ -28,19 +28,16 @@ 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 - use crypt || cp ac/missing/gpgme.m4 ac + mkdir m4 # bug 219341 - eautomake + use crypt || cp ac/missing/gpgme.m4 ac + AT_M4DIR="ac" eautoreconf } src_compile() { |