diff options
author | Ned Ludd <solar@gentoo.org> | 2008-07-07 14:32:23 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2008-07-07 14:32:23 +0000 |
commit | bb4618a7aac3c7f4150fffc735fb06c0ebd91afb (patch) | |
tree | f92a6e538eefac7fb2046d4ff963bb8919dc7bf0 | |
parent | Remove old and no more pertinent configure options from myconf. (diff) | |
download | gentoo-2-bb4618a7aac3c7f4150fffc735fb06c0ebd91afb.tar.gz gentoo-2-bb4618a7aac3c7f4150fffc735fb06c0ebd91afb.tar.bz2 gentoo-2-bb4618a7aac3c7f4150fffc735fb06c0ebd91afb.zip |
- cross compile love
(Portage version: 2.1.4.4)
-rw-r--r-- | media-sound/sox/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/sox/files/sox-14.0.1-cross.patch | 11 | ||||
-rw-r--r-- | media-sound/sox/sox-14.0.1.ebuild | 6 |
3 files changed, 20 insertions, 3 deletions
diff --git a/media-sound/sox/ChangeLog b/media-sound/sox/ChangeLog index 7ec09d0af759..f8c1a322834b 100644 --- a/media-sound/sox/ChangeLog +++ b/media-sound/sox/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/sox # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.87 2008/04/13 20:47:35 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.88 2008/07/07 14:32:22 solar Exp $ + + 07 Jul 2008; <solar@gentoo.org> +files/sox-14.0.1-cross.patch, + sox-14.0.1.ebuild: + - cross compile love 13 Apr 2008; Alexis Ballier <aballier@gentoo.org> +files/sox-14.0.1-ffmpegheaders.patch, sox-14.0.1.ebuild: diff --git a/media-sound/sox/files/sox-14.0.1-cross.patch b/media-sound/sox/files/sox-14.0.1-cross.patch new file mode 100644 index 000000000000..183063c2d63f --- /dev/null +++ b/media-sound/sox/files/sox-14.0.1-cross.patch @@ -0,0 +1,11 @@ +--- sox-14.0.1/src/Makefile.am.orig 2008-07-06 23:59:55.000000000 -0700 ++++ sox-14.0.1/src/Makefile.am 2008-07-06 23:59:38.000000000 -0700 +@@ -291,7 +291,7 @@ + all: sox$(EXEEXT) play rec sox_sample_test$(EXEEXT) example1$(EXEEXT) + + play rec: sox$(EXEEXT) +- ./sox --help > /dev/null ++ @#./sox --help > /dev/null + test -f .libs/lt-sox && ( $(RM) $@ && $(LN_S) .libs/lt-sox $@ ) || $(LN_S) sox$(EXEEXT) $@ + + install-exec-hook: diff --git a/media-sound/sox/sox-14.0.1.ebuild b/media-sound/sox/sox-14.0.1.ebuild index 95ee012d59ad..c5d099e56f8b 100644 --- a/media-sound/sox/sox-14.0.1.ebuild +++ b/media-sound/sox/sox-14.0.1.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/media-sound/sox/sox-14.0.1.ebuild,v 1.9 2008/04/13 20:47:35 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.0.1.ebuild,v 1.10 2008/07/07 14:32:22 solar Exp $ inherit flag-o-matic eutils autotools @@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/sox/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="~arm alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd" IUSE="alsa amrnb amrwb ao debug encode ffmpeg flac id3tag ladspa mad libsamplerate ogg oss sndfile " DEPEND="alsa? ( media-libs/alsa-lib ) @@ -32,6 +32,8 @@ src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-ffmpegheaders.patch" + epatch "${FILESDIR}/${P}-cross.patch" + AT_M4DIR="m4" eautoreconf } |