summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-06-17 15:59:24 +0000
committerSamuli Suominen <drac@gentoo.org>2008-06-17 15:59:24 +0000
commiteb65e0ddd210764ab33f5b461f64585a3f4447d5 (patch)
treec1f951838264329c7a337aa7c93e726933c6ba4d /mail-client/sylpheed
parentMarking Digest-SHA-5.46 ~ppc64 for bug 219448 (diff)
downloadgentoo-2-eb65e0ddd210764ab33f5b461f64585a3f4447d5.tar.gz
gentoo-2-eb65e0ddd210764ab33f5b461f64585a3f4447d5.tar.bz2
gentoo-2-eb65e0ddd210764ab33f5b461f64585a3f4447d5.zip
Fix autotools handling so that aclocal doesn't die when ./m4 is missing wrt #219341, thanks to Marcin Nowicki and Alex Buell.
(Portage version: 2.1.5.5)
Diffstat (limited to 'mail-client/sylpheed')
-rw-r--r--mail-client/sylpheed/ChangeLog6
-rw-r--r--mail-client/sylpheed/sylpheed-2.4.8.ebuild11
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() {