summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-07-23 08:24:03 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-07-23 08:24:03 +0000
commitbd1a465c6d79f8103e0445a5eff10ae235c8701b (patch)
treea6a7ec322d733f063778837bad870208ddaa888c /media-libs/flac
parentRemove net-proxy/sshproxy blocker (#248193). (diff)
downloadgentoo-2-bd1a465c6d79f8103e0445a5eff10ae235c8701b.tar.gz
gentoo-2-bd1a465c6d79f8103e0445a5eff10ae235c8701b.tar.bz2
gentoo-2-bd1a465c6d79f8103e0445a5eff10ae235c8701b.zip
Fix eautoreconf (missing AM_ICONV) for embedded wrt #173464, thanks to Natanael Copa.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/flac')
-rw-r--r--media-libs/flac/ChangeLog8
-rw-r--r--media-libs/flac/flac-1.2.1-r3.ebuild9
2 files changed, 12 insertions, 5 deletions
diff --git a/media-libs/flac/ChangeLog b/media-libs/flac/ChangeLog
index c0449ed658c4..2b9603a8e666 100644
--- a/media-libs/flac/ChangeLog
+++ b/media-libs/flac/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/flac
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/ChangeLog,v 1.147 2008/12/02 21:21:13 ranger Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/ChangeLog,v 1.148 2009/07/23 08:24:03 ssuominen Exp $
+
+ 23 Jul 2009; Samuli Suominen <ssuominen@gentoo.org> flac-1.2.1-r3.ebuild:
+ Fix eautoreconf (missing AM_ICONV) for embedded wrt #173464, thanks to
+ Natanael Copa.
02 Dec 2008; Brent Baude <ranger@gentoo.org> flac-1.2.1-r3.ebuild:
stable ppc64, bug 245085
diff --git a/media-libs/flac/flac-1.2.1-r3.ebuild b/media-libs/flac/flac-1.2.1-r3.ebuild
index 35dcae35f45c..1d0d85741b93 100644
--- a/media-libs/flac/flac-1.2.1-r3.ebuild
+++ b/media-libs/flac/flac-1.2.1-r3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.2.1-r3.ebuild,v 1.9 2008/12/02 21:21:13 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.2.1-r3.ebuild,v 1.10 2009/07/23 08:24:03 ssuominen Exp $
EAPI=1
@@ -8,7 +8,9 @@ inherit autotools eutils base
DESCRIPTION="free lossless audio encoder and decoder"
HOMEPAGE="http://flac.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
+ http://dev.gentoo.org/~ssuominen/${P}-embedded-m4.tar.bz2
+ mirror://gentoo/${P}-embedded-m4.tar.bz2"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
@@ -31,6 +33,7 @@ PATCHES=( "${FILESDIR}/${P}-asneeded.patch"
src_unpack() {
base_src_unpack
cd "${S}"
+ cp "${WORKDIR}"/*.m4 m4 || die "cp failed"
AT_M4DIR="m4" eautoreconf
}