diff options
-rw-r--r-- | media-sound/audex/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/audex/audex-0.74_beta1.ebuild | 6 | ||||
-rw-r--r-- | media-sound/audex/files/audex-0.74_beta1-gcc47.patch | 11 |
3 files changed, 22 insertions, 4 deletions
diff --git a/media-sound/audex/ChangeLog b/media-sound/audex/ChangeLog index 132ce96db25e..a5c4ba3a57a3 100644 --- a/media-sound/audex/ChangeLog +++ b/media-sound/audex/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/audex -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audex/ChangeLog,v 1.13 2011/10/28 23:48:43 abcd Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audex/ChangeLog,v 1.14 2012/05/02 17:59:13 johu Exp $ + + 02 May 2012; Johannes Huber <johu@gentoo.org> + +files/audex-0.74_beta1-gcc47.patch, audex-0.74_beta1.ebuild: + Add upstream patch to fix build with gcc47 spotted by Michael (kensington) + <gentoo@scribeofthenile.com> wrt bug #414147. 28 Oct 2011; Jonathan Callen <abcd@gentoo.org> audex-0.74_beta1.ebuild: Bump to EAPI=4 diff --git a/media-sound/audex/audex-0.74_beta1.ebuild b/media-sound/audex/audex-0.74_beta1.ebuild index b144201fba02..067621390bf7 100644 --- a/media-sound/audex/audex-0.74_beta1.ebuild +++ b/media-sound/audex/audex-0.74_beta1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audex/audex-0.74_beta1.ebuild,v 1.2 2011/10/28 23:48:43 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audex/audex-0.74_beta1.ebuild,v 1.3 2012/05/02 17:59:13 johu Exp $ EAPI=4 @@ -26,3 +26,5 @@ DEPEND=" RDEPEND="${DEPEND}" S="${WORKDIR}/${PN}-${MY_PV}" + +PATCHES=( "${FILESDIR}/${P}-gcc47.patch" ) diff --git a/media-sound/audex/files/audex-0.74_beta1-gcc47.patch b/media-sound/audex/files/audex-0.74_beta1-gcc47.patch new file mode 100644 index 000000000000..fb877a587281 --- /dev/null +++ b/media-sound/audex/files/audex-0.74_beta1-gcc47.patch @@ -0,0 +1,11 @@ +--- trunk/playground/multimedia/audex/utils/hashlist.cpp 2012/03/23 23:49:44 1286829 ++++ trunk/playground/multimedia/audex/utils/hashlist.cpp 2012/03/23 23:51:20 1286830 +@@ -18,6 +18,8 @@ + + #include "hashlist.h" + ++#include <unistd.h> ++ + Hashlist::Hashlist() { + + } |